  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      
    }

    body {
      line-height: 1.6;
      color: #333;
      background: #f5f5f5;
    }

    .container,.containers {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

nav {
          font-size: 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 15px 30px;
          top: 0;
          width: 100%;
          box-shadow: 0 2px 8px black;
          box-sizing: border-box;
          position: fixed;
          z-index: 1000;
          background-color: rgba(0, 0, 0, 0.5);

        }
        nav.fixed-nav {
          position: fixed;
          top: 0;
          left: 0;
          margin: 0;
        }
    
      
    
        .navlogo {
          border-radius: 50%;
          height: 50px;
          width: 50px;
          object-fit: cover;
        }
    
/* Menu button */
#menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto; /* Push to the right end */
    display: block; /* Visible initially for mobile */
    padding-right: 15px; /* Added space between buttons */
    
}


        nav .nav-links {
          background-color: rgba(0, 0, 0, 0.5);
         
          display: none;
          flex-direction: column;
          position: absolute;
          top: 60px;
          left: 235px;
          padding: 10px;
          border-radius: 5px;
        }
    
        nav .nav-links a {
          margin: 0.5rem 0;
          padding: 0 1rem;
          text-decoration: none;
          transition: background-color 0.3s;
          font-weight: lighter;
          display: flex;
          align-items: center;
          color: #eef2ff;
        }
    
        nav a:hover {
          
          border-top: 2px solid wheat;
          border-bottom: 2px solid wheat;
          animation: hover 1s forwards  ;
        }
    @keyframes hover {
      0%{
        
       padding: 0 1rem;
      }
      100%{
       
        padding: 0.5rem 1rem;
      }
      
    }
        @media (min-width: 768px) {
          #menu-toggle {
            display: none;
          }
    
          nav .nav-links { 
            display: flex;
            position: static;
            flex-direction: row;
            background: none;
            box-shadow: none;
            padding: 0;
          }
    
          nav .nav-links a {
            margin: 0 1rem;
          }
        }

    .logo-area {
      display: flex;
      align-items: center;
      margin-left: 10px;
    }

    .logo-area img {
      height: 50px;
      margin-right: 10px;
    }

.hero {
  position: relative;
  z-index: 1;
  color: white; /* text color */
   height: 100vh;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
   
 
 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  animation: bg 15s ease-in-out infinite;
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Set your desired opacity */
  z-index: -1;
}



@keyframes bg {
  0%{
    
    background-image: url("bg1.jpg");
  }
  50%{
    
    background-image: url("bg2.jpg");
  }
  100%{
    
    background-image: url("bg1.jpg");
  }
}
.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease forwards;
}

/* Subheading Style */
.hero-subheading {
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: #00b894;
  margin-bottom: 15px;
}

/* Main Heading */
.hero-heading {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Description Text */
.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons a {
  text-decoration: none;
  color: white;
  background: #1abc9c;
  padding: 14px 28px;
  border-radius: 30px;
  margin: 0 10px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.hero-buttons a:hover {
  background: #16a085;
  transform: scale(1.05);
}

/* Responsive Text and Layout */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons a {
    margin: 0 auto;
    width: 80%;
  }
}

/* Optional keyframe fallback if AOS fails */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


  .overview{
    margin-top: 100px;
    margin-left: 20px;
    text-align: center;
  } 
  .overview img{
    border-radius: 2cqmax;
  }
  .overview h1{
    font-size: 2rem;
  }
  #overview{
  padding:70px 100px;
}
.overview1,.overview2,.overview3,.overview4{
  margin: 30px auto;
}
@media (max-width:470px) {
  #overview{
    padding: 12%;
    text-align: center;
  }
}
.overview1{
  display: flex;
}
.overview1 img{
  height: 25vw;
  width: auto;
}
@media (max-width:470px) {
  .overview1{
    flex-direction: column;
  }
  .overview1 img{
    height:200px;
    width: auto;
  }
}
.overview2{
  display: flex;
}
.overview2 img{
  height: 25vw;
  width: auto;
}
@media (max-width:470px) {
  .overview2{
    flex-direction: column-reverse;
  }
  .overview2 img{
    height:200px;
    width: auto;
  }
}
.overview3{
  display: flex;
}
.overview3 img{
  height: 25vw;
  width: auto;
}
@media (max-width:470px) {
  .overview3{
    flex-direction: column;
  }
  .overview3 img{
    height:200px;
    width: auto;
  }
}
.overview4{
  display: flex;
}
.overview4 img{
  width: 500px;
  height: auto;
}
@media (max-width:470px) {
  .overview4{
    flex-direction: column-reverse;
  }
  .overview4 img{
  width: 300px;
  height: auto;
  }
}

    #contact {
      background-color: #ede7f6;
      width: 50%;
      margin: 20px 0;
      box-shadow: 1px 1px 15px rgb(173, 172, 172);
    }
