* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
   overflow-x:hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed; /* changed from fixed to relative */
  width: 100%;
  z-index: 1; /* optional */
  background-color: #636466; /* keep background so links are visible */
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}
.logo img { width: 120px;}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00bcd4;
}

.nav-links a.active {
  color: #2FBDBD;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Banner Section */
.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video behave like background */
}

/* Content Sections */
.content-section {
  padding: 100px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.content-section:nth-child(even) {
  background-color: #e0e0e0;
}

.aboutheading{
        margin-bottom: 15px;
    font-size: 36px;
    color: #3A3A3A;
    font-family: 'Poppins';
}

/* Fix scroll with fixed navbar */


/* Back to Top Button */
#topBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  font-size: 18px;
  background-color: #2FBDBD;
  color: white;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#topBtn:hover {
  background-color: #0097a7;
}

/* Contact Form */
.contact-form {
  max-width: 450px;        /* reduced width */
  margin: 0 auto;
  background: #fff;
  padding: 20px;           /* reduced padding */
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.form-group {
 margin-bottom: 15px;     /* reduced spacing */
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  /* font-weight: bold; */
  color: #3A3A3A;
  font-family:'Poppins';
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.others-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

/* Dropdown Toggle with Arrow */
.toggle-label {
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: flex-start;  /* keep text left aligned */
  align-items: center;
  position: relative;           /* allow absolute arrow */
  padding: 12px 14px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: background 0.3s ease;
}

.toggle-label:hover {
  background: #e9e9e9;
}

.toggle-label::after {
  content: "▼";
  font-size: 0.9rem;
  position: absolute;   /* place arrow at far right */
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.toggle-label.active::after {
  transform: translateY(-50%) rotate(-180deg);
}

/* Checkbox Dropdown */
.checkbox-options {
  display: none; /* Hidden until clicked */
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  animation: slideDown 0.3s ease;
}

.checkbox-options label {
  display: block;
  margin: 6px 0;
  font-weight: normal;
  color: #555;
}

/* Submit Button */
.submit-btn {
  background: #2FBDBD;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #2FBDBD;
}

.simple-footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
}

/* Hide Others input by default */
.others-input {
  display: none;
  margin-left: 10px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #bbb;
  font-size: 0.9rem;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  text-align: left;
}

.about-left, .about-right {
  flex: 1;
}

.about-left h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #111;
}

.about-left p {
 
  color: #333;
  
}

.about-img {
  width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 0 40% 0 0;
}

.about-gif {
  width: 100%;
  border-radius: 12px;
}

.about-video {
  width: 100%;}

/* About Section */
.about-section {
  background-color: #FFFFFF; /* white background */
  padding: 100px 20px;
  text-align: left;
}

.aboutpara{
    
        font-weight: 600;
    font-size: 24px;
    line-height: 28px;
}

.abouthead{
    font-size:26px;
    line-height:1.7;
}
.contactpara{
    font-size:18px;
}
.bridge-section {
  padding: 60px 20px;
  text-align: left;
}

.bridge-container {
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* center content by default */
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px; /* space between lines */
}

/* Left line: Key Benefits */
.bridge-left {
  width: 100%;
  text-align: left; /* left-align */
}

.bridge-left h3 {
 margin-bottom: 15px;
    font-size: 36px;
    color: #3A3A3A;
    font-family: 'Poppins';
}

.bridge-left p {
  font-size: 24px;
  color: #333;
  line-height: 1.6;
}

/* Center line: Sub-heading */
.bridge-center {
  width: 100%;
  text-align: center;
}

.bridge-center h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 0;
}

/* Third line: Image centered */
.bridge-image-container {
  width: 100%;
  text-align: center;
}

.bridge-img {
  max-width: 100%;
  height: auto;
 padding: 0 10%;
}
.next-section {
  background-color: #FFFFFF; /* white background */
  padding: 50px 20px 60px 20px;
  text-align: left;
}

.next-section .bridge-container {
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* center content by default */
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px; /* space between lines */
}

/* Left line: Key Benefits */
.next-section .bridge-left {
  width: 100%;
  text-align: left; /* left-align */
}

.next-section .bridge-left h3 {
  margin-bottom: 0;
 font-size: 36px;
    color: #3A3A3A;
    font-family: 'Poppins';
}

.next-section .bridge-left p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Image line: centered */
.next-section .bridge-image-container {
  width: 100%;
  text-align: center;
}

.next-section .bridge-img {
  max-width: 100%;
  height: auto;
  padding:0 10%;
}

.contact-container h2 {
     margin-bottom: 15px;
    font-size: 36px;
    color: #3A3A3A;
    font-family: 'Poppins';
}

