* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a, a:visited, a:hover, a:active {
  color: inherit; /* or your custom color */
  text-decoration: none; /* remove underline if needed */
}
body, html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  
  background-color: whitesmoke;
  background-repeat: no-repeat;
   font-family: 'Poppins', sans-serif;}
   .gradient-background {
  background: linear-gradient(13deg,#ead7cf,#f5f5f5,#ead7cf);
  background-size: 180% 180%;
  animation: gradient-animation 12s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Intro Screen */
.intro-screen {
    display: none;
  background-color: #d00000;
  color: white;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 10;
  
  align-items: center;
  justify-content: center;
}
.line-container {
  
  z-index: -1;
  position: absolute;
      display: flex;
      justify-content: center;
      align-items: end;
      height: 600px;
      top: 145px;
      gap: 30px;
      padding: 20px;
      display: none;
    }

    .line {
      background: linear-gradient(to bottom, #cb212e,#cb212e, white);
      height: 100%;
    }

    .line-1 { width: 15px; }
    .line-2 { width: 15px; }
    .line-3 { width: 15px; }
    .line-4 { width: 15px; }
    .line-5 { width: 15px; }
nav{
    background-color: #cb212e;
}
.nav-container{
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 10px;
    margin-left: 7em;
    margin-right: 7em;

    .logo{
        
        display: flex;
        align-items: center;
        font-size: 1.5em;
        font-weight: 700;
        color: black;
        text-decoration: none;

        img {
            width: 100px;
            
            margin-right: 10px;
        }
        h1{
            color: white;
            font-size: 1em;
        }
    }

    .nav-links{
        display: flex;
        list-style: none;

        li{
            margin-right: 15px;
        }
    }

    .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: w500;
        font-size: .8em;
    }

}
.content {
  
  
}

.redbox{
  position: relative;
  z-index: 2;
   
    
    background-color: #cb212e;
    margin-bottom: 0;
   
     h1{
        color: white;
        font-size: 3em;
        margin: 0;
        text-align: center;
        
        padding-top: 30px;
        
     }
     h2{
      position: relative;
      font-weight: 100;
      overflow: hidden;
        color: white;
        font-size: 1.5em;
        font-family: 'Lexend', sans-serif;
        text-align: center;
        padding-bottom: 1em;

        span{
  margin-right: 20px;
  margin-left: 20px;
 
  color: transparent; /* fill removed */
   /* standard version (non-webkit) */
}

     }
}


.redbox h2 span {
  color: #CB202D;
}

/* Animate container */
.slide-up {
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.row{
  margin: 0px auto;
  margin-top: 180px;
  margin-right: 50px;
  
  margin-left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.general{
  opacity: 0 !important;
  flex: 1;
  align-self: flex-end;
  h3{
    font-weight: normal;
  }
  
}

.video-container {
 
  flex: 1;
  position: relative;
  
  height: auto;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  overflow: visible;
  align-items: center;
  
}

.hand-wrapper {
  /* Set a relative position for the absolute positioning of the child */
  position: relative; 

  /* Apply the dimensions and overflow properties here */
  width: 400px;
  height: 90%;
  max-height: 640px;
  overflow: visible; /* Now this will work */
  z-index: 0; /* Or adjust as needed */
}

.hand {
  position: absolute;

  top: -400px; 
  left: 170px;
  width: 100%;
  height: auto; 
  object-fit: cover;
}

.video-container video{
  position: relative;
  z-index: 2;
  width: 300px;
  height: auto;
  left: -170px;
  pointer-events: none; /* optional: prevents interaction */
}

.watermark{
  position: absolute;
  
  h1{
    z-index: 1;
    top: 200px;
    font-size: 15em;
    color: rgb(96, 96, 96);
    
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2rem;
    opacity: .05;
  }
}

.contactButton {
  flex: 1;
  align-self: flex-end;
  margin: 0 auto;
  margin-top: 3em;
  margin-bottom: 3em;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  

  span{
    color: #cb212e;
  }
  h3 {
    margin: 0;
    font-size: 2em;
    font-weight: bold;
    
  }
  p{
    color: black;
  }
  i {
    background-color: black;
    padding: 5px;
   
    color: white;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
  }
  button{
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    background-color: black;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding:10px 50px;

    i{
      background-color: bisque;
      color: black;
    }
  }
}

.ps i{
  font-size: 15px;
}

.cites{
  position: relative;
  background-image: url('assets/bright-squares.png');
  background-color: #F2F2F2;
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
  border: #cb212e 2px solid;
  z-index: 2;
  padding: 30px;
  
  border-radius: 15px;
  

  h4{

    display: flex;
    font-weight: normal;
    align-items: center;
    margin-bottom: 20px;
  }
  h3{

    text-align: center;
    width: 70%;
    color: #62635d;
    font-size: 1.6em;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    span{
      color: black;
    }
  }
}

.cities {
  width: 100%;
  flex-wrap: nowrap;
  overflow: auto;
  display: flex;
}

.city-card {
  flex-shrink:0;             
  width: 175px;
  margin-right: 15px;
  border-radius: 12px;
  text-align: center;
  scroll-snap-align: start;
}


.city-card img {
  border-radius: 12px;
  width: 100%;
  height: 150px;
  object-fit: cover;

}

.city-card p {
  margin: 8px 0;
  font-weight: 500;
  font-family: 'Lexend', sans-serif;
}

/* On tablets and up: convert to wrapped grid */
@media (min-width: 768px) {
  
.cities::-webkit-scrollbar {
  height: 6px;              /* horizontal scrollbar height */
}

.cities::-webkit-scrollbar-track {
  background: transparent;  /* or a light gray if you want visible track */
}

.cities::-webkit-scrollbar-thumb {
  background: #888;         /* scrollbar handle */
  border-radius: 10px;
}

.cities::-webkit-scrollbar-thumb:hover {
  background: #555;         /* darker on hover */
}


  .city-card {
    flex: none;
    scroll-snap-align: none;
  }
}


.services {
  position: relative;
  width: 100%;
  z-index: 2;
  margin: 0 auto;
  margin-top: 50px;
  padding: 40px 20px;
  padding-right: 50px;
  padding-left: 50px;
  background-color: #cb212e;
  text-align: center;
  overflow: hidden; /* Prevent pseudo-element from overflowing */
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(assets/bedge-grunge.png);
  background-repeat: repeat;
  opacity: 0.3; /* Adjust the opacity as needed */
  z-index: -1;
}

.imp{
  position: absolute;
  top: -50px;
  right: -200px;
  width: 300px;
  height: auto;
  opacity: 1;
}
.services h3 {
  font-size: 25px;
  margin-bottom: 32px;
  color: white;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  
  
}
.service-card {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 200px;
  display: flex;
   border: rgb(255, 255, 255) 1px solid;
  border-radius: 10px;
  background-color: white;
  flex-direction: column;
  justify-content: space-between;
  margin: 5px;
  
  color: black;
  transition: all 0.3s ease;
  
}

.motivation{
  position: relative;
 
  width: 85%;
  padding: 10px;
  margin: 0 auto;
  margin-top: 15em;
  margin-bottom: 15em;
 
}
.motivation .co{
  position: relative;
  
  width: 60%;
  h1{
    font-size: 5em;
    margin: 0;
    font-weight: 400;
    background: linear-gradient(to right bottom, rgb(255, 1, 1), rgb(94, 0, 56));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    line-height: 1;
  }
  h2{
    position: relative;
    z-index: 2;
    font-weight: 400;
    left: 20%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #296ac4);
    
    
    background-repeat: no-repeat;

    font-size: 5em;
    margin: 0;
    line-height: 1;
  }
.line1, .line2 {
  
  white-space: nowrap;
  overflow: hidden;
}
  P{
    position: relative;
    left: 21%;
    font-family: 'Caveat', cursive;
    font-weight: bold;
    color: red;
    text-decoration: underline;
    font-size: 1.7em;
  }
  img{
    position: absolute;
    z-index: 1;
    left: 10%;
    width: 200px;
  }
}

.young{
  position: absolute;
  top: -70%;
  right: 0;
  height: 500px;
  width: auto;
  
  border-radius: 50%;
}
.youn{
  position: absolute;
  top: -70%;
  right: 20px;
  height: 500px;
  width: auto;
  
  border-radius: 50%;
}

.service-card img {

  height:140px;
  
 
  aspect-ratio: 1 / 1;
  width: auto;
  object-fit: cover; /* corrected from 'fit' to valid value */
  
 
  
}



.service-card .text-bottom {
  position: relative;
  z-index: 3;
}

.service-card h4,
.service-card h5 {
  text-align: center;
  margin: 0;
  margin-left: 10px;
  margin-right: 10px;
  
  font-weight: normal;
  color: black;
}

.service-card h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  
}

.service-card h5 {
  font-size: 14px;
;
  opacity: 0.8;
}

.service-card p {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  background: rgba(255, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 16px;
  z-index: 3;
}


.track {
  margin: 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3em;
  font-weight: 300;
  color: white;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  padding-bottom: 10px; /* space for animated line */
}

/* Animated underline using pseudo-element */
.track::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: +10px; /* position right below text */
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    white,
    white
  );
  background-size: 300%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Hover animation trigger */
.track:hover::after {
  transform: scaleX(1);
  animation: waveLine 2s linear infinite;
}

@keyframes waveLine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.track span img {
  height: 28px;
  width: auto;
  margin-left: 12px;
  vertical-align: middle;
}

.process{
  
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #111;
}
.heads{
  text-align: center;
  margin-top: 50px;
  font-size: 1.6em;
  color: #adb5bd;
}
   .process-flow {
    
      max-width: 1000px;
      margin: 0px auto;
      margin-top: 20px;
      position: relative;
      padding: 50px 20px;
    }

    .step {
      width: 45%;
      position: relative;
      margin-bottom: 10px;
      padding: 20px;
      background: white;
      border-radius: 16px;
      border-left: 6px solid #e60000;
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.418);
    }
    .step:hover {
      box-shadow: 0 6px 16px rgba(255, 255, 255, 0.5);
      background-color: rgb(236, 236, 236);
    }

    .step h4 {
      margin: 0 0 5px;
      color: #ff4d4d;
    }

    .step.left {
      left: 0;
      text-align: right;
      
      margin-left: 0;
      transition: all 0.5s ease;
      h3{
        padding: 20px;
        color: white;
        background-color: red;
        position: absolute;
        top: -30px;
      }
    }

    .step.right {
      left: 55%;
      text-align: left;
      
      transition: all 0.5s ease;
      h3{
        padding: 20px;
        color: white;
        background-color: red;
        position: absolute;
        right: 15px;
        top: -30px;
      }
    }
    .step.right:hover {
      transform: rotateZ(0deg);
    }
    .step.left:hover {
      transform: rotateZ(0deg);
    }

    .svg-container {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      height: 100%;
      width: 100px;
      z-index: 0;
    }

    svg path {
      stroke: #e60000;
      stroke-width: 9;
      fill: none;
    }

    @media screen and (max-width: 768px) {
      .step {
        width: 90%;
        left: 5% !important;
        text-align: left;
      }

      .svg-container {
        display: none;
      }
    } 


.news{
  width: 80%;
  margin: 0 auto;
  padding: 50px;

  margin-top: 6em;
  margin-bottom: 6em;
  display: flex;
  
  justify-content: center;
  align-items: center;
  flex-direction: column;

  h1{
    text-align: center;
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    

  }
  h2{
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
  font-weight: normal;
  line-height: 1.3;
    text-align: center;
    color: #62635d;
  }
}



.thankyou{
  padding-top: 5em;
  padding-bottom: 5em;
  background-color: #023e8a;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  h1{color: white;
    font-size: 2em;
    width: 80%;
  text-align: center;}

  button{
    cursor: pointer;
    padding: 20px 30px;
    text-decoration: underline;
    background-color: transparent;
    color: white;
    font-size: 1em;
    border: none;
    font-weight: bold;
  }
  
}

.thankyou p{
  width: 70%;
  margin-top: 3em;
  text-align: center;
  color: #d3d3d3;
  font-size: 1.5em;
  line-height: 1.2;
}
.numbers{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;

}
.numcrd {
    margin: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.2); /* White with very low opacity */
    backdrop-filter: blur(10px); /* Blurs the content behind the element */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 10px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */

    /* ----- Additions for Glossy Ribbon Animation ----- */
    position: relative; /* Essential for positioning the pseudo-element */
    overflow: hidden;   /* Hides the ribbon when it's outside the card */
    h1{
    font-size: 3em;
  }
  p{
    color: white;
    font-size: 1em;
    text-align: center;
    margin: 0;
  }
}

