    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&family=Inter:wght@300&family=Playfair+Display:ital,wght@1,600&display=swap');

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      max-width: 100vw;
    }
    :root{
        --Bgreen: #5E8E3E;
        --Cblue: #4676FF;
    }
    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #f5f6fc; 
      color: #111;
    }
    h1 {
        font-size: 46px;
        font-weight: bold;
        line-height: 1.5;
    }
    h2 {
        font-size: 33px;
        font-weight: bold;
        line-height: 1.2;
        margin: 6px 0;
    }
    p {
        font-size: 26px; 
        font-weight: 500; 
        line-height: 1.3;
    }
    a {
      text-decoration: none;
    }
    em {
        font-family: 'Playfair Display', serif;
        color: var(--Cblue);
        font-style: italic;
        font-weight: 600;
    }
    hr {
        width: 70%;
        height: 1px;
        border: none; 
        margin: 3px auto;
        background-image: linear-gradient(to right, black, blue, black);
    }
    .badge {
      display: inline-block;
      padding: 8px 20px;
      border: 2px solid #5E8E3E;
      color: #5E8E3E;
      border-radius: 40px;
      font-weight: 400;
      font-family: 'Inter', sans-serif;
      font-size: 18px;
    }
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px;
      text-align: center;
    }
    .popup-hover{
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .popup-hover:hover {
      transform: translateY(-2px) scale(0.98);
      opacity: 0.85;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      background-image: linear-gradient(#1105f3, #474483);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      font-size: 1rem;
      color: #fff;
      text-decoration: none;
      cursor: pointer;
      margin-top: 16px;
    }
    .btn img, .submit-btn img {
      width: 20px;
      height: 20px;
    }
    .submit-btn {
      background-image: linear-gradient(#1105f3, #474483);
      color: #f5f6fc;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      display: flex; 
      align-items: center; 
      gap: 10px; 
      margin: 30px auto;
      padding: 16px 50px; 
      border: none; 
      border-radius: 10px; 
      cursor: pointer;
  }

    @media (max-width: 768px) {
        body {
            line-height: 1;
            width: 100%;
            border: #111 solid;
            margin: 0;
            padding: 0;
        }
        h1 {
            font-size: 30px;
            line-height: 0.95;
        }
        h2 {
            font-size: 26px;
        }
        p {
            font-size: 16px;
            line-height: 1.0;
        }
        .badge {
            padding: 3.5px 10px;
            font-size: 12px;
        }
    }

/* ================================
       Nav Header
    ================================ */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100000000;
    }
/* ================================
       Top Image Banner
    ================================ */
    .top-banner {
      width: 100%;
      height: 230px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin-top: -40px;
      position: relative;
    }
    /* Banner overlay */
    .banner-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 100%;
      padding: 0 20px;
    }
    .breadcrumb-box {
      display: inline-block;
      background: rgba(0, 0, 0, 0);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      margin-bottom: 5px;
      font-size: 0.6rem;
      border: white 0.1px solid;
    }
    .banner-logo {
      display: block;
      margin: 0 auto 16px;
      margin-bottom: 0px;
      max-width: 180px;
      height: auto;
    }
    .banner-title {
      font-size: 3rem;
      font-weight: bold;
      color: white;
      margin-top: -10px;
      margin-bottom: 8px;
    }
    .banner-subtitle {
      font-size: 1rem;
      color: white;
      opacity: 0.7;
      margin-bottom: -40px;
    }


    /*=========================
             FAQ's 
    ===========================*/
    .faq-list {
      max-width: 900px; 
      margin: 40px auto 0;
    }
    .faq-item {
      border-bottom: 1px solid #ccc;
      padding: 12px 0;
      margin: 10px;
      cursor: pointer;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 22px;
      font-weight: 500;
      transition: color 0.3s;
    }
    .faq-question:hover {
      color: #4676FF;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.5s ease;
      font-size: 16px;
      margin-top: 9px;
      line-height: 1.1;
      text-align: left;
    }
    .faq-item.open .faq-answer {
      max-height: 500px;
      opacity: 1;
    }
/* ——— FAQ Section Mobile Overrides ——— */
@media (max-width: 768px) {

  .faq-list {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
  }
  .faq-item {
    padding: 8px 0 !important;
    border-bottom: 1px solid #ccc !important;
  }
  .faq-question {
    font-size: 0.8rem !important;
  }
  .faq-question img {
    width: 16px !important;
    height: 16px !important;
  }
}


    /*=========================
             FOOTER   
    ===========================*/

.popup-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}
.popup-hover:hover {
  transform: translateY(-2px) scale(0.98);
  opacity: 0.85;
}