.desktop-keybenefit {
 max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.desktop-keybenefit img {
  max-width: 100%;
  padding: 0 10%;
}

/* Mobile: hide desktop image, show swiper */
.mobile-keybenefit {
  display: none; /* hidden on desktop */
  width: 100%;
  overflow: hidden; /* prevents horizontal scroll */
  position: relative; /* ensures arrows stay inside the container */
  padding: 20px 0; /* optional: gives some spacing around slides */
}

.mobile-keybenefit .swiper {
  width: 100%;
}

.mobile-keybenefit .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.bridge-section {
  overflow: hidden; /* ensures arrows don't overflow parent */
  position: relative;
}

.keybenefits-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.bridge-container,
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;   /* changed to white */
  color: #3A3A3A;        /* dark text for contrast */
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  z-index: 1000;
  padding: 0px 20px;
}

.footer-content {
  display: flex;
  align-items: center;
}

.footer-left {
  flex: 0 0 70%;          /* 70% width */
  text-align: left;     /* centers the paragraph */
}

.footer-right {
  flex: 0 0 30%;          /* 30% width */
  text-align: right;
}

.footer-logo {
  max-height: 50px;       /* control logo size */
  width: auto;            /* keep aspect ratio */
}

body {
  padding-bottom: 70px;   /* avoids overlap with content */
}

/* Target the footer text */
.footer-left p {
  font-size: 12px;              /* updated font size */
  font-family: 'Poppins', sans-serif; /* updated font */
  margin: 0;                    /* keep spacing consistent */
}

/* Lower only the X in Rxperience */
.footer-left p .x-lower {
  vertical-align: sub;           /* move X down */
  font-size: 12px;               /* match main text */
  font-family: 'Poppins', sans-serif;
}

.x-lower{
    
     vertical-align: sub;           /* move X down */
  font-size: 15px;               /* match main text */
  font-family: 'Poppins', sans-serif;
  font-weight:900;

}



/* Contact Header */
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.contact-heading {
  align-self: flex-start; /* Heading on left */
  font-size: 2.5rem;
  color: #3A3A3A;
  margin-bottom: 20px;
}

.contact-subtext h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-subtext p {
     font-family: 'Poppins';
    color: #3A3A3A;
}
.contacthead{
    font-size:26px;
}
.contactpara{
    font-size:16px;
    margin-bottom:20px;
    margin-left:68px;
}

/* Contact Body: Image + Form */
.contact-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
      margin-top: 100px;
}

.contact-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  padding: 10% 15%;
 
}

.contact-right {
  flex: 1;
}




   

/* Dropdown Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Responsive Styles */
@media (max-width: 768px) {
    .navbar{
        height: 60px;}
    .logo img{
    width: 100px;
    padding-top: 10px;     
        }
.nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #636466; /* full-width background */
    width: 100%;
    flex-direction: column;
    display: none;
}

.nav-links li {
    text-align: right;   /* text aligned to the right */
    margin: 15px 20px;   /* spacing from edges */
}

.menu-toggle {
    display: block;
}

.nav-links.active {
    display: flex;
}

.banner {
        height: 50vh;
}
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
    .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left, .about-right {
    flex: unset;
    width: 100%;
  }

  .about-img{
      padding:0;
  }
  .about-gif {
    max-width: 100%;
  }
 .bridge-container {
    gap: 30px;
  }
  .next-section .bridge-container {
    gap: 30px;
  }
    .contact-section {
    padding: 60px 15px;
  }

  .contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .bridge-img {
 padding: 0;
}
 .desktop-keybenefit {
    display: none;
  }

  .mobile-keybenefit {
    display: block;
  }

  .swiper-container {
    width: 100%;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
    .contact-header {
    text-align: center;
  }
  .contact-heading {
    align-self: center;
    font-size: 2rem;
  }
  .contact-body {
    flex-direction: column;
    gap: 30px;
  }
  .contact-left, .contact-right {
    width: 100%;
    margin-top:0;
  }
  .contact-img {
    margin: 0 auto;
  }
  .about-container{padding-top: 0;}
  
  .abouthead,.contacthead{
      font-size:22px;
      
  }
  .aboutpara {
      font-size:16px;
  }
  .contactpara{
      margin-left:10px;
      font-size:12px;
  }
.bridge-section{
        padding: 40px 20px;
}
.next-section{
    padding: 50px 20px 5px 20px;
}
.bridge-left p{font-size: 20px;}
.site-footer{padding: 0px 10px;}
.footer-left{flex: 0 0 40%;padding-left: 10px;}
.footer-left p {font-size: 8px;}
.footer-logo{max-height: 38px;}

.others-input {
    display: block;
    margin-top: 6px;
    margin-left: 0;
    width: 100% !important;
  }

  .contact-form input,
  .others-input {
    font-size: 0.9rem;
    padding: 8px;
  }
 
  .contact-form input[type="date"] {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    background-color: #fff;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  .contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 4px;
    margin-right: 6px;
  }
  .bridge-left h3{
      font-size:32px;
  }
  .next-section .bridge-left h3{
      font-size:32px;
  }
}




