* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section - Exact match */
.hero-section {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  /* background: #1e33bd; */
  background-image: url("images/bg-header-image\(2024\)\ copy.png");
  padding: -14px 0;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.product-logo {
  width: 100px;
  height: 100px;
  background: url("images/180x180_iphone_icon.png") no-repeat center center;
  background-size: contain;
  margin: 10px auto 18px 70px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffffff; /* ✅ White border */
}
.download-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#btn-download{
  background-color: #0a0a0a;
}
#btn-download:hover {
  background-color: #d98609; /* Bootstrap yellow */
  color: black; /* for readability */
}
/* Main download button */
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 24px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  min-width: 220px;
  text-align: center;
}
.btn-download .text {
  display: inline-block;
  line-height: 1.2;
  text-align: left; /* Left-aligns the text */
}

.btn-download .platform-name {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
/* Hover effect */
.btn-download:hover {
  background-color: #218838; /* slightly darker green */
  color: white;
}

/* Icon inside the button */
.btn-download .icon {
  width: 45px;
  height: 45px;
  margin: 0;
}

/* Remove redundant global .icon class */


.hero-title {
  font-size: 33px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hero-version {
  margin-top: -18px;
  font-size: 15px;
  color: #7f8c8d;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-tagline {
  margin-top: -12px;
  font-size: 16px;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 900px;
  margin: -10px auto;
}

.col_6 {
  width: 20%;
  /* height: 100%; */
}
.right_column {
  width: 80%;
  /* aspect-ratio: 16/10; */
}
/* Main illustration section */
.main-illustration {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.illustration-placeholder {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 auto;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

/* Features Section */
.features-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.feature-image {
  width: 150px;
  height: 150px;
  background: #3498db;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
}

.feature-content h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Safeguard Section */
.safeguard-section {
  background: #ffffff;
  padding: 80px 0;
}

.section-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  margin: 40px 0;
}

.safeguard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.safeguard-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.safeguard-icon {
  width: 80px;
  height: 80px;
  background: #ff6b35;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.safeguard-content h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.safeguard-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Peace of mind section */
.peace-section {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.peace-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  margin: 0 auto 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.peace-text {
  font-size: 28px;
  color: #2c3e50;
  font-weight: 600;
}

/* Lockers Section */
.lockers-section {
  background: #0b4d99;
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

.lockers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.locker-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.locker-item:hover {
  border-color: #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.1);
}

.locker-image {
  width: 100px;
  height: 100px;
  background: #3498db;
  border-radius: 10px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}

.locker-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.locker-description {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Trusted Section */
.trusted-section {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.trusted-title {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.trusted-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trusted-banner {
  width: 100%;
  height: 60px;
  background: #34495e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trusted-logo {
  width: 120px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #2c3e50;
  font-size: 16px;
  transition: all 0.3s ease;
}

.trusted-logo:hover {
  border-color: #3498db;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* CTA Section */
.cta-section {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  color: #2c3e50;
  font-weight: 600;
}
.video-section {
  padding: 40px 0;
  background-color: #1c1c1c00;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.slides-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.slideshow-container {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.slide {
  display: none;
  text-align: center;
  color: #fca542;
  font-size: 1.5em;
  padding: 20px;
}

.slide.visible {
  display: block;
}

.testimonial-section {
  padding: 60px 20px;
  background-color: #2b09ec00;
  text-align: center;
  color: white;
}

.testimonial-title {
  color: #0a0a0a;
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
  height: auto;
}

.testimonial-card {
  display: none;
  background: #0b4d99;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #aaa;
  font-size: 0.95rem;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  background: #555;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-nav button.active {
  background: #0b4d99;
}

.testimonial-source {
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

/* Modern Overview Styles */
.modern-overview {
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.modern-container {
  max-width: 1000px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.modern-title {
  font-size: 2.2rem;
  text-align: center;
  color: #1e1e2f;
  margin-bottom: 30px;
  font-weight: 700;
}

.modern-description {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  font-family: "Segoe UI", sans-serif;
}

/* Comparison Section Styles */
.comparison-section {
  padding: 60px 20px;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
}

.comparison-container {
  max-width: 1000px;
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.comparison-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e2f;
}

.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-collapse: collapse;
}

.comparison-header,
.comparison-row {
  display: contents;
}

.feature-column,
.free-column,
.subscribed-column {
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 1rem;
}

/* Feature Column Styling */
.feature-column {
  background-color: #ffffff; /* White */
  font-weight: bold;
  text-align: left;
}

/* Free Column Styling */
.free-column {
  background-color: #ffffff; /* White */
}

/* Subscribed Column Styling */
.subscribed-column {
  background-color: #d4f4dd; /* Light green */
}

/* Header Styling */
.comparison-header .feature-column,
.comparison-header .free-column {
  background-color: #f5f5f5; /* Light gray header for Features and Free */
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-header .subscribed-column {
  background-color: #a8e6b5; /* Stronger green for Subscribed header */
  color: #064d17;
  font-weight: 700;
  font-size: 1.1rem;
}

.check-icon::before {
  content: "✔";
  color: #28a745; /* green */
  font-size: 1.2rem;
  font-weight: bold;
}

.cross-icon::before {
  content: "✖";
  color: #ff4d4f; /* red */
  font-size: 1.2rem;
  font-weight: bold;
}


/* Why Choose Section */
.why-choose-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-section .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e1e2f;
  margin-bottom: 50px;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.choose-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  color: #1a73e8;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 1rem;
  color: #555;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-tagline {
    font-size: 22px;
  }

  .features-grid,
  .safeguard-grid,
  .lockers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trusted-logos {
    gap: 30px;
  }

  .feature-item,
  .safeguard-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .align-items-start {
    align-items: center !important;
  }
  .hero-version,
  .hero-title {
    color: white;
    /* margin-left: 15%; */
    text-align: center;
  }
  .product-logo {
    margin: auto;
  }

  .left_column {
    display: flex;
    flex-direction: column !important;
  }
  .text-start {
    width: 100% !important;
  }
  .right_column {
    display: none;
  }
  .btn-group {
    margin-top: -48px;
  }
}

@media (max-width: 720px) {
  .align-items-start {
    align-items: center !important;
  }
  .hero-version,
  .hero-title {
    color: white;
    /* margin-left: 15%; */
    margin: auto !important;
  }
  .product-logo {
    margin: auto !important;
  }

  .left_column {
    display: flex;
    flex-direction: column !important;
  }
  .text-start {
    width: 100% !important;
  }
  .right_column {
    display: none;
  }
}

@media (max-width: 992px) and (min-width: 1261px) {
  /* .align-items-start {
    align-items: center !important;
} */
  .hero-version,
  .hero-title {
    color: white;
    /* margin-left: 15%; */
    margin: auto !important;
  }
  .hero-title {
    margin-top: 20px important;
    font-size: 30px;
  }
  .product-logo {
    margin: auto !important;
  }

  .animation {
    aspect-ratio: 10/10 !important;
  }
  .left_column {
    display: flex;
    flex-direction: column !important;
  }
  .text-start {
    width: 100% !important;
  }
  .right_column {
    display: none;
  }
}

@media (max-width: 1261px) {
  .align-items-start {
    align-items: center !important;
  }
  .hero-version,
  .hero-title,
  .hero-description,
  .hero-tagline {
    color: white;
    /* margin-left: 15%; */
    margin: auto !important;
    text-align: center;
  }
  .product-logo {
    margin: auto !important;
  }

  /* .left_column{
  display: flex;
  flex-direction: column !important;
} */
  .text-start {
    width: 100% !important;
  }
  .right_column {
    display: none;
  }
}

@media (max-width: 1261px) and (min-width: 300px) {
  .download-wrapper {
    justify-content: center;
  }

  .btn-download {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-group {
  margin-top: -48px;
}
.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.platform-btn {
  background-color: #a1a1a1;
  color: black;
  border: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 10px 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}

.platform-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Active button */
.platform-btn.active {
  background-color: #008000;
  color: #fff;
}

/* Hover effect */
.platform-btn:hover {
  background-color: #bbb;
  color: black;
}
@media (max-width: 350px) {
  .platform-btn {
    flex: 0 0 48%;
    padding: 10px 12px;
    font-size: 14px;
    flex: 1 20% 100%;
  }

  .platform-tabs {
    gap: 10px;
    justify-content: center;
  }

  .a,
  .b {
    display: none !important;
  }
}
/* Responsive adjustments */
@media (max-width: 480px) {
  .platform-btn {
    flex: 0 0 48%;
    padding: 10px 12px; /* ⬅️ reduced left-right padding */
    font-size: 14px;
  }

  .platform-tabs {
    gap: 10px;
    justify-content: center;
  }
  .a {
    display: none !important;
  }
  .b {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .platform-btn {
    padding: 8px 12px;
    font-size: 13px;
    flex: 1 10% 100%;
  }
}

@media (max-width: 768px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
   .platform-btn {
    flex: 1 10% 100%;
    padding: 8px 12px;
    font-size: 13px;
    min-width: 141px;
  }
}
@media (max-width: 650px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
   .platform-btn {
    flex: 1 10% 100%;
    padding: 8px 12px;
    font-size: 13px;
    min-width: 130px;
  }
}

@media (max-width: 600px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
   .platform-btn {
    flex: 1 10% 100%;
    padding: 8px 12px;
    font-size: 13px;
    min-width: 120px;
  }
}

@media (max-width: 570px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
   .platform-btn {
    flex: 1 10% 100%;
    padding: 8px 12px;
    font-size: 13px;
    min-width: 100px;
  }
}

@media (max-width: 500px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
   .platform-btn {
    flex: 1 10% 100%;
    padding: 8px 12px;
    font-size: 13px;
    min-width: 80px;
  }
}




.main-navbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Menu Toggle Button */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: #0b2545;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #030405;
}

/* Responsive (Mobile & Tablet) */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: linear-gradient(to bottom, #eaf6fb, #d7eaf7);
        /* Soft gradient like your image */
        position: absolute;
        top: 65px;
        right: 15px;
        width: 250px;
        padding: 10px 0;
        border-radius: 10px;
        border: 1px solid #d0e4ef;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        animation: slideDown 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.show-menu {
        display: flex;
    }

    .nav-menu li {
        padding: 0px 15px;
        text-align: left;
        border-bottom: 1px solid #e0edf5;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        color: #2a2a2a;
        font-size: 15px;
        text-decoration: none;
        transition: color 0.3s ease, text-shadow 0.3s ease, background-color 0.3s ease;
        display: block;
        border-radius: 6px;
    }

    .nav-menu li a:hover {
        color: #4da6ff;
        /* Light sky blue */
        background-color: rgba(77, 166, 255, 0.1);
        text-shadow: 0 0 5px #4da6ff;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