.footer-section {
display: flex;
justify-content: center;
align-items: center;
border-radius: 33px 33px 0 0;
background-color: #0f0f10;
color: gainsboro;
}

.footer-content-wrapper {
padding: 50px 0;
text-align: center;
width: 100%;
max-width: 1300px;
}

.footer-description {
width: 100%;
margin: 5px auto;
color: aliceblue;
font-size: 30px;
font-weight: 600;
}

.social-icons {
margin: 30px auto;
}

.social-icons img {
width: 28px;
height: 28px;
margin-right: 18px;
}

.social-icons img:last-child {
margin-right: 0;
}


.vyxr-subscribe {
margin-top: 20px;
}
.vyxr-subscribe-form {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 0;
margin-top: 20px;
}
.vyxr-subscribe-input-wrapper {
position: relative;
flex: 1;
max-width: 600px;
}
.vyxr-input-icon {
position: absolute;
left: 12px;
top: 60%;
transform: translateY(-50%);
color: #fff;
font-size: 1.5rem;
pointer-events: none;
}
.vyxr-subscribe input[type="email"] {
background: #181818;
border: 2px solid #fff;
border-radius: 22px;
padding: 14px 18px 14px 48px;
width: 100%;
font-size: 1.2rem;
color: #fff;
outline: none;
transition: border 0.2s;
box-sizing: border-box;
}
.vyxr-subscribe input[type="email"]::placeholder {
color: #bbb;
opacity: 1;
font-size: 1.1rem;
}
.vyxr-subscribe input[type="email"]:focus {
border: 2px solid aliceblue;
}
.vyxr-subscribe button {
margin-left: 18px;
padding: 0 32px;
height: 52px;
border: none;
border-radius: 22px;
background: linear-gradient(90deg, #4676ff 0%, #3a5de7 100%);
color: #fff;
font-size: 1.2rem;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
}
.vyxr-subscribe button:hover {
background: linear-gradient(90deg, #3a5de7 0%, #4676ff 100%);
}
.vyxr-subscribe button img {
width: 22px;
height: 22px;
margin-left: 2px;
}

.footer-links-grid {
  /* max-width: 1200px; */
display: flex;
/* flex-wrap: wrap; */
justify-content: space-evenly;
gap: 50px;
text-align: left;
margin: 50px;
}
.links {
  display: flex;
  flex-direction: column;
}
.Link-title {
  color: whitesmoke;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.link {
  color: azure;
  font-size: 16px;
  font-weight: lighter;
  margin: 2px 0;
line-height: 1.6;
}
.icon {
  width: 13px;
  vertical-align: middle;
margin-right: 5px;
}
.icon-phone {
width: 12px;
vertical-align: middle;
margin-right: 5px;
}
.footer-divider {
border: none;
height: 2.5px;
width: 1200px;
margin: 40px;
background-image: linear-gradient(to right, skyblue, darkblue, aqua);
}
.vyxr-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #f5f6fc;
}
.vyxr-footer-bottom a { 
  color: #fff; 
  text-decoration: none; 
}

.footer-logo-section {
margin-top: 75px;
}

.footer-logo-section img {
width: 700px;
height: auto;
}

.footer-logo-section h1 {
font-family: 'Inter', sans-serif;
color: gainsboro;
}

.footer-strong-highlight {
font-family: 'Playfair Display', serif;
font-weight: 400;
font-style: italic;
}



/*  responsive */
@media (max-width: 768px) {
  .footer-description {
      width: 95%;
      font-size: 16px;
  }
  .footer-links-grid {
    flex-direction: column;
    align-items: center;
    margin: 30px auto 0 auto;
    gap: 30px;
  }
  .links {
    width: 80%;
    align-items: center;
    text-align: center;
  }
  .Link-title {
      margin-bottom: 10px;
  }
  .footer-divider {
      margin: 30px auto 0 auto;
  }
  .footer-logo-section {
      margin-top: 40px ;
  }
  .footer-logo-section img {
    width: 370px;
  }
  .footer-logo-section h1 {
      font-size: 1.4em;
  }
  .vyxr-subscribe-form {
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 10px;
    margin-top: 20px;
    }
    .vyxr-subscribe button {
      width: 75%;
      margin: 0 auto;
      border-radius: 19px;
      justify-content: center;
    }
    .vyxr-footer-bottom {
      flex-direction: column;
      margin: 10px;
    }


}

