* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
  text-decoration: none;
}

body {
  font-family:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
}

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header {
    width: 100%;
    background-color: #ffffff;
    padding: 15px 20px;
    position: sticky;   
    top: 0;            
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 100;
}
.logo-section img{
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* Search Section */
.search-section {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    font-size: 14px;
    color: #374151;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #319795;
}

.search-input::placeholder {
    color: #9ca3af;
}

/* Navigation Section - Desktop */
.nav-section {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 1rem;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    color: #4caf50;
    /* border:2px solid #2C7A7B; */
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Flag Section */
.flag-section {
    flex-shrink: 0;
}

.flag-icon {
    width: 28px;
    height: 18px;
    display: block;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 100;
    transition: transform 0.2s;
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-icon {
    width: 28px;
    height: 28px;
    display: block;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 10;
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C7A7B;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:active {
    transform: scale(0.95);
}

.close-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-nav-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.mobile-nav-link {
    font-size: 16px;
    color: #374151;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background-color: #f3f4f6;
    color: #2C7A7B;
}

/* Menu Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        gap: 20px;
    }
    .nav-section {
        gap: 20px;
    }
    .logo-section img{
      width: 60%;
      height: 60%;
      object-fit: contain;
  }
}

@media (max-width: 992px) {
    .header-container {
        flex-wrap: nowrap;
    }

    .logo-section {
        order: 1;
    }
    .logo-section img{
      width: 40%;
      height: 40%;
      object-fit: contain;
  }

    .search-section {
        order: 2;
        flex: 1;
        max-width: none;
        min-width: auto;
    }

    .header-icons {
        order: 3;
    }

    .nav-section {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .flag-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 15px;
    }

    .header-container {
        gap: 15px;
    }

    .logo-text-top,
    .logo-text-bottom {
        font-size: 13px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .search-section {
        min-width: 150px;
    }

    .search-input {
        padding: 8px 12px;
        font-size: 13px;
    }

    .mobile-menu {
        width: 300px;
    }
}

@media (max-width: 576px) {
    .header-container {
        gap: 12px;
    }

    .search-section {
        min-width: 120px;
    }

    .logo-text-top,
    .logo-text-bottom {
        font-size: 12px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .menu-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-menu {
        width: 280px;
        max-width: 90vw;
    }

    .mobile-menu-header {
        padding: 15px;
    }

    .mobile-menu-title {
        font-size: 18px;
    }

    .mobile-nav-section {
        padding: 15px;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 12px;
    }

    .logo-section {
        gap: 8px;
    }

    .logo-text {
        display: none;
    }

    .search-input {
        padding: 7px 10px;
        font-size: 12px;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }

    .mobile-menu.active {
        right: 0;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
  
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
   margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    text-align: center;
  }
  
  /* Titles */
  .title {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .subtitle {
    color: #555;
    font-size: 14px;
    margin-top: 5px;
  }
  
  /* Card */
  .card {
    margin: 25px auto;
    border-radius: 16px;
    overflow: hidden;
    max-width: 320px;
  }
  
  .card img {
    width: 100%;
    display: block;
  }
  
  /* Ads label */
  .ads-text {
    font-size: 12px;
    color: #888;
  }
  
  hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
  }

  /* Rating */
  .rating {
    font-size: 18px;
    color: #f5b400;
    margin-bottom: 10px;
  }
  
  .rating span {
    color: #000;
    font-size: 14px;
    margin-left: 6px;
  }
  
  /* Advantages */
  .section-title {
    font-size: 20px;
    margin: 15px 0;
  }
  
  .advantages {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    margin-bottom: 25px;
  }
  
  .advantages ul {
    list-style: none;
  }
  
  .advantages li {
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
  }
  
  .advantages li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
  }
  
  /* Button */
  .apply-btn {
    background: #52aa34;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 25px;
    cursor: pointer;
    width: 35%;
    margin: 0 auto;
  }
  
  .apply-btn:hover {
    background: #52aa34;
  }
  
  .footer-text {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
  }
  
  /* 📱 Mobile Responsive */
  @media (max-width: 480px) {
    .advantages {
      flex-direction: column;
      align-items: center;
    }
  
    .advantages ul {
      width: 100%;
    }
    .apply-btn{
      width: 100%;
    } 
  }
  
  @media (max-width:768px) {
    .apply-btn{
      width: 60%;
    } 
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 16px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }
  /* Heading */
  h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  /* Green underline */
  .underline {
    width: 42px;
    height: 3px;
    background: #4caf50;
    margin-bottom: 18px;
  }
  
  /* Paragraphs */
  p {
    color: #3d3d3d;
    line-height: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 14px;
    /* letter-spacing: 0.1cap; */
  }
  
  /* CTA */
  .cta {
    text-align: center;
    margin-top: 28px;
  }
  
   small {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: #777;
  }
  
  /* 📱 Mobile */
  @media (max-width: 480px) {
    h1 {
      font-size: 1.5rem;
    }
  
    p {
      font-size: 13px;
    }
  }
  

  .page {
    display: flex;
    justify-content: center;
    padding: 20px 16px;
  }
  
  
  /* Top small text */
  .top-note {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 14px;
    text-align: center;
  }
  
  
  .section-gap {
    margin-top: 28px;
  }
  
  /* Green underline */
  .underline {
    width: 40px;
    height: 3px;
    background: #4caf50;
    margin-bottom: 16px;
  }
       
 
  
  /* CARD BOX */
  .card-box {
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    gap: 24px;
  }
  
  /* LEFT CARD IMAGE */
  .card-image {
    background: #eeeeee;
    border-radius: 10px;
    width: 280px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  
  .card-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 40px 40px 0;
    border-style: solid;
    border-color: transparent #ff8c00 transparent transparent;
    border-top-right-radius: 10px;
  }
  
  /* Mastercard Logo */
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo .circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  
  .logo .red {
    background: #eb001b;
  }
  
  .logo .orange {
    background: #f79e1b;
    margin-left: -20px;
  }
  
  .logo-text {
    margin-top: 12px;
    font-weight: bold;
    font-size: 18px;
  }
  
  /* RIGHT CONTENT */
  .card-content {
    flex: 1;
  }
  
  .card-content h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .card-content p {
    color: #555;
    margin-bottom: 16px;
  }
  
  /* BUTTON */
  .btn {
    display: inline-block;
    background: #5cb85c;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* FOOTER */
  .footer {
    margin-top: 60px;
    text-align: center;
  }
  
  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
  }
  
  .footer-logo span {
    color: #32d39a;
  }
  
  .footer-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  
  .footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .card-box {
      flex-direction: column;
      text-align: center;
    }
  
    .card-image {
      width: 100%;
      max-width: 300px;
    }
  
    .card-content h2 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .card-content h2 {
      font-size: 18px;
    }
  
    .btn {
      width: 100%;
      text-align: center;
    }
  }

  .footer-text {
    font-size: 1rem;
    color: #fff;
    margin-top: 10px;
    padding: 10px;
   background-color: #52aa34;
   text-align: center;
   font-weight: 500;
  }

.open-modal {
    padding: 12px 20px;
    background: #0b6e4f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;


}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
}

.modal-box {
    background: white;
    width: 400px;
    height: auto;
    /* padding: 25px; */
    border-radius: 10px;
    text-align: center;
    animation: popup 0.3s ease;
    border: 2px solid #f1f0f0;
    padding-bottom: 20px;
}

@keyframes popup {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #e1e1e1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #0d6a4a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: width 0.4s ease;
}


.questionText{
   font-size: 22px;
    color: #555;
    margin-bottom: 15px;
    transition: color .3s ease;
    height: auto;
}

.loading-text {
  font-weight: 400;
  max-width: 400px;
  animation: darkLight 1.6s ease-in-out infinite;
}

@keyframes darkLight {
  0% {
    color: #0d6a4a;
  }
  50% {
    color: #0f8b64b7;
  }
  100% {
    color: #0d6a4a;
  }
}


.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.option-btn {
    text-align: center;
    background: #0d6a4a;
    color: white;
    border: none;
    padding: 12px;
    width: 70%;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    /* Animation */
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.3s ease;
}

/* Hover – button slightly up */
.option-btn:hover {
    transform: translateY(-2px) scale(1.03);
    background-color: #0f8b63;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Click – button down */
.option-btn:active {
    transform: translateY(1px) scale(0.96);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.done-text {
  /* margin: 15px 0; */
  color: #555;
  font-size: 20px;
}

.unlock-btn {
  /* margin-top: 10px; */
  padding: 14px;
  width: 50%;
  background: #0f8b63;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

.unlock-btn:hover {
  background: #6a9c86;
}

#blurOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
} 

/* Loader */
#pageLoader {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 8px solid #fff;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ads-loader{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:#555;
  z-index:2;
}