/* The glossy ribbon pseudo-element */
.numcrd::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%; /* Start position: off-screen to the left */
    width: 50%; /* Width of the glossy ribbon */
    height: 100%;
    /* Create a linear gradient that simulates a light reflection */
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,       /* Fully transparent at the start */
        rgba(255, 255, 255, 0.3) 50%,    /* Semi-transparent white in the middle (the shine) */
        rgba(255, 255, 255, 0) 100%      /* Fully transparent at the end */
    );
    transform: skewX(-20deg); /* Tilt the ribbon for a dynamic look */
    animation: shine 3s infinite linear; /* Apply the animation */
    pointer-events: none; /* Ensures the pseudo-element doesn't interfere with clicks on content inside .numcrd */
}

/* Keyframes for the ribbon animation */
@keyframes shine {
    0% {
        left: -75%; /* Start completely off-screen to the left */
    }
    100% {
        left: 125%; /* End completely off-screen to the right */
    }
}



    .reviews-section {
  padding: 40px 20px;
  margin-top: 5em;
  margin-bottom: 5em;
  font-family: 'Noto Sans', sans-serif;
  text-align: center;
}

.reviews-section h2 {
  
  margin-bottom: 30px;
  color: black;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-content .stars {
  color: #f5b301;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.review-content p {
  font-size: 0.95rem;
  margin: 0 0 10px;
  color: #333;
}

.review-content strong {
  font-size: 0.9rem;
  color: #666;
}


.faq-section {
  background-color: #0D5EA6;
  
  margin: auto;
  padding: 40px 20px;
  
}

.faq{
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5em;
}

.faq-section h2 {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.faq-item {
  
  margin-bottom: 10px;
  
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 25px 30px;
  background: white;
  
  border: none;
  
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  transition: background 0.3s ease;
}

.faq-question:hover {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background: #e6e6e6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 15px 20px;
}

.faq-answer p, .faq-answer ul {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #333;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 5px;
}


.site-footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
}

.footer-col {
  flex: 1 1 200px;
  
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col ul li,
.footer-contact p {
  font-size: 0.95rem;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a img {
  background-color: white;
  width: 24px;
  margin-right: 10px;
  filter: brightness(0.8);
}

.app{
  display: flex;
  flex-direction: column;
  
  align-items: center;
}
.qr-code {
  width: 100px;
  margin-bottom: 10px;
}

.download-buttons {
  margin-top: 10px;
}

.download-btn {
  display: inline-block;
  background: #CB202D;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #a31a23;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-credit p {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