@media (max-width:470px) {
  #contact{
    width: 80%;
    font-size: 10px;
  }
}
    form input,
    form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .btn {
      background: #6a1b9a;
      color: #fff;
      border: none;
      padding: 12px 25px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .btn:hover {
      background: #4a148c;
      
    }
  
 .Cs{
  display: flex;
  justify-content: center;
 }
 @media (max-width:470px) {
  .Cs{
    flex-direction: column;
    gap: 40px;
    margin-left: 60px;
  }

 }
 h2{
  font-size: 2.8em;
  margin-top: 60px;
 }
 .customers{
  margin: 0 50px;
 }

.customers  .upper{
  background-color: rgb(214, 204, 204);
  border-top-left-radius:10px ;
  border-top-right-radius:10px ;
  height: 100px;
  width: 180px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: large;
  font-weight: bolder;
}
.upper img{
  width: 30%; 
}
.upper:hover{
  cursor: pointer;
}
.img-hover{
  transition: transform 1s ease;
  transform: rotate(360deg);
}
.customers  .lower{
  background-color: #1e1e2f;
  color: white;
  border-bottom-left-radius: 10cqmax;
  border-bottom-right-radius: 10cqmax;
  height: 130px;
  width: 180px;
  box-shadow: 0 5px 0 0 rgb(173, 172, 172);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: xx-large;
  font-weight: bolder;
}

.review-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.review-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.review-box h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #222;
}

.review-box p {
  font-size: 0.95em;
  color: #666;
}

     /* Footer */
    footer {
      margin-top: 60px;
      background: #1e1e2f;
      color: #ddd;
      padding: 40px 20px;
     
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
    }

    .footer-box {
      flex: 1 1 250px;
      padding: 20px;
      transition: transform 0.3s;
    }

    .footer-box:hover {
      transform: translateY(-5px);
    }

    .footer-box h3 {
      font-size: 1.2em;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-box p,
    .footer-box a {
      color: #ccc;
      font-size: 0.95em;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: color 0.2s ease;
    }

    .footer-box a:hover {
      color: #4ade80;
    }

    .footer-socials{
  display: flex;
}
.footer-socials a img { 
  width: 30px;
  margin-right: 5px;
  margin-top: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a img:hover {
  transform: scale(1.2);
  filter: brightness(1.3) drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
@media (max-width:470px) {
  .footer-socials{
  justify-content: center;
}
}

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 0.85em;
      color: #888;
    }
     .gallery-section {
      padding: 60px 20px;
      background-color: #f9f9f9;
    }

    .gallery-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-section h3 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #333;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-grid img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
    }

    /* Responsive Breakpoints */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }
    .faq-section {
      max-width: 800px;
      margin: 60px auto;
      padding: 20px;
    }

    .faq-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #333;
    }

    .faq-item {
      background: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1rem;
      color: #222;
    }

    .faq-icon {
      font-size: 1.4rem;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      font-size: 0.95rem;
      color: #555;
      background-color: #fafafa;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 15px 20px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .timeline-section {
      max-width: 900px;
      margin: 60px auto;
      padding: 20px;
    }

    .timeline-section h2 {
      text-align: center;
      font-size: 2rem;
      color: #2c3e50;
      margin-bottom: 40px;
    }

    .timeline {
      position: relative;
      margin-left: 20px;
      padding-left: 30px;
      border-left: 4px solid #2c3e50;
    }

    .timeline-step {
      position: relative;
      margin-bottom: 40px;
      padding-left: 30px;
    }

    .timeline-step::before {
      content: attr(data-step);
      position: absolute;
      left: -48px;
      top: 0;
      background: #2c3e50;
      color: white;
      width: 35px;
      height: 35px;
      text-align: center;
      line-height: 35px;
      border-radius: 50%;
      font-weight: bold;
    }

    .step-title {
      font-size: 2rem;
      font-weight: bold;
      color: #222;
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 0.95rem;
      
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .timeline {
        border-left: 3px solid #2c3e50;
        margin-left: 10px;
        padding-left: 20px;
      }
      .timeline-step {
        padding-left: 20px;
      }
      .timeline-step::before {
        left: -38px;
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.9rem;
      }
    }
    .floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.floating-cta a:hover {
  background-color: #1abc9c;
  transform: scale(1.05);
}

/* Responsive layout for smaller screens */
@media (max-width: 600px) {
  .floating-cta {
    bottom: 10px;
    right: 10px;
    left: 68%;
    width: 30%;
    gap: 8px;
  }

  .floating-cta a {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 9px 12px;
  }
}
    .about-section {
      position: relative;
      padding: 60px 20px;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

 

    .about-section .container {
      max-width: 800px;
      margin: auto;
      z-index: 2;
      position: relative;
      color: black;
      text-align: justify;
      
    }

    .about-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      border-bottom: 3px solid #080808;
      display: inline-block;
      padding-bottom: 10px;
    }

    .about-section p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .about-section h2 {
        font-size: 2rem;
      }

      .about-section p {
        font-size: 1rem;
      }
    }
 



 