	    
 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  
}
   
    body {
     font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      background: white;
       overflow-x: hidden;

 
    }
      .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.wa-icon {
  width: 22px;
  height: 22px;
}



    /* Header/Navbar Styles */
    header {
      background: white;
      padding: 10px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: relative;
    }
     .containdc {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 10px;
    }

   /* Intro Container */
    #intro {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #2C3E50;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Logo Container */
    #logo {
      width: auto;
      height: 100px;
      margin-bottom: 30px;
      transform: translateY(100vh); /* Start off screen at bottom */
      opacity: 0; /* Start invisible */
    }

    /* Text Effects */
    #website-name {
      font-family: 'Arial', sans-serif;
      font-size: 35px;
      color: white;
      -webkit-background-clip: text;
      background-clip: text;
      filter: blur(8px);
      opacity: 0; /* Start invisible */
    }
     @media (max-width: 400px) {
      #website-name {
      font-size: 25px;
      }
    }
   
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .logo img {
      height: 50px;
    }

    /* Desktop Nav */
    .nav-links {
      display: flex;
      align-items: center;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      padding: 10px 15px;
      position: relative;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #6DAFA7;
    }

    /* Underline effect */
    .nav-links a:not(.btn-get-started)::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 5px;
      left: 0;
      background-color: #6DAFA7;
      transition: width 0.3s ease;
    }

    .nav-links a:hover:not(.btn-get-started)::after {
      width: 100%;
    }

    .nav-actions {
      margin-left: auto;
    }

    .btn-get-started {
      background: #6DAFA7;
      color: white;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
    }

    /* Mobile Menu */
    .menu-toggle {
      font-size: 1.8rem;
      cursor: pointer;
      display: none;
      color: #333;
    }

    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0);
      z-index: 1000;
      display: none;
      transition: background 0.3s ease;
    }

    .mobile-menu-overlay.show {
      background: rgba(0,0,0,0.5);
      display: block;
    }

    .mobile-menu {
      position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #111;
  padding: 30px 20px 20px;
  transform: translateX(100%);
  opacity: 0;
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  will-change: transform; /* optional performance hint */
  pointer-events: none; /* prevent interaction while hidden */
 
    }

    .mobile-menu.open {
      transform: translateX(0);
      opacity: 1;
  pointer-events: auto;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 1.8rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 5px;
    }

    /* Menu content styling */
    .mobile-menu-content {
      margin-top: 30px;
       word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
    }

    .mobile-nav-item {
      margin-bottom: 15px;
    }

    .mobile-nav-item > a {
      display: block;
      color: white;
      padding: 10px 0;
      text-decoration: none;
      font-weight: bold;
      border-bottom: 1px solid #333;
      position: relative;
  white-space: normal; /* Allow text wrapping */
  word-break: break-word;
    }

    /* Underline effect for mobile */
    .mobile-nav-item > a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -1px;
      left: 0;
      background-color: #6DAFA7;
      transition: width 0.3s ease;
    }

    .mobile-nav-item > a:hover::after {
      width: 100%;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .nav-actions {
        display: none;
      }
    }

      .hero{
          height: 90vh;
          width: 100%;
          background-color: #EAF9F3;
    }

    .hero-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    z-index: 2;
    }

    .hero-content {
      flex: 0.9; 
      background: transparent;
      
    z-index: 3;
    }

    .hero-image {
      flex: 1.1;
      background: transparent; 
    }

    .hero-image {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      margin-bottom: 0px;
      object-fit: contain; 
      animation: bounce 3.5s infinite ease-in-out;
      max-height: none;
      transform: scale(1.0);
      pointer-events: none; /* allow clicks to pass through image */
    z-index: 1;
    position: relative;
    }

    @media (max-width: 768px) {
      .hero-wrapper {
        flex-direction: column;
        text-align: center;
      }
      .hero {
        background: linear-gradient(to bottom, white 30%, #d3f3e7 80%);
        height: 90vh;
      }
      header {
      padding: 8px 0; /* Even smaller padding on mobile */
    }

      .hero-content, .hero-image {
        width: 100%;
      }

      .hero-image {
        width: 100%;
        height: 60%;
        flex: none;
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: flex-end;
      }

      .hero-image img {
        max-width: 100% !important;
        overflow-x: hidden;
        height: auto;
        max-height: 100%;
        transform: scale(1.5) translateY(20px);
        object-position: bottom;
      }
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes dropIn {
      0% {
        transform: translateY(-30px);
        opacity: 0;
      }
      60% {
        transform: translateY(5px);
        opacity: 1;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .drop-in {
      display: inline-block;
      animation: dropIn 0.8s ease-out;
      color: #28a745;
    }
    
    .btn2 a {
      white-space: nowrap;
    }
    
    @media (max-width: 767px) {
      .btn2 {
        padding: 0.5rem 1rem !important;
        margin-left: auto;
        display: block;
        width: 100%;
        text-align: center;
      }
    }

    .hero h1{
      font-size: clamp(30px, 6vw, 70px);
      background: linear-gradient(to right, #000000, #FFE779);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .hero h3{
      font-size: clamp(15px, 6vw, 30px);
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .hero-content,
    .hero-image {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .hero.animate .hero-content,
    .hero.animate .hero-image {
      opacity: 1;
      transform: translateY(0);
    }
    /* landind page ends*/
    

    /* about us */
.about {
    min-height: 500px;
}

.about ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about li {
    margin-bottom: 8px;
}

.highlight {
    font-size: 1.2em;
    font-weight: bold;
    
}

.about h1, .about h2 {
    color: #2c3e50;
}

.about h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.about h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Enhanced Image styling */
.about-image {
    max-width: 100%;
    height: auto;
   
    /* Added to increase visual size */
    padding: 10px;
    object-fit: cover;
    min-height: 350px; /* Set a minimum height */
    width: 100%; /* Ensure it takes full column width */
}

/* Make image slightly larger on larger screens */
@media (min-width: 992px) {
    .about-image {
        min-height: 400px;
        margin-right: -30px; /* Allows image to extend slightly into margin */
    }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 20px;
        min-height: 300px; /* Smaller height on mobile */
        margin-right: 0; /* Reset the negative margin */
    }
    
    .about-us {
        background-image: none;
    }
}
@media (max-width: 300px) {
    .about-image {
        min-height: 220px;
       
    }
}
    /* about us end*/


    /* faqs */

    .faq-wrapper {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
     .underline-container .left-align {
  text-align: left;
  margin: 0; /* Remove auto margins */
  width: auto; /* Reset width */
  display: inline-block; /* Revert to inline-block if needed */
}
    .faq-container {
       flex: 1 1 45%;
      max-width: 600px;
      padding-right: 10px;
    }

    .faq-image {
      flex: 1 1 300px;
      min-width: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-image img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }
    .faq-image1 img {
     display: none;
    }
     @media (max-width: 767px){
       .faq-image1 img {
      max-width: 50%;
      height: 150px;
      border-radius: 5px;
    }
     .faq-image1 {
       max-width: 50%;
      height: 150px;
      border-radius: 5px;
    }
     .faq-image {
      display: none;
    }
     }
     @media (max-width: 768px) {
  .faq-container {
    flex: 1 1 100%;
    max-width: 100%;
    padding-right: 0;
  }
}


    .faq-item {
      background: white;
      border-radius: 7px;
      width: 100%; /* Force full width inside a column */
      min-width: 0;
      margin-bottom: 0.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease-in-out;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 1rem;
      cursor: pointer;
      font-weight: bold;
      
    }

    .faq-question:hover {
      background: #d3f3e7;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.5rem;
      background: #fff;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 1rem 1.5rem;
    }

    .faq-icon {
      font-size: 1.2rem;
    }

    .faq-item.active .faq-icon::before {
      content: "−";
    }

    .faq-icon::before {
      content: "+";
    }

    @media (max-width: 768px) {
      .faq-wrapper {
        flex-direction: column;
      }
    }
 /* faqs ends*/

 
  /* footer*/

   .footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }

  

  .footer p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .footer ul li {
    margin-bottom: 0.75rem;
  }

  .footer ul li a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
  }

  .footer ul li a:hover {
    color: #ffffff !important;
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
  }

  .footer ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FFE779;
  }

  .footer ul li a:hover::before {
    opacity: 1;
    left: -12px;
  }

  .footer .social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
  }

  .footer .social-media a:hover {
    background: linear-gradient(135deg, #FFE779 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 231, 121, 0.3);
    color: #333 !important;
  }

  .footer small {
    color: #d0d0d0;
    font-size: 0.85rem;
    display: block;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Animation for the footer elements */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .footer .col-md-4 {
    animation: fadeInUp 0.5s ease forwards;
  }

  .footer .col-md-4:nth-child(1) {
    animation-delay: 0.1s;
  }

  .footer .col-md-4:nth-child(2) {
    animation-delay: 0.2s;
  }

  .footer .col-md-4:nth-child(3) {
    animation-delay: 0.3s;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer .col-md-4 {
      margin-bottom: 2rem;
    }
    
    .footer h5 {
      font-size: 1.1rem;
    }
    
    .footer p, .footer ul li a {
      font-size: 0.9rem;
    }
  }

 /* footer ends*/

 /* Animated dot */

 /* CORE ANIMATION STYLES (put this in your CSS file) */

  /* CORE ANIMATION STYLES */
.underline-container {
  position: relative;
  display: block;
  padding-bottom: 15px;
  margin: 0 auto;
  width: fit-content; 
}

/* Centered underline styles */
.underline-container:not(.left-align) {
  text-align: center;
}

.underline-track {
  position: absolute;
  bottom: 5px;
  height: 3px;
  background: rgba(255, 231, 121, 0.3);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px; 
  width: 100px; /* Default width */
}

/* Centered track positioning */
.underline-container:not(.left-align) .underline-track {
  left: 50%;
  transform: translateX(-50%);
}

/* Left-aligned track positioning */
.underline-container.left-align .underline-track {
  left: 0;
  transform: none;
}

.underline-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFE779, #FFD700);
}

.underline-dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  transform: translateY(-50%) translateX(0);
}

/* Animation for centered elements */
.underline-container:not(.left-align) .underline-dot {
  animation: slideDotCentered 3.0s infinite ease-in-out;
}

/* Animation for left-aligned elements */
.underline-container.left-align .underline-dot {
  animation: slideDotLeft 3.0s infinite ease-in-out;
}

@keyframes slideDotCentered {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(90px); } /* Matches 60px width (60px - 10px dot width) */
}

@keyframes slideDotLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(90px); } /* Same as centered since we kept same width */
}

