
body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box; 
    overflow-x: hidden;
    overflow-y: hidden;
  }






  /*-------------------
   HERO SECTION 
   --------------------*/


.homeHeroSection {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 40px;
  margin-top: 70px;
  transition: background-color 0.3s ease;
}

body.darkMode .homeHeroSection {
  background-color: #000;
}

#backgroundVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.homeHeroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 15, 28, 0.746);
  z-index: 1;
}

body.darkMode .homeHeroOverlay {
  background: rgba(0, 0, 0, 0.6);
}

.homeHeroContent {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 15px;
  max-width: 1200px;
  letter-spacing: 1px;
  text-align: center;
}

body.darkMode .homeHeroContent {
  color: #ddd;
}

.heroTextContainer {
  margin-bottom: 50px;
}

.homeHeroTitle {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
  padding: 0 150px;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: font-size 0.3s ease;
}

body.darkMode .homeHeroTitle {
  color: #f1f1f1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.homeHeroSubtitle {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.2;
  color: #f8f8f8;
  margin-bottom: 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

body.darkMode .homeHeroSubtitle {
  color: #d1d1d1;
}

.homeGridContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  width: 60%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

body.darkMode .homeGridContainer {
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(128, 128, 128, 0.279);
}

.homeGridItem {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  backdrop-filter: blur(10px);
  text-align: center;
}

body.darkMode .homeGridItem {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.homeGridItem:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.homeGridItem h5 {
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
  margin-bottom: -1px;
}

body.darkMode .homeGridItem h5 {
  color: #f1f1f1;
}

.homeGridItem p {
  font-size: 12px;
  font-weight: 300;
  color: #dcdcdc;
  transition: color 0.3s ease;
  margin-bottom: -1px;
}

body.darkMode .homeGridItem p {
  color: #b0b0b0;
}

@media (max-width: 992px) {
  .homeHeroSection {
    margin-top: 0px;
  }

  .homeHeroTitle {
    font-size: 2.8rem;
  }

  .homeHeroSubtitle {
    font-size: 1.1rem;
  }

  .heroTextContainer {
    max-width: 100%;
    text-align: center;
    padding: 0 30px;
  }

  .homeGridContainer {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
  }

  .homeGridContainer {
    width: 80%;
  }
}

@media (max-width: 800px) {
  .homeHeroTitle {
    font-size: 2.2rem;
    text-align: center;
    padding: 0;
    text-transform: none;
    margin-top: 40px;
  }

  .homeHeroSubtitle {
    font-size: 17px;
    text-align: center;
  }

  .homeGridContainer {
    padding: 15px;
    margin-top: 15px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .homeGridItem {
    padding: 12px;
    flex: 1 1 45%;
  }

  .customHomeGridItem{
    margin-top: -8px;
  }

  .homeGridItem h5 {
    font-size: 14px;
  }

  .homeGridItem p {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .homeHeroTitle {
    font-size: 1.8rem;
    text-align: center;
  }

  .homeHeroSubtitle {
    font-size: 0.9rem;
    text-align: center;
  }

  .homeGridContainer {
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    margin-top: 10px;
  }

  .homeGridItem {
    padding: 10px;
  }
}












  /*-------------------
   ABOUT BRAND 
   --------------------*/

.homeAbtSection {
    background-color: white;
    padding: 60px 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  body.darkMode .homeAbtSection {
    background-color: black;
  }

  .homeAbtTitle {
    font-size: 32px;
    font-weight: 500;
    color: black;
    line-height: 1.1;
    animation: fadeIn 1.5s ease-out;
    width: 85%;
    margin: 0 auto 10px auto;
    font-family:"montserrat";
  }

  body.darkMode .homeAbtTitle {
    color: white;
  }

  .homeAbtDescription {
    font-size: 16px;
    font-weight: 300;
    color: black;
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto;
    animation: fadeIn 2s ease-out;
  }

  body.darkMode .homeAbtDescription {
    color: white;
  }

  .homeAbtIcons {
    animation: fadeIn 2s ease-out;
    display: flex;
    justify-content: center;
    border: 1px solid #77dbef6e;
  }

  body.darkMode .homeAbtIcons {
    border: 1px solid rgba(236, 234, 234, 0.149);
  }

  .homeAbtIcon {
    color: black;
    text-align: center;
    margin: 20px;
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #77dbef6e;
    background-color: white;
    padding: 10px 20px;
    color: #09a9d1;
  }

  body.darkMode .homeAbtIcon {
    border: 1px solid rgba(236, 234, 234, 0.149);
  }

  body.darkMode .homeAbtIcon {
    color: #77dbef;
    background-color: black;
  }

  .homeAbtIcon i {
    font-size: 40px;
  }

  .homeAbtIcon p {
    margin-top: 12px;
    font-weight: 400;
  }

  .homeAbtIcon:hover {
    transform: translateY(-12px);
    border: 1px solid #77dbef !important;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .homeAbtTitle {
      font-size: 30px;
      text-align: center;
      width: 100%;
      margin-top: 30px;
    }

    .homeAbtDescription {
      font-size: 15px;
      max-width: 100%;
      text-align: center;
      width: 100%;
    }

    .homeAbtIcons {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .homeAbtIcon {
      margin: 15px;
    }
  }








  /*-------------------
   FEATURED GRID SECTION
   --------------------*/

   .homeFeatures {
    padding: 80px 0;
    background: linear-gradient(145deg, #ffffff, #dcf4fe);
    transition: background-color 0.3s ease;
  }

  body.darkMode .homeFeatures {
    background: linear-gradient(145deg, #2c2c2c, #4f4f4f);
  }

  .featuresWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .homeFeatureGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 10px;
    margin-bottom: 30px;
  }

  .homeFeatureItem {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .homeFeatureItem:hover {
    transform: scale(1.05);
  }

  .homeFeatureContent {
    background-size: cover;
    background-position: center;
    padding: 40px 30px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  body.darkMode .homeFeatureContent {
    color: white;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 15, 28, 0.449);
    z-index: 1;
  }

  body.darkMode .overlay {
    background-color: rgba(0, 0, 0, 0.642); 
  }

  .contentWrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

  .iconContainer {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    animation: bounce 1s infinite;
    transition: background-color 0.3s ease;
  }

  .iconContainer:hover {
    background-color: #ff7043; /* Slightly darker hover state */
  }

  @keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
  }

  body.darkMode .iconContainer {
    background-color: #333; 
  }

  .homeFeatureContent p {
    font-size: 17px;
    font-weight: 300;
    width: 70%;
    line-height: 1.2;
    font-weight: 400;
  }

  body.darkMode .homeFeatureContent p {
    color: white; 
  }

  .homeFeaturePercentage {
    text-align: center;
  }

  .loopText {
    font-size: 35px;
    font-weight: bold;
    color: white;
    text-align: start;
    transition: color 0.3s ease;
  }

  /* Second Flex Column */
  .homeFeatureSingle {
    background-image: url('/assets/images/Hero\ img.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: background-size 0.3s ease;
  }

  .homeFeatureSingle:hover {
    background-size: 110%;
  }

  .homeFeatureContentSingle {
    padding-left: 40px;
    flex-basis: 50%;
    text-align: left;
    z-index: 2;
  }

  .homeFeatureContentSingle p {
    font-size: 1.2rem;
    font-weight: 400;
    background-color: #33c2ff31;
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  body.darkMode .homeFeatureContentSingle p{
    background-color: #4446465c;
  }

  .homeFeaturePercentageSingle {
    flex-basis: 50%;
    text-align: right;
    padding-right: 40px;
    z-index: 2;
  }

  .loopTextSingle {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
  }

  @media (max-width: 768px) {
    .homeFeatureGrid {
      grid-template-columns: 1fr;
      width: 90%;
      margin: 0 auto;
    }

    .homeFeatureSingle {
      grid-template-columns: 1fr;
      flex-direction: column;
      text-align: center;
      margin-top: 20px;
    }

    .homeFeatureContentSingle {
      padding-left: 0;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
      text-align: center;
      width: 80%;
    }

    .homeFeaturePercentageSingle {
      padding-right: 0;
    }

    .iconContainer {
      width: 50px;
      height: 50px;
      font-size: 18px;
    }

    .homeFeatureContent p {
      font-size: 1rem;
    }

    .loopText,
    .loopTextSingle {
      font-size: 35px;
    }
    
  }

  @media (max-width: 480px) {
    .iconContainer {
      width: 40px;
      height: 40px;
    }

    .homeFeatureContent p {
      font-size: 16px;
    }

    .loopText,
    .loopTextSingle {
      font-size: 30px;
    }
  }










   /*-------------------
   HOW PASSENGER WORK SECTION
   --------------------*/

   .howPassWorksSection {
    text-align: center;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
  }

  body.darkMode .howPassWorksSection {
    background: rgba(0, 0, 0, 0.7);
  }

  .howPassWorksTitle {
    font-size: 25px;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #36b1ff;
    background-color: #33c2ff19;
    border: 1px solid #36b1ff;
    padding: 10px 0;
    border-radius: 50px;
  }

  body.darkMode .howPassWorksTitle {
    color: #36b1ff;
    border: none;
    background-color: #33c2ff19;
    border-radius: 50px;
  }

  .howPassWorksGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    position: relative;
  }

  
  .howPassWorksItem {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 128, 128, 0.09);
  }

  body.darkMode .howPassWorksItem {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(195, 191, 191, 0.453);
  }

  .howPassWorksIcon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .howPassWorksContent {
    font-size: 17px;
    font-weight: 400;
    color: #333;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.2;
  }

  body.darkMode .howPassWorksContent {
    color: #ddd;
  }

  .howPassWorksItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 10px rgba(108, 186, 198, 0.2);
  }

  body.darkMode .howPassWorksItem:hover{
    box-shadow: none;
    border: 1px solid #36b1ff;
  }

  .howPassWorksItem:hover .howPassWorksIcon {
    transform: scale(1.1);
    opacity: 0.8;
  }

@media (max-width: 992px) {
  .howPassWorksGrid {
    grid-template-columns: 1fr 1fr;
  }

  .howPassWorksItem {
      border-radius: 15px;
      padding: 20px;
    }
}

@media (max-width: 600px) {
  .howPassWorksGrid {
    padding: 0 15px;
  }

  .howPassWorksTitle {
    font-size: 18px;
    max-width: 300px;
  }

  .howPassWorksContent {
    font-size: 14px;
  }


}











   /*--------------------------
   HOW DRIVER WORK SECTION
   ----------------------------*/


   .howDriverWorksSection {
    text-align: center;
    padding: 100px 0;
    background: rgba(237, 245, 248, 0.331);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
  }

  body.darkMode .howDriverWorksSection {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0px;
  }

  .howDriverWorksTitle {
    font-size: 25px;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #F8835C;
    background-color: #f8835c1a;
    padding: 10px 0;
    border: 0.5px solid #F8835C;
    border-radius: 50px;
  }

  body.darkMode .howDriverWorksTitle {
    color: #F8835C;
    background-color: #f8835c1a;
    border: none;
    border-radius: 50px;
  }

  .howDriverWorksGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    position: relative;
  }

  
  .howDriverWorksItem {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  body.darkMode .howDriverWorksItem {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(215, 214, 214, 0.371);
  }

  .howDriverWorksIcon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .howDriverWorksContent {
    font-size: 17px;
    font-weight: 400;
    color: #1e1e1e;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.2;
  }

  body.darkMode .howDriverWorksContent {
    color: #ddd;
  }

  .howDriverWorksItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 10px #f8835c4b;
  }

  body.darkMode .howDriverWorksItem:hover{
    box-shadow: none;
    border: 1px solid #F8835C;
  }

  .howDriverWorksItem:hover .howDriverWorksIcon {
    transform: scale(1.1);
    opacity: 0.8;
  }

    @media (max-width: 992px) {
      .howDriverWorksGrid {
        grid-template-columns: 1fr 1fr;
      }

      .howDriverWorksItem {
      border-radius: 15px;
      padding: 20px;
    }
    }
  
    @media (max-width: 600px) {
    .howDriverWorksGrid {
      padding: 0 15px;
    }
  
      .howDriverWorksTitle {
      font-size: 18px;
      max-width: 300px;
    }

    .howDriverWorksContent {
      font-size: 14px;
    }

  }









   /*-------------------
   PRICING SECTION
   --------------------*/

   .pricingSection {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #fbfafa);
    position: relative;
  }

  body.darkMode .pricingSection {
    background: linear-gradient(135deg, #1e1e1e, #333333);
  }

  .pricingTitle {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  body.darkMode .pricingTitle {
    color: #f1f1f1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .pricingDescription {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
  }

  body.darkMode .pricingDescription {
    color: #ddd;
  }

  .pricingContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .pricingDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    transition: transform 0.3s ease;
    width: 100%;
    margin-top: 30px;
  }

  body.darkMode .pricingDetails {
    background: #444;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.1);
  }

  .pricingDetails:hover {
    transform: translateY(-5px);
  }

  .pricingCost {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #36b1ff;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(50px);
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  }

  body.darkMode .pricingCost {
    color: #39c2d5;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(255, 255, 255, 0.2);
  }

  .pricingKilometers {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .kilometerLabel {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
  }

  body.darkMode .kilometerLabel {
    color: #ddd;
  }

  .sliderWrapper {
    width: 90%;
    max-width: 800px;
    position: relative;
  }

  .kmSlider {
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #36b1ff 0%, #cfeefb 100%);
    border-radius: 10px;
    outline: none;
    appearance: none;
    transition: background 0.3s ease;
  }

  .kmSlider::-webkit-slider-thumb {
    appearance: none;
    width: 32px;
    height: 32px;
    background: #09a9d1;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  body.darkMode .kmSlider::-webkit-slider-thumb {
    background: #39c2d5;
  }

  .kmSlider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
  }

  .kmSlider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: #36b1ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  body.darkMode .kmSlider::-moz-range-thumb {
    background: #39c2d5;
  }

  .kmSlider:focus {
    background: linear-gradient(90deg, #36b1ff 0%, #cfeefb 100%);
  }

  @media (max-width: 768px) {
    .pricingTitle {
      font-size: 2rem;
    }

    .pricingDescription {
      font-size: 16px;
      max-width: 80%;
      margin: 0 auto;
    }

    .pricingCost{
      font-size: 25px;
    }

    .kilometerLabel {
      font-size: 1.3rem;
    }

    .kmSlider {
      height: 12px;
    }
  }








   /*-------------------
   FAQ SECTION
   --------------------*/

   .faqSection {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    transition: background 0.3s ease-in-out;
  }

  .faqAccordion {
    border: 1px solid rgb(190, 186, 186);
    padding: 20px 40px;
  }

  .faqItem {
    margin-bottom: 5px;
    border-bottom: 1px solid #e0e0e054;
    padding-bottom: 20px;
  }

  .faqQuestion {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    padding: 10px 0;
  }

  .faqAnswer {
    font-size: 14.5px;
    color: #666;
    padding: 10px 0 0 20px;
    line-height: 1.2;
  }

  .toggleIcon {
    font-size: 16px;
    color: #09a9d1;
    transition: transform 0.3s ease;
  }


  .faqQuestion.collapsed .toggleIcon {
    transform: rotate(180deg);
  }

  .faqRight {
    text-align: left;
    padding-left: 30px;
  }

  .faqTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    max-width: 300px;
  }
  
  .faqTitleMobile {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
    display: none;
  }

  body.darkMode .faqTitleMobile{
    color: white;
  }

  .faqDescription {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
  }

  .formLabel{
    color: grey;
    background-color: #33c2ff1a;
    padding: 5px 12px;
    margin-bottom: 10px;
    border-radius: 50px;
    font-size: 13px;
    border: 1px solid #36b1ff;
  }

  body.darkMode .formLabel{
    color: rgba(255, 255, 255, 0.576);
  }

  .faqForm .formControl {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .faqForm .btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #36b1ff;
    color: #fff;
  }

  .faqForm .btn:hover {
    background-color: #09a9d1;
  }

  body.darkMode .faqSection {
    background: linear-gradient(135deg, #333, #222);
  }

  body.darkMode .faqQuestion {
    color: #fff;
  }

  body.darkMode .faqAnswer {
    color: #ddd;
  }

  body.darkMode .faqTitle {
    color: #fff;
  }

  body.darkMode .faqDescription {
    color: #bbb;
  }

  body.darkMode .faqForm .formControl {
    background-color: #444;
    color: #fff;
    border: 1px solid #555;
  }


  @media (max-width: 768px) {
    .FaqRow{
      padding: 10px 0 50px 0;
    }
    .faqSection {
      padding: 30px 15px;
    }

    .faqAccordion {
      border-radius: 20px;
    }

    .faqTitleMobile {
      display: block;
      font-size: 25px;
    }
    .faqTitle{
      display: none;
    }

    .faqQuestion{
      font-size: 15px;
    }

    .faqAnswer{
      font-size: 14px;
    }

    .faqDescription {
      font-size: 15px;
      margin-top: 30px;
    }

    .FaqSecSecond{
      margin-top: 30px;
    }

    .faqForm .formControl {
      font-size: 0.9rem;
    }

    .faqForm .btn {
      font-size: 0.9rem;
    }
  }












  /* ----------------------------
  INFORMATION AND FLYER SECTION
  -------------------------------- */

  .infoSection {
    padding: 120px 0;
    background-color: #ffffff;
    margin-bottom: 40px;
  }
  
  .infoSectionTitle {
    font-size: 28px !important;
    font-weight: 550;
    margin-top: 20px;
    color: #36b1ff;
    line-height: 1.1;
  }
  
  .infoSectionDescription {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .infoFlyerImage {
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
  }
  
  .infoBrandLogo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #33c2ff5c;
    padding: 10px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .infoIconContainer {
    margin-bottom: -30px;
  }
  
  @media (max-width: 768px) {
    .infoSection {
      padding: 50px 15px;
    }
  
    .infoSectionTitle {
      font-size: 1.8rem;
      text-align: center;
    }
  
    .infoSectionDescription {
      font-size: 0.95rem;
      text-align: center;
    }
  
    .infoFlyerImage {
      max-width: 80%;
      margin: 0 auto 20px;
    }
  
    .infoIconContainer {
      justify-content: center;
      margin-bottom: 30px;
    }
  }
  
  @media (min-width: 992px) {
    .infoSectionTitle {
      font-size: 2.5rem;
    }
  
    .infoSectionDescription {
      font-size: 1.1rem;
    }
  
    .infoFlyerImage {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .infoSection {
      padding: 50px 15px;
    }
  
    .infoSectionTitle {
      font-size: 23px !important;
      text-align: center;
      max-width: 80%;
      margin: 0 auto;
    }
  
    .infoSectionDescription {
      font-size: 0.9rem;
      text-align: center;
    }
  
    .infoFlyerImage {
      max-width: 90%;
    }
  
    .infoIconContainer{
      display: none;
    }
  }
  
  body.darkMode .infoSection {
    background-color: #222;
  }
  
  body.darkMode .infoSectionDescription {
    color: #ccc;
  }
  
  body.darkMode .infoIconContainer {
    margin-bottom: 40px;
  }






  /* -------------------
  TESTIMONIES SECTION
  ----------------------- */

  .reviewsSection {
    background-color: #f9f9f9;
    padding-top: 100px;
    padding-bottom: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .reviewsSection .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .reviewsSection h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .revSec1 {
    color: #333;
  }
  
  .revSec3 {
    color: #3f3f3f;
    margin-bottom: 30px;
  }
  
  .reviewsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .reviewCard {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(78, 77, 77, 0.234);
  }
  
  body.darkMode .reviewCard{
    border: 1px solid rgba(255, 255, 255, 0.434) !important;
  }
  
  .reviewCard:hover {
    transform: translateY(-10px);
    border-color: rgba(7, 131, 255, 0.509);
  }
  
  .starRating {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffbb33;
  }
  
  .reviewContent {
    font-size: 15.5px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.2;
  }
  
  .reviewerInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .reviewerInfo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .reviewerInfo h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #333;
    margin-top: 10px;
  }
  
  .reviewerInfo .role {
    font-size: 14px;
    color: #999;
    text-align: start;
  }
  
  body.darkMode .reviewsSection {
    background-color: #333;
  }
  
  body.darkMode .revSec1,
  body.darkMode .revSec3 {
    color: #fff;
  }
  
  body.darkMode .reviewsSection h1{
    color: #36b1ff;
  }
  
  body.darkMode .reviewsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  body.darkMode .reviewCard {
    background-color: #393939;
    border: 1px solid rgba(78, 77, 77, 0.8);
  }
  
  body.darkMode .starRating {
    color: #ffcc00;
  }
  
  body.darkMode .reviewContent {
    color: #ddd;
  }
  
  body.darkMode .reviewerInfo h4 {
    color: #fff;
  }
  
  @media (max-width: 992px) {
    .reviewsSection{
      padding: 30px;
    }
    .reviewsGrid,
    body.darkMode .reviewsGrid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .reviewsGrid,
    body.darkMode .reviewsGrid  {
      grid-template-columns: 1fr;
    }
  
    .reviewsSection h1 {
      font-size: 25px;
    }
  
    .reviewContent,
    .reviewerInfo h4  {
      font-size: 14px;
    }
  }











  /* -------------------
  DOWLOAD APP SECTION
  ---------------------- */


  .downldSection {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .downldLogo {
    width: 140px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    filter: invert(73%) sepia(56%) saturate(707%) hue-rotate(184deg) brightness(195%) contrast(191%);
  
  }
  
  body.darkMode .downldLogo {
    filter: none; 
  }
  
  .downldLogo:hover {
    transform: scale(1.1);
  }
  
  .downldText {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .downldContainer {
    background-color: rgb(209, 206, 206);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  
  .downldAvailableText {
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    background-color: #09a9d171;
    margin-bottom: 30px;
    padding: 12px 0;
    max-width: 60%;
    margin: 0 auto;
    margin-top: -40px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-bottom: 20px;
  }
  
  .downldButtons {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .downldButton {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .downldButton img {
    width: 180px;
    height: 60px;
    object-fit: contain;
  }
  
  .downldButton:hover img {
    transform: scale(1.05);
  }
  
  body.darkMode .downldSection {
    background-color: #333;
  }
  
  body.darkMode .downldText {
    color: #fff;
  }
  
  body.darkMode .downldContainer {
    background-color: #444;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  body.darkMode .downldAvailableText {
    background-color: #006a8c;
  }
  
  @media (max-width: 768px) {
    .downldLogo {
      width: 120px;
    }
  
    .downldText {
      font-size: 17px;
    }
  
    .downldContainer {
      padding: 30px;
    }
  
    .downldAvailableText {
      font-size: 14px;
      margin-top: -30px;
      max-width: 700px;
    }
  
    .downldButtons {
      flex-direction: column;
      gap: 20px;
    }
  
    .downldButton img {
      width: 160px;
      height: 50px;
    }
  }
  
  


