 /* ========== Global Reset ========== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Poppins", sans-serif;
     font-weight: 500;
 }

 body {
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
 }

 /* ========== Container ========== */
 .container-custom {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* ========== Top Bar ========== */
 .top-bar {
     background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
     padding: 5px 0;
     font-size: 14px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     width: 100%;
 }

 .top-bar .container-custom {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
 }

 .contact-info a {
     color: #286D50;
     text-decoration: none;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 3px;
     transition: color 0.3s ease;
 }

 .contact-info a:hover {
     color: #005f8c;
 }

 .user-actions {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .user-actions a {
     text-decoration: none;
     color: #286D50;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 6px;
     padding: 5px 12px;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .user-actions a:hover {
     background: rgba(0, 153, 204, 0.1);
     color: #286D50;
     transform: translateY(-2px);
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .top-bar .container-custom {
         flex-direction: column;
         text-align: center;
         gap: 10px;
     }

     .user-actions {
         gap: 12px;
     }

     .contact-info a {
         font-size: 15px;
     }
 }

 @media (max-width: 480px) {
     .user-actions a {
         padding: 4px 8px;
         font-size: 13px;
     }
 }


 /* ========== Navbar ========== */
 .navbar-custom {
     background: rgba(255, 255, 255, 0.95);
     padding: 20px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
 }

 .navbar-custom.scrolled {
     padding: 15px 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
 }

 .navbar-custom .container-custom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 70px;
 }

 /* ========== Logo ========== */
 .logo {
     font-size: 24px;
     font-weight: bold;
     color: #286D50;
     animation: logoFloat 3s ease-in-out infinite;
     cursor: pointer;
 }

 .logo span {
     background: linear-gradient(135deg, #0099cc, #006699);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-size: 32px;
 }

 .logo-subtitle {
     font-size: 12px;
     color: #666;
     letter-spacing: 2px;
 }

 /* ========== Animations ========== */
 /* @keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
} */

 /* ========== Navigation Menu ========== */
 .nav-menu {
     display: flex;
     list-style: none;
     gap: 30px;
     align-items: center;
 }

 .nav-menu a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     padding: 5px 0;
     position: relative;
     transition: all 0.3s ease;
 }

 .nav-menu a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #286D50, #009978);
     transition: width 0.3s ease;
 }

 .nav-menu a:hover::after {
     width: 100%;
 }

 .nav-menu a:hover {
     color: #286D50;
 }

 /* ========== Mobile Toggle ========== */
 .mobile-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
 }

 .mobile-toggle span {
     width: 25px;
     height: 3px;
     background: #333;
     transition: all 0.3s ease;
 }

 /* ========== Submenu (Animated Dropdown) ========== */
 .nav-menu li {
     position: relative;
 }

 /* Submenu hidden by default */
 .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     list-style: none;
     padding: 10px 0;
     margin: 0;
     display: block;
     min-width: 180px;
     border-radius: 8px;
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
 }

 /* Animate submenu open */
 .nav-menu li:hover>.submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .submenu li a {
     display: block;
     padding: 10px 20px;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .submenu li a:hover {
     background: #f0f8f5;
     color: #286D50;
 }

 /* ========== Mobile View ========== */
 @media (max-width: 992px) {
     .mobile-toggle {
         display: flex;
     }

     .nav-menu {
         flex-direction: column;
         gap: 0;
         background: white;
         width: 100%;
         position: absolute;
         top: 90px;
         left: 0;
         display: none;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     }

     .nav-menu.active {
         display: flex;
     }

     .nav-menu li {
         width: 100%;
         text-align: left;
         border-bottom: 1px solid #eee;
     }

     /* Submenu inside mobile */
     .submenu {
         position: static;
         background: #f9f9f9;
         box-shadow: none;
         padding-left: 20px;
         opacity: 1;
         visibility: visible;
         transform: none;
         display: none;
     }

     .submenu.active {
         display: block;
         animation: slideDown 0.3s ease forwards;
     }

     .submenu-toggle::after {
         content: " ▼";
         font-size: 12px;
     }
 }

 /* ========== Animation Keyframes ========== */
 @keyframes slideDown {
     0% {
         opacity: 0;
         transform: translateY(-10px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* ========== Banner Section ========== */
 .banner-section {
     position: relative;
     overflow: hidden;
     margin: 0 auto;
 }

 .banner-img {
     height: 65vh;
     object-fit: cover;
     filter: brightness(65%);
 }

 .carousel-caption {
     position: absolute;
     inset: 0;
     text-align: center;
     background: rgba(0, 0, 0, 0.35);
 }

 .carousel-caption h1 {
     text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
 }

 .carousel-caption p {
     color: #f8f9fa;
     font-size: 1.2rem;
 }

 /* ========== About Section ========== */
 .about {
     padding: 100px 20px;
     background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-image-wrapper {
     animation: fadeInLeft 1s ease;
 }

 .about-image {
     width: 100%;
     border-radius: 10px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
     transition: all 0.5s ease;
 }

 .about-image:hover {
     transform: scale(1.02) translateY(-10px);
 }

 .about-text {
     animation: fadeInRight 1s ease;
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-100px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(100px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .about h2 {
     font-size: 2.5rem;
     margin-bottom: 30px;
     color: #333;
     position: relative;
     display: inline-block;
 }

 .about h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 60px;
     height: 4px;
     background: linear-gradient(90deg, #286D50, #009978);
 }

 .about p {
     margin-bottom: 20px;
     color: #666;
     line-height: 1.9;
     text-align: justify;
 }

 /* ========== Products Section ========== */
 .products {
     padding: 100px 20px;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .products h2 {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 60px;
     position: relative;
 }

 .products h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #286D50, #009978);
 }

 .product-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
 }

 .product-card {
     background: #fff;
     border-radius: 15px;
     padding: 25px;
     text-align: center;
     cursor: pointer;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }


 .product-card:hover {
     transform: translateY(-15px) scale(1.05);
     box-shadow: 0 20px 40px rgb(40, 109, 80);
 }

 .product-card img {
     width: 100%;
     height: 140px;
     object-fit: cover;
     border-radius: 10px;
     margin-bottom: 20px;
     transition: all 0.6s ease;
 }

 .product-card:hover img {
     transform: scale(1.1);
 }

 .product-card a {
     text-decoration: none;
 }

 .product-card h3 {
     font-size: 15px;
     color: #333;
     text-transform: uppercase;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .product-card:hover h3 {
     color: #286D50;
 }

 /* ========== Partners Section ========== */
 .partners {
     padding: 80px 20px;
     background: #fff;
 }

 .partners h2 {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 50px;
 }

 .partners-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 50px;
     align-items: center;
     justify-items: center;
 }

 .partner-logo {
     max-width: 160px;
     opacity: 0.6;
     filter: grayscale(100%);
     transition: all 0.5s ease;
 }

 .partner-logo:hover {
     opacity: 1;
     transform: scale(1.15) translateY(-10px);
     filter: grayscale(0%);
 }

 /* ========== Image Carousel ========== */
 .elementor-image-carousel-wrapper {
     width: 100%;
     max-width: 1150px;
     margin: 0 auto;
     padding: 0 40px;
     box-sizing: border-box;
 }

 .elementor-image-carousel img {
     width: 100%;
     height: 130px;
     object-fit: contain;
     border-radius: 10px;
     background: #fff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     padding: 15px;
     transition: all 0.4s ease;
 }

 .elementor-image-carousel img:hover {
     transform: scale(1.07);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
 }


 /* ---------- FOOTER SECTION ---------- */

 .contact-footer {
     background: #1B3550;
     color: #fff;
     padding: 60px 20px 20px;
     position: relative;
     overflow: hidden;
 }

 /* Faded large background text */
 .footer-title::before {
     content: "Contact Us";
     position: absolute;
     top: 2%;
     left: 11%;
     transform: translate(-40%, -50%);
     font-size: 70px;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.08);
     white-space: nowrap;
     z-index: 1;

 }

 /* Responsive adjustments */
 @media (max-width: 1396px) {
     .footer-title {
         font-size: 12vw;
         margin-left: 20px;

     }

     .footer-title::before {
         font-size: 70px;
         top: 1%;
         left: 15%;
     }

     .footer-title {
         font-size: 10vw;
     }
 }

 @media (max-width: 768px) {
     .footer-title {
         font-size: 12vw;
         margin-left: 20px;

     }

     .footer-title::before {
         font-size: 12vw;
         top: 15px;
         left: 28%;
     }

     .footer-title {
         font-size: 10vw;
     }
 }

 @media (max-width: 480px) {
     .footer-title::before {
         font-size: 45px;
     }

     .footer-title {
         font-size: 10vw;
     }
 }

 /* 🔹 Watermark Text */
 /* .contact-footer::before {
  content: "RaeBioMedGlobal";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 160px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
} */
 /* Optional: if you have a logo image instead of text, use this instead
.contact-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/logo-watermark.png') center/contain no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
*/

 /* 🔹 Background Image Overlay */
 /* .contact-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../Images/3banner.jpg') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
} */

 /* 🔹 Content Layer */
 .contact-footer>* {
     position: relative;
     z-index: 1;
 }

 /* 🔹 Title */
 .footer-title {
     color: #fff;
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 40px;
 }

 .footer-title span {
     color: #ff7f2a;
 }

 /* 🔹 Grid Layout */
 .footer-grid {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 5px;
     margin-bottom: 10px;
 }

 .footer-box {
     flex: 1;
     min-width: 250px;
     /* background: rgba(255, 255, 255, 0.05); */
     border-radius: 10px;

     backdrop-filter: blur(5px);
     transition: 0.3s ease;
 }

 .footer-box:hover {
     /* background: rgba(255, 255, 255, 0.1); */
     transform: translateY(-5px);
 }

 .footer-box h4 {
     color: #ff7f2a;
     font-size: 18px;
     margin-bottom: 10px;
 }

 .footer-box p,
 .footer-box ul li {
     font-size: 14px;
     line-height: 1.6;
     color: #fff;
 }

 .footer-box ul {
     list-style: none;
     padding: 0;
 }

 .footer-box ul li {
     margin-bottom: 8px;
 }

 .footer-box a {
     color: #fff;
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-box a:hover {
     color: #ff7f2a;
     text-decoration: underline;
 }

 /* 🔹 Icons */
 .icon {
     font-size: 24px;
     color: #ff7f2a;
     margin-bottom: 10px;
 }

 /* 🔹 Social Icons */
 .social-icons {
     margin-top: 15px;
 }

 .social-icon {
     color: #fff;
     margin-right: 12px;
     font-size: 20px;
     transition: 0.3s;
 }

 .social-icon:hover {
     color: #ff7f2a;
     transform: scale(1.2);
 }

 /* 🔹 Bottom Row */
 /* .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
} */

 /* .footer-left p {
  margin: 5px 0;
  font-size: 14px;
} */

 /* .footer-right .qr-code {
  width: 120px;
  height: 120px;
  border: 3px solid #ff7f2a;
  border-radius: 8px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
} */

 /* 🔹 Copyright */
 .footer-copy {
     text-align: center;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     margin-top: 30px;
     padding-top: 15px;
     font-size: 13px;
     opacity: 0.8;
 }

 .footer-copy a {
     color: #fff;
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-copy a:hover {
     color: #ff7f2a;
     text-decoration: underline;
 }

 /* 🔹 Responsive */
 @media (max-width: 768px) {
     .footer-grid {
         flex-direction: column;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .footer-right {
         margin-top: 20px;
     }

     .contact-footer::before {
         font-size: 80px;
     }
 }


 /* ========== Floating Buttons ========== */
 .whatsapp-float {
     position: fixed;
     bottom: 85px;
     left: 20px;
     width: 45px;
     height: 45px;
     background: linear-gradient(135deg, #25D366, #128C7E);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 25px;
     box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     z-index: 1000;
     cursor: pointer;
     text-decoration: none;
     transition: all 0.4s ease;
     animation: floatBounce 3s ease-in-out infinite;
 }
 /* ========== Floating Buttons ========== */
 .phone-float {
     position: fixed;
     bottom: 25px;
     left: 20px;
     width: 45px;
     height: 45px;
     background: linear-gradient(135deg, #256dd3, #4f8fde);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     box-shadow: 0 8px 25px rgba(37, 98, 211, 0.4);
     z-index: 1000;
     cursor: pointer;
     text-decoration: none;
     transition: all 0.4s ease;
     animation: floatBounce 3s ease-in-out infinite;
 }
 /* ========== Floating Buttons ========== */
 .enquiry-float {
     position: fixed;
     bottom: 50%;
     left: -40px;
     width: 120px;
     height: 45px;
     background: linear-gradient(135deg, #256dd3, #4f8fde);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     z-index: 1000;
     cursor: pointer;
     text-decoration: none;
     transform:rotate(270deg);
     
}

 @keyframes floatBounce {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .whatsapp-float:hover {
     transform: scale(1.2) rotate(15deg);
 }

 .back-to-top {
     position: fixed;
     bottom: 25px;
     right: 20px;
     width: 45px;
     height: 45px;
     background: linear-gradient(135deg, #0099cc, #006699);
     color: #fff;
     border: none;
     border-radius: 50%;
     font-size: 26px;
     cursor: pointer;
     opacity: 0;
     transition: all 0.4s ease;
     z-index: 1000;
     box-shadow: 0 8px 25px rgba(0, 153, 204, 0.4);
     pointer-events: none;
     display: flex;
     align-items: center;
     justify-content: center;
     -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
     -ms-transition: all 0.4s ease;
     -o-transition: all 0.4s ease;
}
 .back-to-top.visible {
     opacity: 1;
     pointer-events: all;
 }

 /* 🔹 Hover fix here */
 .back-to-top:hover {
     background: linear-gradient(135deg, #0078b5, #005b8a);
     /* more blue tone */
     transform: translateY(-10px) scale(1.15);
     box-shadow: 0 10px 30px rgba(0, 153, 204, 0.6);
 }


 /* ========== Responsive Design ========== */
 @media (max-width: 992px) {
     .elementor-image-carousel img {
         height: 110px;
     }
 }

 @media (max-width: 768px) {
     .mobile-toggle {
         display: flex;
     }

     .nav-menu {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: #fff;
         flex-direction: column;
         padding: 20px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
         display: none;
     }

     .nav-menu.active {
         display: flex;
     }

     .about-content {
         grid-template-columns: 1fr;
     }

     .banner-img {
         height: 60vh;
     }

     .carousel-caption h1 {
         font-size: 1.5rem;
     }

     .carousel-caption p {
         font-size: 1rem;
     }

     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .about h2,
     .products h2,
     .partners h2 {
         font-size: 2rem;
     }

     .elementor-image-carousel img {
         height: 100px;
     }
 }

 @media (max-width: 576px) {
     .elementor-image-carousel img {
         height: 80px;
         padding: 10px;
     }
 }

 @media (max-width: 480px) {
     .products-grid {
         grid-template-columns: 1fr;
     }

     .whatsapp-float,
     .phone-float,
     .back-to-top {
         width: 45px;
         height: 45px;
         font-size: 25px;
     }
 }

 /* contact section start here  */
 .contact-header {
     background: linear-gradient(135deg, #e9eaea, #e7eeec);
     color: #000;
     text-align: center;
     padding: 80px 20px;
 }

 .contact-header h1 {
     font-size: 2.8rem;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .contact-header p {
     font-size: 1.1rem;
     opacity: 0.9;
 }

 /* OFFICE INFO */
 .contact-office-info {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 25px;
     padding: 60px 20px;
     background: #f8f9fb;
 }

 .info-box {
     background: #fff;
     border-radius: 15px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     width: 330px;
     padding: 25px;
     transition: 0.3s ease;
     text-align: center;
     border-top: 5px solid #286D50;
 }

 .info-box:hover {
     transform: translateY(-6px);
     box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
 }

 .info-box i {
     font-size: 2rem;
     color: #286D50;
     margin-bottom: 12px;
 }

 .info-box h3 {
     font-size: 1.4rem;
     color: #286D50;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .info-box p {
     color: #555;
     line-height: 1.6;
     font-size: 0.95rem;
     margin-bottom: 12px;
 }

 .info-box .call-link,
 .mail-link {
     text-decoration: none;
     color: #555;
 }

 .info-box .call-link:hover {
     text-decoration: underline;
     color: #286D50;
 }

 .info-box .mail-link:hover {
     text-decoration: underline;
     color: #286D50;
 }

 .map-link {
     display: inline-block;
     text-decoration: none;
     background: linear-gradient(135deg, #286D50, #009978);
     color: #fff;
     padding: 8px 15px;
     border-radius: 8px;
     font-size: 0.9rem;
     font-weight: 500;
     transition: 0.3s;
 }

 .map-link:hover {
     background: linear-gradient(135deg, #286D50, #009978);
     transform: scale(1.05);
 }

 /* CONTACT FORM */
 .contact-form-section {
     padding: 70px 20px;
     background: #fff;
     text-align: center;
 }

 .contact-form-section h2 {
     font-size: 2.2rem;
     margin-bottom: 25px;
     color: #286D50;
     font-weight: 700;
 }

 .contact-form {
     max-width: 700px;
     margin: auto;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 input,
 textarea {
     padding: 14px;
     border: 1px solid #ccc;
     border-radius: 8px;
     font-size: 1rem;
     width: 100%;
     outline: none;
     transition: 0.3s;
 }

 input:focus,
 textarea:focus {
     border-color: #286D50;
     box-shadow: 0 0 6px rgba(141, 246, 206, 0.4);
 }

 .contact-textarea {
     resize: none;
     height: 120px;
 }

 button {
     background: linear-gradient(135deg, #286D50, #009978);
     color: #fff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 1.1rem;
     cursor: pointer;
     transition: 0.3s;
     font-weight: 600;
 }

 button:hover {
     background: linear-gradient(135deg, #286D50, #009978);
     transform: scale(1.03);
 }

 /* RESPONSIVE */
 @media (max-width: 768px) {
     .contact-header h1 {
         font-size: 2.3rem;
     }

     .info-box {
         width: 100%;
         max-width: 350px;
     }

     .contact-form {
         width: 100%;
     }
 }

 /* Remove green hover background from carousel arrows */
 .carousel-control-prev:hover,
 .carousel-control-next:hover,
 .carousel-control-prev:focus,
 .carousel-control-next:focus {
     background: none !important;
     opacity: 1;
 }


 /* service / rental start here  */
 /* ---------- Breadcrumb ---------- */
 .breadcrumb {
     background: transparent;
     font-size: 15px;
     margin-top: 30px;
     margin-left: 70px;
 }

 .breadcrumb a {
     color: #6c757d;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .breadcrumb a:hover {
     color: #286D50;
 }

 .breadcrumb-item.active {
     color: #000;
     font-weight: 500;
 }

 /* ---------- Page Title ---------- */
 .page-title {
     text-align: center;
     font-weight: 700;
     font-size: 36px;
     text-transform: uppercase;
     color: #111;
     letter-spacing: 1px;
     position: relative;
     animation: fadeInDown 1s ease;
 }

 .page-title::after {
     content: "";
     display: block;
     width: 90px;
     height: 3px;
     background: linear-gradient(90deg, #286D50, #009978);
     margin: 10px auto 0;
     border-radius: 10px;
 }

 /* ---------- Section Title ---------- */
 .section-title {
     font-weight: 600;
     font-size: 26px;
     text-transform: uppercase;
     margin-top: 50px;
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
     color: #111;
 }

 .section-title::after {
     content: "";
     display: block;
     width: 80px;
     height: 3px;
     background: linear-gradient(90deg, #286D50, #009978);
     margin-top: 6px;
     border-radius: 10px;
 }

 /* ---------- Rental Section ---------- */
 .rental-section {
     padding: 60px 20px;
     background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
 }

 .rental-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     margin-top: 40px;
 }

 /* ---------- Image Side ---------- */
 .rental-image-wrapper {
     animation: fadeInLeft 1s ease;
 }

 .rental-image img {
     width: 100%;
     border-radius: 12px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     transition: all 0.5s ease;
 }

 .rental-image img:hover {
     transform: scale(1.03) translateY(-10px);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
 }

 /* ---------- Text Side ---------- */
 .rental-text {
     animation: fadeInRight 1s ease;
 }

 .rental-text p {
     color: #555;
     margin-bottom: 18px;
     line-height: 1.9;
     text-align: justify;
     font-size: 16px;
 }

 /* ---------- Animations ---------- */
 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-100px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(100px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* ========== Responsive Design ========== */

 /* Tablets */
 @media (max-width: 1024px) {
     .rental-content {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .rental-text {
         order: 2;
         animation: none;
     }

     .rental-image-wrapper {
         order: 1;
         animation: none;
     }

     .rental-image img {
         max-width: 80%;
         margin: 0 auto;
         display: block;
     }

     .rental-text p {
         text-align: justify;
         font-size: 15px;
     }
 }

 /* Mobiles */
 @media (max-width: 768px) {
     .rental-section {
         padding: 40px 15px;
     }

     .rental-content {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .rental-image img {
         width: 100%;
         max-width: 100%;
         border-radius: 10px;
     }

     .rental-text {
         text-align: center;
     }

     .rental-text p {
         font-size: 14.5px;
         line-height: 1.8;
         text-align: justify;
     }
 }

 /* Small Mobiles */
 @media (max-width: 480px) {
     .rental-text p {
         font-size: 14px;
         text-align: justify;
     }

     .rental-content {
         gap: 20px;
     }
 }


 /* ---------- Benefits Section ---------- */
 .benefits-section {
     margin-top: 20px;
     animation: fadeInUp 1s ease;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .benefit-list {
     list-style: none;
     padding-left: 0;
     margin-top: 20px;
 }

 .benefit-list li {
     padding: 10px 0;
     position: relative;
     padding-left: 30px;
     font-size: 16px;
     color: #333;
     transition: all 0.3s ease;
 }

 .benefit-list li::before {
     content: "✔";
     position: absolute;
     left: 0;
     top: 2px;
     color: #286D50;
     font-weight: 700;
     font-size: 18px;
 }

 .benefit-list li:hover {
     transform: translateX(8px);
     color: #286D50;
 }


 /* service/ sell to us start here  */
 html {
     scroll-behavior: smooth;
 }

 /* Hero Section */
 .services-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 40px 20px;
     position: relative;
 }

 .services-container {
     max-width: 1150px;
     margin: 0 auto;
     width: 100%;
 }

 .services-hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .services-text-content {
     opacity: 0;
     animation: fadeInLeft 1s ease forwards;
 }

 .services-subtitle {
     color: #286D50;
     font-size: 0.95em;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 15px;
     font-weight: 600;
 }

 .main-title {
     font-size: 3.5em;
     color: #1e293b;
     margin-bottom: 25px;
     line-height: 1.2;
     font-weight: 700;
 }

 .services-description {
     margin-bottom: 20px;
     color: #666;
     line-height: 1.9;
     text-align: justify;
 }

 .services-image-content {
     opacity: 0;
     animation: fadeInRight 1s ease forwards;
     animation-delay: 0.3s;
 }

 .services-image-wrapper {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.5s ease;
 }

 .services-image-wrapper:hover {
     transform: perspective(1000px) rotateY(0deg) scale(1.02);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
 }

 .services-image-wrapper img {
     width: 100%;
     height: auto;
     display: block;
 }

 .image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(8, 145, 178, 0.3), rgba(6, 182, 212, 0.2));
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .services-image-wrapper:hover .image-overlay {
     opacity: 1;
 }

 /* Form Section */
 .services-form-section {
     padding: 80px 20px;
     background: white;
 }

 .form-services-container {
     max-width: 1150px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 400px 1fr;
     gap: 60px;
 }

 .steps-sidebar {
     opacity: 0;
     animation: fadeInLeft 1s ease forwards;
 }

 .step-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 50px;
     position: relative;
 }

 .step-number {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #286D50, #03ba90);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5em;
     font-weight: bold;
     flex-shrink: 0;
     box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
 }

 .step-content {
     margin-left: 20px;
 }

 .step-title {
     font-size: 1.3em;
     color: #1e293b;
     margin-bottom: 8px;
     font-weight: 600;
 }

 .step-services-description {
     color: #64748b;
     font-size: 0.95em;
     line-height: 1.6;
 }

 .step-item::after {
     content: '';
     position: absolute;
     left: 24px;
     top: 60px;
     width: 2px;
     height: calc(100% + 30px);
     background: linear-gradient(180deg, #286D50, transparent);
 }

 .step-item:last-child::after {
     display: none;
 }

 .form-content {
     opacity: 0;
     animation: fadeInRight 1s ease forwards;
     animation-delay: 0.2s;
 }

 .form-wrapper {
     background: white;
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     border: 1px solid #e2e8f0;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;

 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group.full-width {
     grid-column: 1 / -1;
 }

 .form-label {
     display: block;
     margin-bottom: 8px;
     color: #334155;
     font-weight: 600;
     font-size: 0.95em;
 }

 .form-label span {
     color: #ef4444;
 }

 .form-input,
 .form-textarea {
     width: 100%;
     padding: 14px 18px;
     border: 2px solid #e2e8f0;
     border-radius: 10px;
     font-size: 1em;
     transition: all 0.3s ease;
     font-family: inherit;
 }

 .form-input:focus,
 .form-textarea:focus {
     outline: none;
     border-color: #286D50;
     box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
 }

 .form-textarea {
     resize: vertical;
     min-height: 80px;
 }

 .file-upload {
     border: 2px dashed #cbd5e1;
     border-radius: 10px;
     padding-top: 10px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     background: #f8fafc;
 }

 .file-upload:hover {
     border-color: #286D50;
     background: #f0f9ff;
 }

 .file-upload input {
     display: none;
 }

 .submit-btn {
     background: linear-gradient(135deg, #286D50, #08b682);
     color: white;
     padding: 16px 50px;
     border: none;
     border-radius: 10px;
     font-size: 1.1em;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 25px rgba(12, 166, 205, 0.4);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 /* CTA Section */
 .cta-section {
     padding: 100px 20px;
     background: linear-gradient(135deg, #e8e4e4, #f3fffb);
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
     background-size: 50px 50px;
     animation: moveBackground 20s linear infinite;
 }

 @keyframes moveBackground {
     0% {
         transform: translate(0, 0);
     }

     100% {
         transform: translate(50px, 50px);
     }
 }

 .cta-content {
     position: relative;
     z-index: 1;
 }

 .cta-title {
     font-size: 3em;
     color: rgb(13, 13, 13);
     margin-bottom: 20px;
     font-weight: 700;
 }

 .cta-btn {
     display: inline-block;
     padding: 18px 50px;
     background: rgb(181, 243, 215);
     color: #286D50;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.2em;
     transition: all 0.3s ease;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
 }

 .cta-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 /* Animations */
 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Responsive Design */

 /* ========== Tablets (up to 1024px) ========== */
 @media (max-width: 1024px) {
     .services-hero-content {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .services-text-content {
         order: 2;
         opacity: 1;
         animation: none;
     }

     .services-image-content {
         order: 1;
         opacity: 1;
         animation: none;
     }

     .services-image-wrapper {
         transform: none;
         max-width: 500px;
         margin: 0 auto;
     }

     .form-services-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .main-title {
         font-size: 2.5em;
         line-height: 1.3;
     }

     .services-description {
         text-align: justify;
         font-size: 1em;
     }
 }

 /* ========== Mobile Devices (up to 768px) ========== */
 @media (max-width: 768px) {
     .services-section {
         padding: 60px 15px;
     }

     .main-title {
         font-size: 2em;
         line-height: 1.3;
     }

     .services-hero-content {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 30px;
     }

     .services-text-content {
         padding: 0 10px;
     }

     .services-image-wrapper {
         transform: none;
         max-width: 100%;
         margin: 0 auto;
         border-radius: 15px;
     }

     .services-image-wrapper img {
         width: 100%;
         height: auto;
         border-radius: 15px;
     }

     .services-description {
         font-size: 0.95em;
         text-align: justify;
         margin-bottom: 15px;
     }

     .form-services-container {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .form-wrapper {
         padding: 25px 20px;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .cta-title {
         font-size: 1.8em;
     }

     .cta-btn {
         padding: 14px 35px;
         font-size: 1em;
     }
 }

 /* ========== Small Mobile (up to 480px) ========== */
 @media (max-width: 480px) {
     .main-title {
         font-size: 1.6em;
     }

     .services-description {
         font-size: 0.9em;
         text-align: justify;
     }

     .submit-btn {
         padding: 14px 40px;
         font-size: 1em;
     }

     .step-number {
         width: 40px;
         height: 40px;
         font-size: 1.2em;
     }

     .step-title {
         font-size: 1.1em;
     }
 }

 /* Hero Section */
 .amc-hero-section {
     position: relative;
     height: 50vh;
     min-height: 400px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #286D50, #4ac08f),
         url('../Images/about-us.jpg') center/cover;
     color: white;
     text-align: center;
     overflow: hidden;
     padding: 20px;
 }

 .amc-hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
     background-size: 50px 50px;
     animation: amc-moveGrid 20s linear infinite;
 }

 @keyframes amc-moveGrid {
     0% {
         transform: translate(0, 0);
     }

     100% {
         transform: translate(50px, 50px);
     }
 }

 .amc-hero-content {
     position: relative;
     z-index: 2;
     max-width: 1000px;
     width: 100%;
     padding: 0 15px;
     animation: amc-fadeInUp 1s ease;
 }

 .amc-hero-content h1 {
     font-size: 2.5em;
     margin-bottom: 15px;
     font-weight: 700;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
     line-height: 1.2;
 }

 .amc-hero-content p {
     font-size: 1.2em;
     margin-bottom: 30px;
     text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
     line-height: 1.4;
 }

 .amc-hero-badge {
     display: inline-block;
     background: rgba(255, 255, 255, 0.2);
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 0.85em;
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-bottom: 25px;
     backdrop-filter: blur(10px);
 }

 /* Overview Section */
 .amc-overview-section {
     padding: 60px 15px;
     background: white;
 }

 .amc-container {
     max-width: 1400px;
     margin: 0 auto;
     width: 100%;
     padding: 0 15px;
 }

 .amc-section-header {
     text-align: center;
     margin-bottom: 50px;
     opacity: 0;
     animation: amc-fadeInUp 1s ease forwards;
 }

 .amc-section-title {
     font-size: 2em;
     color: #1e293b;
     margin-bottom: 15px;
     font-weight: 700;
     line-height: 1.2;
 }

 .amc-section-subtitle {
     font-size: 1.1em;
     color: #64748b;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.5;
 }

 /* Service Cards */
 .amc-services-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 25px;
     margin-bottom: 50px;
 }

 .amc-service-card {
     background: white;
     border-radius: 15px;
     padding: 25px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border: 1px solid #e2e8f0;
     position: relative;
     overflow: hidden;
     opacity: 0;
     animation: amc-fadeInUp 1s ease forwards;
 }

 .amc-service-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .amc-service-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .amc-service-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .amc-service-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .amc-service-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .amc-service-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 .amc-service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #286D50, #45b989);
     transform: scaleX(0);
     transition: transform 0.5s ease;
 }

 .amc-service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(8, 145, 178, 0.15);
 }

 .amc-service-card:hover::before {
     transform: scaleX(1);
 }

 .amc-service-icon {
     font-size: 2.5em;
     margin-bottom: 15px;
     display: block;
 }

 .amc-service-card h3 {
     font-size: 1.5em;
     color: #1e293b;
     margin-bottom: 12px;
     font-weight: 600;
     line-height: 1.3;
 }

 .amc-service-card p {
     color: #64748b;
     font-size: 1em;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .amc-service-card ul {
     list-style: none;
     padding: 0;
 }

 .amc-service-card ul li {
     padding: 8px 0;
     color: #475569;
     position: relative;
     padding-left: 25px;
     font-size: 0.95em;
     line-height: 1.4;
 }

 .amc-service-card ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #286D50;
     font-weight: bold;
     font-size: 1.1em;
 }

 /* Feature Section with Image */
 .amc-feature-section {
     padding: 60px 15px;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .amc-feature-content {
     display: flex;
     flex-direction: column;
     gap: 40px;
     align-items: center;
     margin-bottom: 60px;
 }

 .amc-feature-content.amc-reverse {
     direction: rtl;
 }

 .amc-feature-content.amc-reverse>* {
     direction: ltr;
 }

 .amc-feature-text {
     opacity: 0;
     width: 100%;
 }

 .amc-feature-text.amc-animate-left {
     animation: amc-fadeInLeft 1s ease forwards;
 }

 .amc-feature-text.amc-animate-right {
     animation: amc-fadeInRight 1s ease forwards;
 }

 .amc-feature-text h2 {
     font-size: 1.8em;
     color: #1e293b;
     margin-bottom: 20px;
     font-weight: 700;
     line-height: 1.3;
 }

 .amc-feature-text p {
     font-size: 1em;
     color: #64748b;
     line-height: 1.6;
     margin-bottom: 12px;
 }

 .amc-feature-list {
     margin-top: 25px;
 }

 .amc-feature-item {
     display: flex;
     align-items: start;
     margin-bottom: 15px;
 }

 .amc-feature-item-icon {
     width: 35px;
     height: 35px;
     background: linear-gradient(135deg, #286D50, #46bb8a);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: bold;
     flex-shrink: 0;
     margin-right: 12px;
     font-size: 0.9em;
 }

 .amc-feature-item-text h4 {
     color: #1e293b;
     margin-bottom: 5px;
     font-size: 1em;
 }

 .amc-feature-item-text p {
     color: #64748b;
     font-size: 0.9em;
     margin: 0;
     line-height: 1.5;
 }

 .amc-feature-image {
     opacity: 0;
     width: 100%;
 }

 .amc-feature-image.amc-animate-right {
     animation: amc-fadeInRight 1s ease forwards;
 }

 .amc-feature-image.amc-animate-left {
     animation: amc-fadeInLeft 1s ease forwards;
 }

 .amc-image-wrapper {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transform: none;
     transition: all 0.3s ease;
 }

 .amc-feature-content.amc-reverse .amc-image-wrapper {
     transform: none;
 }

 .amc-image-wrapper:hover {
     transform: scale(1.02);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .amc-image-wrapper img {
     width: 100%;
     height: auto;
     display: block;
 }

 .amc-image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .amc-image-wrapper:hover .amc-image-overlay {
     opacity: 1;
 }

 /* Stats Section */
 .amc-stats-section {
     padding: 50px 15px;
     background: linear-gradient(135deg, #8d8e8d, #e5ebe9);
     color: white;
 }

 .amc-stats-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 25px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .amc-stat-item {
     text-align: center;
     opacity: 0;
     animation: amc-fadeInUp 1s ease forwards;
 }

 .amc-stat-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .amc-stat-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .amc-stat-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .amc-stat-item:nth-child(4) {
     animation-delay: 0.4s;
 }

 .amc-stat-number {
     font-size: 2.2em;
     font-weight: 700;
     margin-bottom: 8px;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
 }

 .amc-stat-label {
     font-size: 1em;
     opacity: 0.9;
     line-height: 1.3;
 }

 /* Benefits Section - Improved */
 .amc-benefits-section {
     padding: 60px 15px;
     background: white;
     overflow: hidden;
 }

 .amc-benefits-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
     margin-top: 40px;
 }

 .amc-benefit-card {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     padding: 25px;
     border-radius: 15px;
     text-align: center;
     transition: all 0.3s ease;
     opacity: 0;
     animation: amc-fadeInUp 1s ease forwards;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(226, 232, 240, 0.5);
 }

 .amc-benefit-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
     transition: left 0.5s ease;
 }

 .amc-benefit-card:hover::before {
     left: 100%;
 }

 .amc-benefit-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .amc-benefit-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .amc-benefit-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .amc-benefit-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .amc-benefit-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .amc-benefit-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 .amc-benefit-card:hover {
     transform: translateY(-8px);
     background: white;
     box-shadow: 0 15px 30px rgba(40, 109, 80, 0.15);
     border-color: rgba(40, 109, 80, 0.2);
 }

 .amc-benefit-icon {
     font-size: 2.8em;
     margin-bottom: 20px;
     display: inline-block;
     transition: transform 0.3s ease;
 }

 .amc-benefit-card:hover .amc-benefit-icon {
     transform: scale(1.1);
 }

 .amc-benefit-card h4 {
     font-size: 1.3em;
     color: #1e293b;
     margin-bottom: 15px;
     line-height: 1.3;
     font-weight: 600;
     position: relative;
     display: inline-block;
 }

 .amc-benefit-card h4::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #286D50, #45b989);
     transition: width 0.3s ease;
 }

 .amc-benefit-card:hover h4::after {
     width: 50px;
 }

 .amc-benefit-card p {
     color: #64748b;
     line-height: 1.6;
     font-size: 0.95em;
     margin: 0;
 }

 /* Animations */
 @keyframes amc-fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes amc-fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes amc-fadeInRight {
     from {
         opacity: 0;
         transform: translateX(30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Tablet Styles */
 @media (min-width: 768px) {
     .amc-hero-content h1 {
         font-size: 3em;
     }

     .amc-hero-content p {
         font-size: 1.3em;
     }

     .amc-section-title {
         font-size: 2.5em;
     }

     .amc-services-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px;
     }

     .amc-benefits-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 25px;
         margin-top: 50px;
     }

     .amc-stats-grid {
         grid-template-columns: repeat(4, 1fr);
     }

     .amc-feature-content {
         flex-direction: row;
         gap: 50px;
     }

     .amc-image-wrapper {
         transform: perspective(1000px) rotateY(-5deg);
     }

     .amc-feature-content.amc-reverse .amc-image-wrapper {
         transform: perspective(1000px) rotateY(5deg);
     }

     .amc-benefit-card {
         padding: 30px 25px;
     }
 }

 /* Desktop Styles */
 @media (min-width: 1024px) {
     .amc-hero-section {
         height: 60vh;
     }

     .amc-hero-content h1 {
         font-size: 4em;
     }

     .amc-services-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 40px;
     }

     .amc-benefits-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 30px;
         margin-top: 60px;
     }

     .amc-overview-section,
     .amc-feature-section,
     .amc-benefits-section {
         padding: 100px 20px;
     }

     .amc-section-header {
         margin-bottom: 80px;
     }

     .amc-services-grid {
         margin-bottom: 80px;
     }

     .amc-feature-content {
         margin-bottom: 80px;
     }

     .amc-benefits-grid {
         margin-top: 60px;
     }

     .amc-service-card,
     .amc-benefit-card {
         padding: 40px;
     }

     .amc-stat-number {
         font-size: 3.5em;
     }

     .amc-benefit-icon {
         font-size: 3.2em;
         margin-bottom: 25px;
     }

     .amc-benefit-card h4 {
         font-size: 1.4em;
         margin-bottom: 20px;
     }

     .amc-benefit-card p {
         font-size: 1em;
     }
 }

 /* Large Desktop */
 @media (min-width: 1200px) {
     .amc-benefits-grid {
         gap: 40px;
     }
 }

 /* services/calibration page start here  */


 /* Container */
 .calibration-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
 }


 /* Equipment Cards Section - UPDATED */
 .calibration-equipment-section {
     padding: 100px 20px;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .calibration-equipment-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     margin-top: 60px;
 }

 .calibration-equipment-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     opacity: 0;
     animation: calibration-fadeInUp 1s ease forwards;
     position: relative;
     border: 1px solid #f1f5f9;
 }

 .calibration-equipment-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .calibration-equipment-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .calibration-equipment-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .calibration-equipment-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .calibration-equipment-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .calibration-equipment-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 .calibration-equipment-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
     border-color: rgba(99, 102, 241, 0.2);
 }

 .calibration-card-image {
     position: relative;
     height: 180px;
     overflow: hidden;
 }

 .calibration-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .calibration-equipment-card:hover .calibration-card-image img {
     transform: scale(1.08);
 }

 .calibration-card-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .calibration-equipment-card:hover .calibration-card-overlay {
     opacity: 1;
 }

 .calibration-card-icon {
     font-size: 3em;
     color: white;
 }

 .calibration-card-content {
     padding: 24px;
 }

 .calibration-card-content h3 {
     font-size: 1.5em;
     color: #1e293b;
     margin-bottom: 12px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .calibration-card-content h3::before {
     content: '';
     display: block;
     width: 4px;
     height: 20px;
     background: linear-gradient(135deg, #286D50, #4bc391);
     border-radius: 2px;
 }

 .calibration-card-content p {
     color: #64748b;
     line-height: 1.6;
     margin-bottom: 16px;
     font-size: 0.95em;
 }

 .calibration-card-content ul {
     list-style: none;
     padding: 0;
 }

 .calibration-card-content ul li {
     padding: 6px 0;
     color: #475569;
     position: relative;
     padding-left: 24px;
     font-size: 0.9em;
     transition: color 0.3s ease;
 }

 .calibration-card-content ul li:hover {
     color: #286D50;
 }

 .calibration-card-content ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #286D50;
     font-weight: bold;
     font-size: 1em;
 }

 /* Process Section */
 .calibration-process-section {
     padding: 100px 20px;
     background: white;
 }

 .calibration-process-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-top: 60px;
     position: relative;
 }

 .calibration-process-grid::before {
     content: '';
     position: absolute;
     top: 50px;
     left: 10%;
     right: 10%;
     height: 2px;
     background: linear-gradient(90deg, #286D50, #41ae81);
     z-index: 0;
 }

 .calibration-process-step {
     text-align: center;
     position: relative;
     z-index: 1;
     opacity: 0;
     animation: calibration-fadeInUp 1s ease forwards;
 }

 .calibration-process-step:nth-child(1) {
     animation-delay: 0.1s;
 }

 .calibration-process-step:nth-child(2) {
     animation-delay: 0.2s;
 }

 .calibration-process-step:nth-child(3) {
     animation-delay: 0.3s;
 }

 .calibration-process-step:nth-child(4) {
     animation-delay: 0.4s;
 }

 .calibration-step-number {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #286D50, #45b888);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2em;
     font-weight: bold;
     color: white;
     margin: 0 auto 20px;
     box-shadow: 0 8px 20px #286D50;
     transition: all 0.3s ease;
 }

 .calibration-process-step:hover .calibration-step-number {
     transform: scale(1.1) rotateZ(360deg);
 }

 .calibration-step-title {
     font-size: 1.3em;
     color: #1e293b;
     margin-bottom: 12px;
     font-weight: 600;
 }

 .calibration-step-description {
     color: #64748b;
     line-height: 1.6;
     font-size: 0.95em;
 }

 /* Features Section */
 .calibration-features-section {
     padding: 100px 20px;
     background: linear-gradient(135deg, #286D50, #44ba89);
     color: white;
 }

 .calibration-features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     gap: 30px;
     margin-top: 60px;
 }

 .calibration-feature-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: 16px;
     text-align: center;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.2);
     opacity: 0;
     animation: calibration-fadeInUp 1s ease forwards;
 }

 .calibration-feature-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .calibration-feature-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .calibration-feature-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .calibration-feature-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .calibration-feature-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .calibration-feature-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 .calibration-feature-card:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-8px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
 }

 .calibration-feature-icon {
     font-size: 2.5em;
     margin-bottom: 16px;
 }

 .calibration-feature-card h4 {
     font-size: 1.3em;
     margin-bottom: 12px;
 }

 .calibration-feature-card p {
     opacity: 0.9;
     line-height: 1.6;
     font-size: 0.95em;
 }

 /* Standards Section */
 .calibration-standards-section {
     padding: 100px 20px;
     background: white;
 }

 .calibration-standards-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-top: 60px;
 }

 .calibration-standards-text {
     opacity: 0;
     animation: calibration-fadeInLeft 1s ease forwards;
 }

 .calibration-standards-text h3 {
     font-size: 2em;
     color: #1e293b;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .calibration-standards-text p {
     color: #64748b;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .calibration-standards-list {
     list-style: none;
     padding: 0;
 }

 .calibration-standards-list li {
     padding: 15px 0;
     border-bottom: 1px solid #e2e8f0;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .calibration-standards-list li:last-child {
     border-bottom: none;
 }

 .calibration-list-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #286D50, #4bc894);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: bold;
     flex-shrink: 0;
 }

 .calibration-standards-image {
     opacity: 0;
     animation: calibration-fadeInRight 1s ease forwards;
 }

 .calibration-image-wrapper {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.5s ease;
 }

 .calibration-image-wrapper:hover {
     transform: perspective(1000px) rotateY(0deg) scale(1.02);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
 }

 .calibration-image-wrapper img {
     width: 100%;
     height: auto;
     display: block;
 }

 .calibration-image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, #286D50, #45b687);
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .calibration-image-wrapper:hover .calibration-image-overlay {
     opacity: 1;
 }

 @keyframes calibration-pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 /* Animations */
 @keyframes calibration-fadeInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes calibration-fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes calibration-fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .calibration-hero-content h1 {
         font-size: 3em;
     }

     .calibration-standards-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .calibration-image-wrapper {
         transform: none !important;
     }

     .calibration-section-title {
         font-size: 2.5em;
     }

     .calibration-process-grid::before {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .calibration-hero-content h1 {
         font-size: 2em;
     }

     .calibration-hero-content p {
         font-size: 1.1em;
     }

     .calibration-section-title {
         font-size: 2em;
     }

     .calibration-cta-title {
         font-size: 2em;
     }

     .calibration-equipment-grid {
         grid-template-columns: 1fr;
     }


 }

 /* services / nabh start here  */

 /* NABH Container */
 .nabh-nabh-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* NABH About Section */
 .nabh-nabh-about-section {
     padding: 100px 20px;
     background: white;
 }

 .nabh-nabh-section-header {
     text-align: center;
     margin-bottom: 80px;
     opacity: 0;
     animation: nabh-nabh-fadeInUp 1s ease forwards;
 }

 .nabh-nabh-section-title {
     font-size: 3em;
     color: #1e293b;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .nabh-nabh-section-subtitle {
     font-size: 1.2em;
     color: #64748b;
     max-width: 800px;
     margin: 0 auto;
     line-height: 1.8;
 }

 .nabh-nabh-about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-top: 60px;
 }

 .nabh-nabh-about-text {
     opacity: 0;
     animation: nabh-nabh-fadeInLeft 1s ease forwards;
 }

 .nabh-nabh-about-text h3 {
     font-size: 2.2em;
     color: #1e293b;
     margin-bottom: 25px;
     font-weight: 600;
 }

 .nabh-nabh-about-text p {
     color: #64748b;
     line-height: 1.9;
     margin-bottom: 20px;
     font-size: 1.05em;
 }

 .nabh-nabh-highlight-box {
     background: linear-gradient(135deg, #dbeafe, #bfdbfe);
     padding: 30px;
     border-radius: 15px;
     border-left: 4px solid #286D50;
     margin-top: 30px;
 }

 .nabh-nabh-highlight-box h4 {
     color: #286D50;
     font-size: 1.3em;
     margin-bottom: 15px;
 }

 .nabh-nabh-highlight-box p {
     color: #286D50;
     margin: 0;
 }

 .nabh-nabh-about-image {
     opacity: 0;
     animation: nabh-nabh-fadeInRight 1s ease forwards;
 }

 .nabh-nabh-image-wrapper {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.5s ease;
 }

 .nabh-nabh-image-wrapper:hover {
     transform: perspective(1000px) rotateY(0deg) scale(1.02);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
 }

 .nabh-nabh-image-wrapper img {
     width: 100%;
     height: auto;
     display: block;
 }

 .nabh-nabh-image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .nabh-nabh-image-wrapper:hover .nabh-nabh-image-overlay {
     opacity: 1;
 }

 /* NABH Services Section */
 .nabh-nabh-services-section {
     padding: 100px 20px;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .nabh-nabh-services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
     margin-top: 60px;
 }

 .nabh-nabh-service-card {
     background: white;
     border-radius: 20px;
     padding: 50px 40px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     transition: all 0.5s ease;
     border-top: 5px solid #286D50;
     opacity: 0;
     animation: nabh-nabh-fadeInUp 1s ease forwards;
     position: relative;
     overflow: hidden;
 }

 .nabh-nabh-service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
     transition: left 0.5s ease;
 }

 .nabh-nabh-service-card:hover::before {
     left: 100%;
 }

 .nabh-nabh-service-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .nabh-nabh-service-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .nabh-nabh-service-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .nabh-nabh-service-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .nabh-nabh-service-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .nabh-nabh-service-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 .nabh-nabh-service-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
     border-top-color: #286D50;
 }

 .nabh-nabh-service-icon {
     font-size: 4em;
     margin-bottom: 25px;
     display: block;
 }

 .nabh-nabh-service-card h3 {
     font-size: 1.8em;
     color: #1e293b;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .nabh-nabh-service-card p {
     color: #64748b;
     line-height: 1.8;
     margin-bottom: 25px;
     font-size: 1.05em;
 }

 .nabh-nabh-service-card ul {
     list-style: none;
     padding: 0;
 }

 .nabh-nabh-service-card ul li {
     padding: 10px 0;
     color: #475569;
     position: relative;
     padding-left: 30px;
 }

 .nabh-nabh-service-card ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #286D50;
     font-weight: bold;
     font-size: 1.2em;
 }

 /* NABH Standards Section */
 .nabh-nabh-standards-section {
     padding: 100px 20px;
     background: white;
 }

 .nabh-nabh-standards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     margin-top: 60px;
 }

 .nabh-nabh-standard-card {
     background: linear-gradient(135deg, #dbeafe, #c3f7f7);
     padding: 40px;
     border-radius: 20px;
     text-align: center;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     opacity: 0;
     animation: nabh-nabh-fadeInUp 1s ease forwards;
 }

 .nabh-nabh-standard-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .nabh-nabh-standard-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .nabh-nabh-standard-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .nabh-nabh-standard-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .nabh-nabh-standard-card:hover {
     transform: translateY(-10px);
     background: white;
     border-color: #286D50;
     box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
 }

 .nabh-nabh-standard-icon {
     font-size: 3.5em;
     margin-bottom: 20px;
 }

 .nabh-nabh-standard-card h4 {
     font-size: 1.5em;
     color: #286D50;
     margin-bottom: 15px;
     font-weight: 600;
 }

 .nabh-nabh-standard-card p {
     color: #286D50;
     line-height: 1.7;
 }

 /* NABH Benefits Section */
 .nabh-nabh-benefits-section {
     padding: 100px 20px;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .nabh-nabh-benefits-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-top: 60px;
 }

 .nabh-nabh-benefits-content.nabh-nabh-reverse {
     direction: rtl;
 }

 .nabh-nabh-benefits-content.nabh-nabh-reverse>* {
     direction: ltr;
 }

 .nabh-nabh-benefits-text {
     opacity: 0;
 }

 .nabh-nabh-benefits-text.nabh-nabh-animate-left {
     animation: nabh-nabh-fadeInLeft 1s ease forwards;
 }

 .nabh-nabh-benefits-text.nabh-nabh-animate-right {
     animation: nabh-nabh-fadeInRight 1s ease forwards;
 }

 .nabh-nabh-benefits-text h3 {
     font-size: 2.2em;
     color: #1e293b;
     margin-bottom: 25px;
     font-weight: 600;
 }

 .nabh-nabh-benefits-text p {
     color: #64748b;
     line-height: 1.9;
     margin-bottom: 20px;
     font-size: 1.05em;
 }

 .nabh-nabh-benefits-list {
     margin-top: 30px;
 }

 .nabh-nabh-benefit-item {
     display: flex;
     align-items: start;
     margin-bottom: 25px;
     padding: 20px;
     background: white;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .nabh-nabh-benefit-item:hover {
     transform: translateX(10px);
     box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
 }

 .nabh-nabh-benefit-item-icon {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #286D50, #4bce98);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5em;
     flex-shrink: 0;
     margin-right: 20px;
 }

 .nabh-nabh-benefit-item-text h5 {
     color: #1e293b;
     margin-bottom: 8px;
     font-size: 1.2em;
 }

 .nabh-nabh-benefit-item-text p {
     color: #64748b;
     font-size: 0.95em;
     margin: 0;
 }

 .nabh-nabh-benefits-image {
     opacity: 0;
 }

 .nabh-nabh-benefits-image.nabh-nabh-animate-right {
     animation: nabh-nabh-fadeInRight 1s ease forwards;
 }

 .nabh-nabh-benefits-image.nabh-nabh-animate-left {
     animation: nabh-nabh-fadeInLeft 1s ease forwards;
 }

 /* NABH Process Timeline */
 .nabh-nabh-process-section {
     padding: 100px 20px;
     background: linear-gradient(135deg, #adafae, #b6b6b6);
     color: white;
 }

 .nabh-nabh-process-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-top: 60px;
 }

 .nabh-nabh-process-step {
     text-align: center;
     opacity: 0;
     animation: nabh-nabh-fadeInUp 1s ease forwards;
     position: relative;
 }

 .nabh-nabh-process-step:nth-child(1) {
     animation-delay: 0.1s;
 }

 .nabh-nabh-process-step:nth-child(2) {
     animation-delay: 0.2s;
 }

 .nabh-nabh-process-step:nth-child(3) {
     animation-delay: 0.3s;
 }

 .nabh-nabh-process-step:nth-child(4) {
     animation-delay: 0.4s;
 }

 .nabh-nabh-step-number {
     width: 100px;
     height: 100px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5em;
     font-weight: bold;
     color: #286D50;
     margin: 0 auto 25px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }

 .nabh-nabh-process-step:hover .nabh-nabh-step-number {
     transform: scale(1.1) rotateZ(360deg);
 }

 .nabh-nabh-step-title {
     font-size: 1.5em;
     margin-bottom: 15px;
     font-weight: 600;
 }

 .nabh-nabh-step-description {
     opacity: 0.9;
     line-height: 1.7;
 }



 @keyframes nabh-nabh-pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 /* NABH Animations */
 @keyframes nabh-nabh-fadeInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes nabh-nabh-fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes nabh-nabh-fadeInRight {
     from {
         opacity: 0;
         transform: translateX(50px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* NABH Responsive Design */
 @media (max-width: 1024px) {
     .nabh-nabh-hero-content h1 {
         font-size: 3em;
     }

     .nabh-nabh-about-content,
     .nabh-nabh-benefits-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .nabh-nabh-benefits-content.nabh-nabh-reverse {
         direction: ltr;
     }

     .nabh-nabh-image-wrapper {
         transform: none !important;
     }

     .nabh-nabh-section-title {
         font-size: 2.5em;
     }
 }

 @media (max-width: 768px) {
     .nabh-nabh-hero-content h1 {
         font-size: 2em;
     }

     .nabh-nabh-hero-content p {
         font-size: 1.1em;
     }

     .nabh-nabh-section-title {
         font-size: 2em;
     }

     .nabh-nabh-cta-title {
         font-size: 2em;
     }

     .nabh-nabh-services-grid {
         grid-template-columns: 1fr;
     }

     .nabh-nabh-whatsapp-btn {
         width: 50px;
         height: 50px;
         bottom: 20px;
         right: 20px;
     }

     .nabh-nabh-cta-buttons {
         flex-direction: column;
     }
 }

 /* all products css  start here  */

 .products-search-container {
     background: white;
     border-radius: 8px;
     padding: 20px;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     margin-bottom: 25px;
 }

 .products-search-box {
     position: relative;
     max-width: 600px;
     margin: 0 auto;
 }

 .products-search-input {
     width: 100%;
     padding: 12px 50px 12px 20px;
     border: 1px solid #1f2937;
     border-radius: 30px;
     font-size: 16px;
     transition: all 0.3s;
 }

 .products-search-input:focus {
     outline: none;
     border-color: #286D50;
     box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
 }

 .products-search-button {
     position: absolute;
     right: 5px;
     top: 50%;
     transform: translateY(-50%);
     background: #286D50;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     color: white;
     cursor: pointer;
     transition: background 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .products-search-button:hover {
     background: #009978;
 }

 .products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 25px;
 }

 .products-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s, box-shadow 0.3s;
     position: relative;
 }

 .products-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .products-image {
     position: relative;
     overflow: hidden;
     background: #f3f4f6;
     height: 250px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .products-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }

 .products-card:hover .products-image img {
     transform: scale(1.05);
 }


 .products-info {
     padding: 20px;
 }

 .products-title {
     font-size: 16px;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 10px;
     min-height: 48px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .products-price {
     font-size: 20px;
     font-weight: 700;
     color: #286D50;
     margin-bottom: 15px;
 }

 .products-detail-btn {
     width: 100%;
     padding: 12px;
     background: #286D50;
     color: white;
     border: none;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .products-detail-btn:hover {
     background: #009978;
 }

 .products-top-controls {
     background: white;
     padding: 20px;
     border-radius: 8px;
     margin-bottom: 25px;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 15px;
 }

 .products-results-info {
     font-size: 14px;
     color: #6b7280;
 }

 .products-sort-select {
     padding: 8px 15px;
     border: 1px solid #1f2937;
     border-radius: 6px;
     color: #1f2937;
     cursor: pointer;
 }





 .products-no-results {
     text-align: center;
     padding: 40px;
     color: #6b7280;
     grid-column: 1 / -1;
 }

 @media (max-width: 768px) {
     .products-grid {
         grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
         gap: 15px;
     }
 }

 @media (max-width: 576px) {
     .products-grid {
         grid-template-columns: 1fr;
     }

     .products-top-controls {
         flex-direction: column;
         align-items: stretch;
     }
 }

 @media (max-width: 991px) and (min-width: 768px) {
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }
 }

 @media (max-width: 767px) {
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }

     .products-title {
         font-size: 14px;
         min-height: 40px;
     }

     .products-price {
         font-size: 16px;
     }

     .products-image {
         height: 180px;
     }

     .products-detail-btn {
         padding: 10px;
         font-size: 14px;
     }

     .products-top-controls {
         flex-direction: column;
         align-items: stretch;
     }
 }

 @media (max-width: 480px) {
     .products-info {
         padding: 15px;
     }

 }

 /* products details css start here   */
 .product-details-breadcrumb {
     background-color: transparent;
     padding: 15px 0;
 }

 .product-details-breadcrumb-item a {
     color: #6b7280;
     text-decoration: none;
 }

 .product-details-breadcrumb-item.active {
     color: #286D50;
 }

 .product-details-container {
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     margin-bottom: 40px;
 }

 .product-details-image-section {
     padding: 50px;
     border-right: 1px solid #1f2937;
 }

 .product-details-main-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 8px;
     margin-bottom: 15px;
     cursor: zoom-in;
     transition: transform 0.3s;
 }

 .product-details-main-image:hover {
     transform: scale(1.02);
 }

 .product-details-info-section {
     padding: 30px;
 }

 .product-details-title {
     font-size: 28px;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .product-details-price {
     font-size: 32px;
     font-weight: 700;
     color: #286D50;
     margin-bottom: 20px;
 }

 .product-details-description {
     color: #6b7280;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .product-details-specifications {
     margin-bottom: 25px;
 }

 .product-details-spec-title {
     font-size: 18px;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 15px;
     padding-bottom: 8px;
     border-bottom: 2px solid #286D50;
 }

 .product-details-spec-list {
     list-style-type: none;
     padding-left: 0;
 }

 .product-details-spec-list li {
     padding: 8px 0;
     border-bottom: 1px solid #1f2937;
     display: flex;
 }

 .product-details-spec-name {
     font-weight: 600;
     color: #1f2937;
     min-width: 150px;
 }

 .product-details-spec-value {
     color: #6b7280;
 }

 .product-details-additional-info {
     margin-top: 50px;
 }

 .product-details-info-tabs {
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
     overflow: hidden;
 }

 .product-details-nav-tabs {
     border-bottom: 2px solid #1f2937;
     padding: 0 20px;
 }

 .product-details-nav-tabs .product-details-nav-link {
     border: none;
     color: #6b7280;
     font-weight: 500;
     padding: 15px 20px;
     margin-bottom: -2px;
 }

 .product-details-nav-tabs .product-details-nav-link.active {
     color: #286D50;
     background-color: transparent;
     border-bottom: 3px solid #286D50;
 }

 .product-details-tab-content {
     padding: 30px;
 }

 .product-details-tab-pane h4 {
     color: #1f2937;
     margin-bottom: 15px;
 }

 .product-details-tab-pane p {
     color: #6b7280;
     line-height: 1.7;
 }

 .product-details-related-products {
     margin-top: 50px;
 }

 .product-details-section-title {
     font-size: 24px;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: 25px;
     padding-bottom: 10px;
     border-bottom: 2px solid #286D50;
     display: inline-block;
 }

 .product-details-product-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s, box-shadow 0.3s;
     margin-bottom: 25px;
 }

 .product-details-product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .product-details-product-card-image {
     height: 200px;
     overflow: hidden;

 }

 .product-details-product-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }

 .product-details-product-card:hover .product-details-product-card-image img {
     transform: scale(1.05);
 }

 .product-details-product-card-body {
     padding: 20px;
 }

 .product-details-product-card-title {
     font-size: 16px;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 10px;
     min-height: 48px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .product-details-product-card-price {
     font-size: 20px;
     font-weight: 700;
     color: #286D50;
     margin-bottom: 15px;
 }

 .product-details-product-card-btn {
     width: 100%;
     padding: 10px;
     background: #286D50;
     color: white;
     border: none;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s;
 }

 .product-details-product-card-btn:hover {
     background: #0e7490;
 }





 /* Responsive Styles */
 @media (max-width: 991px) {
     .product-details-image-section {
         border-right: none;
         border-bottom: 1px solid #1f2937;
     }

     .product-details-main-image {
         height: 350px;
     }
 }

 @media (max-width: 768px) {
     .product-details-title {
         font-size: 24px;
     }

     .product-details-price {
         font-size: 28px;
     }

     .product-details-spec-list li {
         flex-direction: column;
     }

     .product-details-spec-name {
         min-width: auto;
         margin-bottom: 5px;
     }
 }

 @media (max-width: 576px) {

     .product-details-image-section,
     .product-details-info-section {
         padding: 20px;
     }

     .product-details-main-image {
         height: 250px;
     }

     .product-details-nav-tabs .product-details-nav-link {
         padding: 10px 15px;
         font-size: 14px;
     }

     .product-details-tab-content {
         padding: 20px;
     }
 }

 .product-details-back-button {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #286D50;
     text-decoration: none;
     font-weight: 500;
     margin-bottom: 20px;
     transition: color 0.3s;
     -webkit-transition: color 0.3s;
     -moz-transition: color 0.3s;
     -ms-transition: color 0.3s;
     -o-transition: color 0.3s;
 }

 .product-details-back-button:hover {
     color: #286D50;
 }

 .product-specifications-section {
     background: #fff;
     border-radius: 12px;
     padding: 25px 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }

 .product-specifications-section h4 {
     font-size: 1.4rem;
     border-bottom: 2px solid #286D50;
     padding-bottom: 6px;
     display: inline-block;
 }

 .specs-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 15px;
     margin-top: 15px;
 }

 .spec-item {
     display: flex;
     flex-direction: column;
     background: #f8f9fa;
     border: 1px solid #e2e6ea;
     border-left: 5px solid #286D50;
     border-radius: 10px;
     padding: 15px 18px;
     transition: all 0.3s ease;
 }

 .spec-item:hover {
     background: #e9f3ff;
     transform: translateY(-2px);
     box-shadow: 0 2px 6px rgba(13, 110, 253, 0.1);
 }

 .spec-name {
     font-weight: 600;
     color: #286D50;
     margin-bottom: 5px;
     font-size: 15px;
 }

 .spec-value {
     color: #333;
     font-size: 15px;
     line-height: 1.4;
 }

 /* ✅ Mobile Friendly */
 @media (max-width: 576px) {
     .spec-item {
         padding: 12px 15px;
     }

     .spec-name {
         font-size: 14px;
     }

     .spec-value {
         font-size: 14px;
     }
 }