/* Animated dot ends */

/* Animated dot ends */

/* newsletter*/

 .newsletter-section {
      background: #EAF9F3;
      padding: 4rem 0;
      color: #333;
      
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .newsletter-heading {
      color: #222;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      font-size: 1.75rem;
    }
    
  
    .newsletter-text {
      color: #555;
      line-height: 1.6;
      font-size: 1.1rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .newsletter-form {
      max-width: 500px;
      margin: 0 auto;
    }
    
    .form-control {
      background: #f9f9f9;
      border: 1px solid #eee;
      color: #333;
      padding: 12px 20px;
      height: auto;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      background: white;
      border-color: #FFE779;
      box-shadow: 0 0 0 0.25rem rgba(255, 231, 121, 0.25);
    }
    
    .btn-newsletter {
      background: linear-gradient(135deg,#FFE779 0%, #FFE779 100%);
      border: none;
      color: white;
      font-weight: 600;
      padding: 12px 30px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
    }
    
    .btn-newsletter:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 231, 121, 0.4);
    }
   
    
    @media (max-width: 768px) {
      .newsletter-section {
        padding: 3rem 0;
      }
      
      .newsletter-heading {
        font-size: 1.5rem;
      }
      
      .newsletter-text {
        font-size: 1rem;
      }
      
      .btn-newsletter {
        padding: 10px 20px;
      }
    }
    /* newsletter ends */

   /* Simple card */
    .bodd1 {
     height: auto;
      overflow-x: hidden;
      padding: 2rem 0;
    }
    
    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      padding: 1rem;
      align-items: stretch; /* Make cards equal height */
    }
    
    .card {
      border-radius: 12px;
      border: none;
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
      width: 400px; /* Fixed width */
       min-height: 250px; /* Allow it to grow */
      box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
      background: white;
      margin-bottom: 1rem;
      display: flex;
      flex-direction: column;
    }
    
    .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 1rem !important;
    }
    
    .card-text {
      flex: 1;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 4; /* Limit to 4 lines */
      -webkit-box-orient: vertical;
    }
    
    .card.animate {
      transform: translateY(0);
      opacity: 1;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 2rem;
      position: relative;
      padding-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
      .card-container {
        flex-direction: column;
        align-items: center;
      }
      
      .card {
        
         width: 100%;
    max-width: 300px;
    min-height: 300px; 
      }
    }
    @media (max-width: 768px) {
  .card-text {
    -webkit-line-clamp: 6;
  }
}

     /* card ends */
     /* contact */
      .contact {
      padding: 5rem 1rem;
     
    }
    
    .contact-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 30px;
      justify-content: center;
      align-items: flex-start;
    }
    
    .contain {
      background: white;
      border-radius: 15px;
      padding: 3rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1), 
                  0 0 0 2px rgba(255,231,121,0.2);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
      position: relative;
      overflow: hidden;
      flex: 1;
      max-width: 800px;
    }
    
    .contain:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.15), 
                  0 0 0 3px rgba(255,231,121,0.3);
    }
    
    .social-cards {
      display: flex;
      flex-direction: column;
      gap: 30px;
      width: 280px;
      position: sticky;
      top: 30px;
    }
    
    /* Rest of your existing styles remain the same */
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      padding: 20px;
      width: 100%;
    }
    
    @keyframes underlinePulse {
      0%, 100% { width: 80px; opacity: 0.9; }
      50% { width: 100px; opacity: 1; }
    }
    
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .form-group {
      position: relative;
      margin-bottom: 2.5rem;
    }
    
    input, textarea {
      width: 100%;
      padding: 1rem;
      border: 1px solid #ddd;
      background: #f8f8f8;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    input:focus, textarea:focus {
      outline: none;
      border-color: #FFE779;
      box-shadow: 0 0 0 3px rgba(255, 231, 121, 0.2);
      background: white;
    }
    
    .submit-btn {
      background-color:#6DAFA7 ;
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      display: block;
      margin: 3rem auto 0;
      width: 100%;
      max-width: 200px;
      box-shadow: 0 4px 10px rgba(255, 231, 121, 0.3);
    }
    
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 231, 121, 0.4);
    }
    
    .btn-underline {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: #000;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }
    
    .submit-btn:hover .btn-underline {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    /* Social Card Styles */
    .social-card {
      background: white;
      border-radius: 20px;
      width: 100%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1),
                  0 5px 15px rgba(0,0,0,0.07);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .social-card:hover {
      transform: translateY(-5px);
    }
    
    .social-logo {
      width: 60px;
      height: 60px;
      margin-bottom: 30px;
      transition: transform 0.3s ease;
    }
    
    .social-card:hover .social-logo {
      transform: scale(1.05);
    }
    
    .message-button {
      color: white;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 25px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      text-align: center;
    }
    
    .message-button:hover {
      transform: translateY(-2px);
    }
    
    
    
    /* WhatsApp Specific Styles */
    .whatsapp-card:hover {
      box-shadow: 0 20px 40px rgba(0,0,0,0.15),
                  0 0 0 2px rgba(37, 211, 102, 0.1);
    }
    
    .whatsapp-button {
      background: linear-gradient(135deg, #25D366, #128C7E);
      box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }
    
    .whatsapp-button:hover {
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #25D366, #128C7E);
    }
    
    @media (max-width: 992px) {
      .contact-wrapper {
        flex-direction: column;
        align-items: center;
      }
      
      .social-cards {
        width: 100%;
        max-width: 280px;
        margin-top: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .contain {
        padding: 2rem;
        margin: 0 1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .submit-btn {
        max-width: 100%;
      }
    }

    /* X (Twitter) Specific Styles */
    .x-card:hover {
      box-shadow: 0 20px 40px rgba(0,0,0,0.15),
                  0 0 0 2px rgba(0, 0, 0, 0.1);
    }
    
    .x-button {
      background: #000000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .x-button:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .x-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: #000000;
    }
    
    .x-logo {
      width: 40px; /* Slightly smaller to account for X's wider shape */
      height: 40px;
      margin-bottom: 30px;
    }
    /* contact end */
     /* counter box */
 .boy {
            font-family: 'Poppins', sans-serif;
            padding: 40px 20px;
            background: white;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .stats-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
      
        
        .stat-card {
            text-align: center;
            padding: 15px 10px;
            flex: 1;
            min-width: 140px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        
        .stats-container.visible .stat-card {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Staggered animations */
        .stats-container.visible .stat-card:nth-child(1) {
            transition-delay: 0.2s;
        }
        .stats-container.visible .stat-card:nth-child(2) {
            transition-delay: 0.4s;
        }
        .stats-container.visible .stat-card:nth-child(3) {
            transition-delay: 0.6s;
        }
        

.stat-icon {
    font-size: 2rem; /* Slightly reduced from 2.3rem */
    margin-bottom: 8px; /* Reduced from 15px */
    color: #6DAFA7;
}

    
        
        /* Counter number styling */
        .counter {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 8px 0;
            min-height: 40px;
            display: block;
            font-family: monospace;
            color: #2a5a53;
        }
        
        /* Plus sign for years */
        .counter[data-target="6"]::after {
            content: "+";
            margin-left: 2px;
        }

         .counter[data-target="22"]::after {
            content: "+";
            margin-left: 2px;
        }

         .counter[data-target="43"]::after {
            content: "+";
            margin-left: 2px;
        }
        
        /* Title text styling */
        .stat-title {
            font-size: 0.9rem;
            margin-top: 5px; /* Added to control spacing */
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 600;
            color: #6DAFA7;
        }
        
        @media (max-width: 768px) {
            .stats-container {
                gap: 30px;
            }
            .stat-card {
                min-width: calc(50% - 30px);
                padding: 20px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .stats-container {
                gap: 25px;
            }
            .stat-card {
                min-width: 100%;
            }
            .counter {
                font-size: 2.3rem;
            }
        }
      /* counter box ends*/
      /* Button Base Styles */
/* Base Button Styles */
.hero-button {
  display: flex;
  gap: 20px; /* space between buttons */
  flex-wrap: nowrap; /* prevent wrapping to next line */
}

.hero-content a {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  width: auto;        /* let width fit text */
  min-width: unset;   /* remove the forced minimum width */
  position: relative;
  border: none;
  text-align: center; /* keep text centered */
  white-space: nowrap; /* prevent text breaking */
}

/* Teal Primary Button */
.btn-teal {
    background-color: #6DAFA7;
    color: white;
    box-shadow: 0 4px 12px rgba(109, 175, 167, 0.3);
}

/* Grey Secondary Button */
.btn-grey {
    background-color: white;
    color: #6D6D6D;
    border: 2px solid #6D6D6D !important; /* Force border */
}

/* Hover/Active States for All Devices */
.btn-teal:hover, .btn-teal:active,
.btn-grey:hover, .btn-grey:active {
    transform: translateY(-2px);
}

.btn-teal:hover, .btn-teal:active {
    background-color: #5D9E96;
    box-shadow: 0 6px 16px rgba(109, 175, 167, 0.4);
}

.btn-grey:hover, .btn-grey:active {
    background-color: rgba(109, 175, 167, 0.08);
    border-color: #6DAFA7 !important;
    color: #6DAFA7;
}

/* Link Styles */
.hero-content button a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
@media (max-width: 305px) {
  /* Adjust button size for extra small screens */
  .hero-button a {
    padding: clamp(8px, 3vw, 14px) clamp(16px, 5vw, 28px); /* more breathing space */
    font-size: clamp(0.8rem, 3.5vw, 1.1rem); /* slightly bigger text */
    border-radius: clamp(14px, 5vw, 22px); /* softer rounded corners */
  }
}
@media (max-width: 240px) {
  .hero-button {
    flex-direction: column;   /* stack buttons vertically */
    gap: 10px;                 /* space between stacked buttons */
  }

  .hero-button a {
    padding: clamp(6px, 2vw, 10px) clamp(12px, 3vw, 20px);
    font-size: clamp(0.7rem, 3vw, 0.9rem); 
    border-radius: clamp(10px, 3vw, 16px);
    width: 100%;              /* make button full width */
    text-align: center;
  }
}


@media (min-width: 490px) and (max-width: 770px) {
  .hero-button {
    display: none !important;
  }
}




/* Mobile Fixes */
@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content button {
        padding: 12px 36px;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
       
    }
    
 
}

@media (max-width: 429px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-content button {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
  }
}


@media (min-width: 430px) {
  .hero-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; /* optional, for centering */
  }

  .hero-content button {
    width: auto;
    margin: 15px 15px 0 0;
    max-width: none;
  }
}


/* Very small screens */
@media (max-width: 480px) {
    .hero-content button {
        max-width: 100%;
    }
}

.hero-button{
  
}
/* about image starts */


.about-img-container {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
}

.about-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 3rem;
}

.overlay-text1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 3rem;
}
/*choose section */
 /* Base Styles */
    .booy {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    /* Why Choose Us Section */
    .why-choose-us {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 10px;
      padding: 30px 10px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
    }

    .choose-title {
      grid-column: 1 / -1;
      text-align: center;
      color: #000000;
      margin-bottom: 10px;
       opacity: 0;
       transform: translateY(20px);
       transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
.choose-title.visible {
  opacity: 1;
  transform: translateY(0);
}

    /* Box Styling */
    .choose-box {
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      width: 280px;
      margin-bottom: 30px;
      background: rgba(255, 255, 255, 0.9);
      opacity: 0;
      transform: translateY(30px);
      transition: 
        opacity 1.2s cubic-bezier(0.2, 0.8, 0.4, 1), 
        transform 1.2s cubic-bezier(0.2, 0.8, 0.4, 1);
    }

    /* Staggered Delays */
    .left-column .choose-box:nth-child(1) { transition-delay: 0.2s; }
    .left-column .choose-box:nth-child(2) { transition-delay: 0.4s; }
    .right-column .choose-box:nth-child(1) { transition-delay: 0.6s; }
    .right-column .choose-box:nth-child(2) { transition-delay: 0.8s; }

    .choose-box.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .choose-box i {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #6DAFA7;
      background: #EAF9F3;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      text-align: center;
      display: inline-block;
    }

    .choose-box h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: #000000;
    }

    .choose-box p {
      color: #555;
      line-height: 1.5;
      font-size: 0.95rem;
      margin: 0;
    }

    /* Columns */
    .left-column {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .right-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

 .center-space {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 400px;
  max-width: 400px;
  height: 500px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: scale(0.9);
  transition: 
    opacity 1.5s cubic-bezier(0.2, 0.8, 0.4, 1) 0.5s,
    transform 1.5s cubic-bezier(0.2, 0.8, 0.4, 1) 0.5s;
  overflow: hidden;
}

.center-space img {
  max-width: 100%;     /* Force minimum width */
  max-height: 100%; 
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
 
}

    .center-space.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      .why-choose-us {
        grid-template-columns: 1fr;
        gap: 5px;
      }

      .left-column, .right-column {
        align-items: center;
      }

      .choose-box {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
      }

      .center-space {
        min-width: 100%;
        max-width: 100%;
        height: 300px; /* Reduced height for tablet */
        margin: 0px;
        order: 2;
      }

      .left-column {
        order: 1;
      }

      .right-column {
        order: 3;
      }
    }

    @media (max-width: 600px) {
      .center-space {
        height: 250px; /* Smaller height for mobile */
      }
    }

    @media (max-width: 480px) {
      .center-space {
        height: 200px; /* Smallest height for very small devices */
      }
    }
    /* choose ends */
    .bounce-img {
  display: block;
  margin: 0 auto;
  animation: slow-bounce 6s ease-in-out infinite;
}

@keyframes slow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Adjust bounce height */
  }
}
    .bod57 {
        margin: 0;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }

    .caroubox-container {
        width: 100%;
        max-width: 1200px;
        position: relative;
        height: 400px;
        perspective: 1000px;
        margin: 0 auto;
    }

    .caroubox {
        width: 100%;
        height: 100%;
        position: absolute;
        transform-style: preserve-3d;
        transition: transform 1s;
    }

    .caroubox-item {
        position: absolute;
        width: 300px;
        height: 300px;
        left: 50%;
        top: 50%;
         background: white; /* Add solid background */
        transform: translate(-50%, -50%);
        transition: all 0.5s ease;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .caroubox-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;

        transition: transform 0.5s ease;
    }

    .caroubox-item.active {
        width: 400px;
        height: 400px;
        z-index: 10;
    }

    .caroubox-item.active img {
        transform: scale(1.05);
    }

    .caroubox-item.prev {
        transform: translate(-120%, -50%) scale(0.8);
        opacity: 0.8;
        z-index: 1;
    }

    .caroubox-item.next {
        transform: translate(20%, -50%) scale(0.8);
        opacity: 0.8;
        z-index: 1;
    }

    .caroubox-item.far-prev {
        transform: translate(-180%, -50%) scale(0.6);
        opacity: 0.4;
        z-index: 0;
    }

    .caroubox-item.far-next {
        transform: translate(80%, -50%) scale(0.6);
        opacity: 0.4;
        z-index: 0;
    }

    .caroubox-dots {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        margin: 0 8px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .dot.active {
        background: #008080;
        transform: scale(1.3);
    }

    .learn-more {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #008080;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        opacity: 0;
        z-index: 20;
    }

    .caroubox-item.active .learn-more {
        opacity: 1;
    }

    .learn-more:hover {
        background: #006666;
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        .caroubox-container {
            height: 300px;
        }
        .caroubox-item {
            width: 200px;
            height: 200px;
        }
        .caroubox-item.active {
            width: 250px;
            height: 250px;
        }

        .dot {
        width: 5px;
        height: 5px;
      }
    }


     .blog-section {
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        

        .section-subtitle {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0, 119, 182, 0.15);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            z-index: 1;
        }

        .blog-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 25px;
            text-align: left;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #008080;
            line-height: 1.4;
        }

        .blog-content p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .read-more {
            font-weight: 600;
            color: #008080;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .read-more:hover {
            color: #FFD700;
            gap: 8px;
        }

        .blog-date {
            font-size: 0.85rem;
            color: #888;
        }

        .tag {
            display: inline-block;
            background-color: #FFD700;
            color: #333;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .blog-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .blog-content h3 {
                font-size: 1.2rem;
            }
        }