/* Reset and Base */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Hero Section - Global */
.hero-bg-wrap {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg-img {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  filter: brightness(0.60);
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(4, 200, 196, 0.22) 0%, rgba(20, 33, 61, 0.60) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding-top: 0;
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
}
.hero-content h1, .hero-content p {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
/* Hero Content Buttons */
.hero-content .btn,
.hero-content .btn1 {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Primary Button (White with Dark Text) */
.hero-content .btn {
    color: #14213d;
    background-color: #ffffff;
}

.hero-content .btn:hover {
    color: #ffffff;
    background-color: #0bb8bb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 184, 187, 0.4);
}

/* Secondary Button (Teal) */
.hero-content .btn1 {
    color: #ffffff;
    background-color: #0bb8bb;
}

.hero-content .btn1:hover {
    color: #ffffff;
    background-color: #14213d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 33, 61, 0.4);
}

/* Button Icons */
.hero-content .btn i,
.hero-content .btn1 i {
    margin-right: 10px;
    font-size: 1.1em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Icon Animation on Hover */
.hero-content .btn:hover i {
    transform: scale(1.15);
}

.hero-content .btn1:hover i {
    transform: translateY(-2px);
}

/* Spacing between buttons */
.hero-content .btn,
.hero-content .btn1 {
    margin: 8px 10px;
}

/* Active/Focus States */
.hero-content .btn:active,
.hero-content .btn1:active {
    transform: translateY(-1px);
}

.hero-content .btn:focus,
.hero-content .btn1:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}


.hero-content a {
  font-size: 16px;
}

/* Features Section */
.features-section, .features-section .container-fluid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.feature-img-1 {
  background: url('../images/cehmical2.jpg') center center/cover no-repeat;
}
.feature-img-2 {
  background: url('../images/auto.jpg') center center/cover no-repeat;
}
.feature-img-3 {
  background: url('../images/chemical.jpg') center center/cover no-repeat;
}
.row.g-0 {
  align-items: stretch;
}
.feature-block {
  position: relative;
  min-height: 300px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.block-overlay-1 { background: rgba(0, 0, 47, 0.80); transition: background 0.3s; }
.block-overlay-2 { background: rgba(5, 1, 114, 0.70); transition: background 0.3s; }
.block-overlay-3 { background: rgba(2, 121, 165, 0.70); transition: background 0.3s; }
.feature-block:hover .block-overlay-1 { background: rgba(204, 173, 1, 0.80); }
.feature-block:hover .block-overlay-2 { background: rgba(204, 173, 1, 0.80); }
.feature-block:hover .block-overlay-3 { background: rgba(204, 173, 1, 0.80); }
.feature-block > *:not(.block-overlay) {
  position: relative;
  z-index: 2;
}
.feature-block h5, .feature-block p {
  color: #ffffff;
}
.feature-block h5 {
  font-size: 25px;
}

/* Products Section */
/* Products Section */
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header */
.section-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-badge i {
    font-size: 2rem;
    color: #fff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #14213d;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(46, 196, 182, 0.15);
    border-color: #2ec4b6;
}

/* Product Image Wrapper */
.product-img-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f3f9, #e9ecef);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.12);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 33, 61, 0) 0%, rgba(20, 33, 61, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    background: #2ec4b6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}

.view-btn:hover {
    background: #fff;
    color: #14213d;
    transform: translateY(-3px);
}

.view-btn i {
    margin-right: 6px;
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    color: #14213d;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: #2ec4b6;
}

.product-category {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* View All Button */
.btn-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #14213d, #0f1729);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(20, 33, 61, 0.2);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 196, 182, 0.3);
    color: #fff;
}

.btn-view-all i {
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    .product-img-wrap {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    .product-img-wrap {
        height: 280px;      /* mobile height */
    }

    .product-img-wrap img {
        object-fit: fill;  /* crop edges, but looks good on tall cards */
    }
}

/* Header & Navigation */
.header-container, .main-menu-wrapper, .navbar, .social-icons {
  position: relative;
  z-index: 2100 !important;
}
.navbar-toggler {
  z-index: 3100 !important;
  position: relative;
  border: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28213, 90, 0, 0.7%29' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}
.custom-header-bar {
  
  display: flex;
  align-items: center;
}
.logo img {
  width: auto;
  height: 50px;
}

/* Contact & Social */
.header-contact-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1rem;
  white-space: nowrap;
}
.header-contact {
  font-size: 1rem;
  text-align: right;
  margin-bottom: 0.25rem;
}
.social-icons {
  justify-content: flex-end;
  display: flex;
  gap: 16px;
  font-size: 1.3rem;
}
.social-icons a {
  color: #ffffff;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.social-icons a:first-child {
  margin-left: 0;
}
.social-icons a:hover {
  color: #0bb8bb;
}
.contact-email, .contact-phone {
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  transition: color 0.2s;
}
.contact-email:hover, .contact-phone:hover {
  color: #0bb8bb;
  text-decoration: none;
}

/* Main Menu */
.main-menu-wrapper {
  background: #fff;
  border-radius: 25px;
  padding: 12px 55px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  display: inline-block;
  margin-top: 30px;
  margin-left: 50px;
  flex-grow: 1;
  display: flex;
  max-width: 750px;
  justify-content: center;
}
.main-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-menu .nav-link {
  color: #2d3142;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.main-menu .nav-link:hover, .main-menu .nav-link.active {
  background: #e5f0f2;
  color: #14213d;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 18px;
  padding: 6px 0;
  box-shadow: 0 6px 30px rgba(20,33,61,0.08);
  min-width: 220px;
  background: #fff;
}
.dropdown-menu .dropdown-item {
  font-weight: 500;
  color: #2d3142;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
  margin: 2px 6px;
  padding: 8px 18px;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item.active {
  background: #e5f0f2;
  color: #14213d;
}

/*about*/
/* About Section Styling */
.about {
  position: relative;
  background-image: url('../images/valve.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates parallax effect */
  padding: 80px 0;
}

/* Semi-transparent overlay for readability */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 248, 248, 0.832); /* White overlay with 92% opacity */
  z-index: 1;
}
.about .container {
  position: relative;
  z-index: 2;
}
.about h2 {
  color: #14213d;
  font-size: 2.5rem;
}

.about p.lead {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}


/* Stat Items */
.stat-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px 10px !important;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid #e5f0f2;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(20, 33, 61, 0.15);
  background: rgba(255, 255, 255, 1);
}

.stat-item h3 {
  color: #14213d !important;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Image Styling */
.about-images img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.about-images img:hover {
  transform: scale(1.03);
}



/* Desktop: Dropdown hover */
@media (min-width: 768px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar-nav .dropdown-toggle::after {
    transition: transform 0.2s;
  }
  .navbar-nav .dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .header-contact-social-mobile {
    display: none !important;
  }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  /* FIX: Mobile hero - match image height to container */
  .hero-bg-wrap {
    min-height: 90vh !important;
  }
  .hero-bg-img {
    height: 90vh;
  }
  .hero-bg-overlay {
    height: 90vh;
  }
  .hero-content {
    top: 80px !important;
    bottom: auto !important;
  }
  .hero-content h1 {
    font-size: 30px;
    font-weight: 700;
    padding: 1px;
  }
  
  /* Mobile Menu Overlay */
  .navbar-collapse.show {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.3) !important;
    z-index: 3000 !important;
    overflow-y: auto !important;
    padding-top: 180px !important;
    display: block !important;
  }
  .navbar-collapse.show {
    display: block !important;
  }
  
  /* FIX: Keep hamburger visible when menu is open */
.navbar-toggler {
    position: relative!important;
    top: 20px !important;
    right: 20px !important;
    z-index: 3100 !important;
    background: #fff !important;
    border: 2px solid #14213d !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 123, 255, 1%29' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E") !important;
  }
  
  .main-menu-wrapper, .navbar-nav {
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .main-menu {
    width: 93vw !important;
    margin: 0 auto !important;
    background: #fff !important;
    border-radius: 24px !important;
    padding: 18px 0 !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
  }
  .main-menu li, .main-menu .nav-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .main-menu .nav-link {
    color: #2d3142;
    background: transparent;
    width: 90vw;
    margin: 2px auto;
    text-align: center;
    border-radius: 18px;
    font-size: 1.18rem;
    padding: 12px 0;
  }
  .main-menu .nav-link:hover, .main-menu .nav-link.active {
    color: #14213d !important;
    background: #e5f0f2 !important;
  }
  
  /* Mobile Dropdown */
  .navbar-nav .dropdown-menu {
    position: static !important;
    width: 91vw !important;
    margin: 4px auto !important;
    box-shadow: none !important;
    border-radius: 18px !important;
    background: #fff !important;
    padding: 8px 0 !important;
  }
  .dropdown-menu .dropdown-item {
    border-radius: 12px;
    margin: 2px 4vw;
    padding: 10px 0;
    text-align: center;
    font-size: 1.08rem;
  }
  
  /* Mobile Contact/Social at top */
  .header-contact-social {
    display: none !important;
  }
  .header-contact-social-mobile {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 10px;
    z-index: 3001;
  }
  .header-contact-social-mobile .header-contact {
    padding: 0 6px 0 0;
    text-align: center;
    font-size: 0.92rem;
    margin-bottom: 0;
  }
  .header-contact-social-mobile .contact-email, .header-contact-social-mobile .contact-phone {
    display: inline-block;
    margin-bottom: 0;
    font-size: 0.80rem;
    color: #ffffff;
  }
  .header-contact-social-mobile .social-icons {
    margin-top: 0;
    gap: 0.7rem;
  }
  .header-contact-social-mobile .social-icons a {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 !important;
  }
  
  /* Mobile Layout Adjustments */
  .logo {
    margin-bottom: 10px;
    
    justify-content: center !important;
  }
  .feature-block {
    min-height: 180px;
  }
  
  .social-icons {
    justify-content: center !important;
  }
}


/* Gallery Slider Section */
.gallery-slider {
    background: #f8f9fa;
}

/* Add gap between containers */
.gallery-slider .col-lg-5 {
    padding-right: 30px; /* Gap on desktop */
}

/* Reduce overall width - center the carousels */
.gallery-slider .row {
    max-width: 1200px; /* Reduce from full container width */
    margin: 0 auto;
}

/* Small Carousel (Left) */
/* Small Carousel (Left) */
/* Small Carousel (Left) */
#carouselSmall {
    max-width: 500px;
    margin: 0 auto;
}

.carousel-img-small {
    height: 320px;
    object-fit: contain;
    /* Change this background */
    background: linear-gradient(110deg, #fafdfa 0%, #d1fdf9 100%);
    /* OR use a solid color: background: #f0f4f8; */
    border-radius: 12px;
    padding: 20px;
}

/* Large Carousel (Right) */
#carouselLarge {
    max-width: 600px;
    margin: 0 auto;
}

.carousel-img-large {
    height: 420px;
    object-fit: contain;
    /* Change this background */
    background: linear-gradient(110deg, #f3f3f3 0%, #e3fff7 100%);
    /* OR use a solid color: background: #e8f5e9; */
    border-radius: 10px;
    padding: 25px;
}



/* Indicators */
.carousel-indicators {
    margin-bottom: -15px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #14213d;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}



/* Mobile Responsive */
@media (max-width: 991px) {
    .gallery-slider .col-lg-5 {
        padding-right: 15px;
        margin-bottom: 30px; /* Gap between stacked carousels on mobile */
    }
    
    .carousel-img-small {
        height: 280px;
    }
    
    .carousel-img-large {
        height: 350px;
    }
    
    #carouselSmall,
    #carouselLarge {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .carousel-img-small {
        height: 250px;
        padding: 15px;
    }
    
    .carousel-img-large {
        height: 300px;
        padding: 15px;
    }
}

/* Why Us Section */
.why-us {
    background: #14213d;
    position: relative;
    overflow: hidden;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Feature Icon */
.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
}

/* Feature Text */
.feature-text h5 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* CTA Box (Right Side) */
.cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-box .btn-light {
    background: #fff;
    color: #14213d;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    border-radius: 12px;
}

.cta-box .btn-light:hover {
    background: #2ec4b6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 196, 182, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-card {
        margin-bottom: 0;
    }
    .cta-box {
        margin-top: 30px;
    }
}





/* ========================================
   PRELOADER
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14213d 0%, #0f1729 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    width: 100px;
    height: 100px;
}

/* Spinning Circle */
.spinner {
    width: 100px;
    height: 100px;
    border: 5px solid rgba(46, 196, 182, 0.15);
    border-top: 5px solid #2ec4b6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* Logo Inside Spinner */
.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 45px;
    height: auto;
    max-width: 100%;
}

/* Pulse Animation for Logo */
.pulse {
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.85; 
    }
}
/* Loading Text */
.loading-text {
    color: #ffffff; /* Pure white */
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 2px;
}

/* Animated Dots */
.dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}


/* Footer */
.footer {
    background: #14213d;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Logo */
.footer-logo {
    max-width: 150px;
    height: auto;
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer Titles */
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #2ec4b6;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links li a i {
    font-size: 0.75rem;
    margin-right: 10px;
    color: #2ec4b6;
}

.footer-links li a:hover {
    color: #2ec4b6;
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #2ec4b6;
    transform: translateY(-3px);
}

/* Contact Items */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    color: #2ec4b6;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2ec4b6;
}

/* Footer Map */
.footer-map {
    width: 100%;
    height: 350px;
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.3s;
}

.footer-map:hover {
    filter: grayscale(0%) brightness(1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Floating Buttons */
.back-to-top,
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

/* Back to Top Button */
.back-to-top {
    bottom: 90px;
    right: 30px;
    background: #14213d;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2ec4b6;
    transform: translateY(-5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background: #25d366;
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-section {
        margin-bottom: 30px;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links li a,
    .contact-item {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}


/* Facilities Section */
/* Facilities Section */
.facilities-section {
    background: #ffffff;
    position: relative;
}

/* Section Intro */
.section-intro {
    padding-right: 30px;
}

.intro-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.intro-badge i {
    font-size: 2rem;
    color: #fff;
}

.intro-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #2ec4b6;
}

.stat-box h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Service Card - Modern Style */
.service-card {
    position: relative;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #2ec4b6, #14213d);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    border-color: #2ec4b6;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 196, 182, 0.15);
}

/* Service Number */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: #f8f9fa;
    line-height: 1;
    transition: all 0.3s;
}

.service-card:hover .service-number {
    color: rgba(46, 196, 182, 0.1);
    transform: scale(1.2);
}

/* Service Icon */
.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1), rgba(11, 187, 173, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: #2ec4b6;
    transition: all 0.3s;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    transform: rotate(5deg) scale(1.1);
}

.service-card:hover .service-icon-wrapper i {
    color: #fff;
}

/* Service Title */
.service-title {
    color: #14213d;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Service Description */
.service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Link */
.service-link {
    display: flex;
    justify-content: flex-end;
}

.service-link a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14213d;
    text-decoration: none;
    transition: all 0.3s;
}

.service-link a:hover {
    background: #2ec4b6;
    color: #fff;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .intro-stats {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .intro-stats {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .service-card {
        padding: 25px 20px;
    }
    .service-number {
        font-size: 2rem;
    }
}


.industries-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #f8f9fa;
}

.marquee-content {
    display: flex;
    gap: 0; /* Remove gaps */
    animation: scroll 28s linear infinite;
    width: fit-content;
}

/* Industry item = just the image block now */
.industry-item {
    width: 350px;
    min-width: 230px;
    height: 380px;
    position: relative;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

/* The rectangular image with text overlay */
.industry-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay label on top right */
.industry-name {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 18px 18px 0 0;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(20,33,61,0.85) 60%, rgba(46,196,182,0.95) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 14px 0 0 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    pointer-events: none;
}

/* Hover effect for images (optional) */
.industry-image-wrapper img:hover {
    filter: brightness(90%) blur(0.5px);
    transform: scale(1.03);
    transition: all 0.3s;
}

/* --- BIGGER ON MOBILE! --- */
@media (max-width: 991px) {
    .industry-item {
        width: 150px;
        min-width: 150px;
        height: 200px;
    }
    .industry-name {
        font-size: 1rem;
        padding: 7px 14px;
        margin: 10px 10px 0 0;
    }
}
@media (max-width: 575px) {
    .industry-item {
        width: 70vw;     /* Almost full device width */
        min-width: 70vw;
        height: 50vw;    /* Nice aspect ratio */
        max-width: 350px;
        max-height: 190px;
    }
    .marquee-content {
        gap: 0;
    }
    .industry-image-wrapper img {
        border-radius: 1px;
    }
    .industry-name {
        font-size: 1rem;
        padding: 6px 13px;
        margin: 7px 7px 0 0;
    }
}

/* Marquee scroll animation remains the same */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ========================================
   PAGE HERO SECTION (For About, Services, etc.)
   Similar to homepage hero but with solid color
   ======================================== */
/* ========================================
   PAGE HERO SECTION (For About, Services, etc.)
   With Background Image + Dark Overlay
   ======================================== */

.page-hero-wrap {
    position: relative;
    width: 100vw;
    min-height: 65vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Background Image */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-about .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}

.hero-contact .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}
.hero-services .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}
.hero-products1 .page-hero-bg{
    background-image: url('../images/ballvalve.png');
    background-size: cover   ;
}
.hero-products2 .page-hero-bg {
    background-image: url('../images/ballvalve.png');
}
.hero-products3 .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}
.hero-products4 .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}
.hero-products5 .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}
.hero-products6 .page-hero-bg {
    background-image: url('../images/aboutus.avif');
}

.hero-faq .page-hero-bg {
    background-image: url('../images/7879.jpg');
    background-size: cover;
}
/* Dark Gradient Overlay (keeps text readable) */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(20, 33, 61, 0.85) 0%, 
        rgba(15, 23, 41, 0.90) 100%
    );
    z-index: 2;
}

/* Page Hero Content (title and breadcrumb) */
.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    padding-top: 40px;
}

.page-hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 800;
    padding-top: 150px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Hero Tagline (subtitle) */
.hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Styling */
.page-hero-content .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
}

.page-hero-content .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-content .breadcrumb-item a {
    color: #2ec4b6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.page-hero-content .breadcrumb-item a:hover {
    color: #ffffff;
}

.page-hero-content .breadcrumb-item.active {
    color: #ffffff;
}

.page-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .page-hero-content h1 {
        font-size: 3rem;
        padding-top: 100px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .page-hero-wrap {
        min-height: 40vh;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
        padding-top: 80px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .page-hero-content .breadcrumb {
        font-size: 0.9rem;
    }
}


/* ========================================
   OUR BEGINNING SECTION
   ======================================== */
.our-beginning-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}


/* Decorative Background Element */
.our-beginning-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0; /* Behind everything */
}

/* ========== LEFT SIDE - IMAGE & STATS ========== */

.beginning-image-wrapper {
    position: relative;
}

.main-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 450px; /* Limit logo size */
    margin: 0 auto; /* Center it */
}

.main-image-box img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: 24px; /* Round corners on image itself */
}

.main-image-box:hover img {
    transform: scale(1.05);
}

/* Year Badge - Floating */
.year-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #14213d, #0f1729);
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 10px 40px rgba(20, 33, 61, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10; /* Above image */
}

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

.year-badge-content {
    text-align: center;
}

.est-text {
    display: block;
    color: #2ec4b6;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.year-number {
    display: block;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 450px; /* Match logo width */
    margin: 20px auto 0; /* Center and add top spacing */
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    border-color: #2ec4b6;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 196, 182, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1), rgba(46, 196, 182, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #2ec4b6;
}

.stat-content h4 {
    color: #14213d;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-content p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

/* ========== RIGHT SIDE - CONTENT ========== */

.beginning-content {
    position: relative;
    z-index: 5; /* Above decorative background */
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(46, 196, 182, 0.2);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
    line-height: 1.3;
    position: relative;
    z-index: 5; /* Ensure heading is above everything */
}

/* Story Box (1996 Timeline) */
.story-box {
    background: linear-gradient(135deg, #14213d 0%, #0f1729 100%);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.story-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #2ec4b6;
}

.story-year {
    color: #2ec4b6;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.story-box .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

/* Key Points */
.key-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6c757d;
}

.key-point i {
    color: #2ec4b6;
    font-size: 1.2rem;
}

/* CTA Button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #14213d, #0f1729);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 33, 61, 0.4);
    color: #fff;
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .main-image-box {
        max-width: 350px;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .year-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .year-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .main-image-box {
        max-width: 300px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .year-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
}


/* ========================================
   VISION & MISSION SECTION
   ======================================== */

.vision-mission-section {
    background: #ffffff;
    position: relative;
}

/* Section Title */
.vision-mission-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
}

.vision-mission-section .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Vision & Mission Cards */
.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* RIGHT BORDER instead of top */
.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2ec4b6, #0bbbad);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 196, 182, 0.15);
    border-color: #2ec4b6;
}

/* Vision Card - Light Blue/Teal Right Border */
.vision-card::before {
    background: linear-gradient(180deg, #2ec4b6, #0bbbad);
}

/* Mission Card - Dark Blue Right Border */
.mission-card::before {
    background: linear-gradient(180deg, #14213d, #0f1729);
}

/* Icon Wrapper */
.vm-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1), rgba(46, 196, 182, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon-wrapper {
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    transform: scale(1.1) rotate(5deg);
}

.vm-icon-wrapper i {
    font-size: 2.5rem;
    color: #2ec4b6;
    transition: color 0.3s ease;
}

.vm-card:hover .vm-icon-wrapper i {
    color: #fff;
}

/* Mission card icon different color */
.mission-card .vm-icon-wrapper {
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.1), rgba(20, 33, 61, 0.2));
}

.mission-card .vm-icon-wrapper i {
    color: #14213d;
}

.mission-card:hover .vm-icon-wrapper {
    background: linear-gradient(135deg, #14213d, #0f1729);
}

.mission-card:hover .vm-icon-wrapper i {
    color: #fff;
}

/* Card Title */
.vm-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 20px;
}

/* Card Description */
.vm-description {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Points List */
.vm-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-points li {
    color: #6c757d;
    font-size: 1rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-points li i {
    color: #2ec4b6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mission-card .vm-points li i {
    color: #14213d;
}

/* Responsive */
@media (max-width: 991px) {
    .vm-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .vision-mission-section .section-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .vision-mission-section .section-heading {
        font-size: 1.8rem;
    }
    
    .vm-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .vm-icon-wrapper i {
        font-size: 2rem;
    }
}


/* ========================================
   OUR COMMITMENT SECTION
   ======================================== */

.commitment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Section Title */
.commitment-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
}

.commitment-section .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Commitment Cards */
.commitment-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 196, 182, 0.12);
    border-color: #2ec4b6;
}

/* Large Number Background */
.commitment-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(46, 196, 182, 0.05);
    line-height: 1;
    z-index: 0;
    transition: all 0.4s ease;
}

.commitment-card:hover .commitment-number {
    color: rgba(46, 196, 182, 0.1);
    transform: scale(1.1);
}

/* Icon Wrapper */
.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.4);
}

.commitment-icon i {
    font-size: 2rem;
    color: #fff;
}

/* Card Title */
.commitment-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* Card Description */
.commitment-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
    .commitment-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .commitment-section .section-heading {
        font-size: 2.2rem;
    }
    
    .commitment-number {
        font-size: 6rem;
    }
}

@media (max-width: 767px) {
    .commitment-section .section-heading {
        font-size: 1.8rem;
    }
    
    .commitment-icon {
        width: 60px;
        height: 60px;
    }
    
    .commitment-icon i {
        font-size: 1.5rem;
    }
    
    .commitment-number {
        font-size: 5rem;
    }
}



/* ========================================
   PARTNERSHIP SECTION
   ======================================== */

.partnership-section {
    background: #ffffff;
    position: relative;
}

/* Section Heading */
.partnership-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
}

.lead-text {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.7;
}

/* Partnership Features (Left Side) */
.partnership-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.partnership-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1), rgba(46, 196, 182, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1.3rem;
    color: #2ec4b6;
}

.feature-content-small h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 5px;
}

.feature-content-small p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #14213d, #0f1729);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 33, 61, 0.4);
    color: #fff;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #14213d;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #14213d;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: #14213d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 33, 61, 0.3);
}

/* Benefits Box (Right Side) */
.benefits-box {
    background: linear-gradient(135deg, #14213d 0%, #0f1729 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(20, 33, 61, 0.2);
}

.benefits-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(46, 196, 182, 0.2);
}

.benefits-title h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefits-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(46, 196, 182, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: #2ec4b6;
}

.benefit-text h6 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Quote Box */
.quote-box {
    background: rgba(46, 196, 182, 0.1);
    border-left: 4px solid #2ec4b6;
    border-radius: 12px;
    padding: 20px 25px;
    position: relative;
}

.quote-box i {
    color: #2ec4b6;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quote-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .partnership-section .section-heading {
        font-size: 2.2rem;
    }
    
    .benefits-box {
        padding: 30px;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .partnership-section .section-heading {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-box {
        padding: 25px 20px;
    }
    
    .benefits-title h3 {
        font-size: 1.6rem;
    }
}


/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-section {
    background: #f8f9fa;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #14213d;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #14213d;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #2ec4b6;
    box-shadow: 0 0 0 0.2rem rgba(46, 196, 182, 0.15);
}

textarea.form-control {
    resize: vertical;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
    cursor: pointer;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #14213d, #0f1729);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 33, 61, 0.4);
}

/* Contact Info Cards (NO BORDERS) */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 8px;
}

.contact-card-content a {
    color: #2ec4b6;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.contact-card-content a:hover {
    color: #14213d;
}

.get-directions {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Business Hours Box */
.business-hours-box {
    background: linear-gradient(135deg, #14213d, #0f1729);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
}

.business-hours-box h5 {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours-box h5 i {
    color: #2ec4b6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.hours-item span:last-child {
    font-weight: 700;
}

/* Map Section */
.map-section {
    margin-top: 0;
}

.map-section iframe {
    width: 100%;
    filter: grayscale(20%);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    .contact-card-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .contact-card-icon {
        margin: 0 auto;
    }
}
/* Form Status Messages */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.alert-success {
    background: rgba(46, 196, 182, 0.1);
    border: 2px solid #2ec4b6;
    color: #0bbbad;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #dc3545;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}



/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Featured Service Section */
.featured-service-section {
    background: #f8f9fa;
}

.featured-service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.featured-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-service-content {
    padding: 50px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-service-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2ec4b6;
    margin-bottom: 5px;
}

.p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Services List Section */
.services-list-section {
    background: #fff;
}

.services-list-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
}

.services-list-section .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 25px;
}

/* Horizontal Service Cards */
.service-card-horizontal {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-horizontal:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.15);
}

/* Service Number */
.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(46, 196, 182, 0.08);
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card-horizontal:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

/* Service Content */
.service-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 10px;
}

.service-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.services-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px; /* Add horizontal padding */
}
.service-card-horizontal {
    background: #fff;
    border-radius: 16px;
    padding: 35px 40px; /* Increased padding */
    display: flex;
    align-items: center;
    gap: 30px; /* More gap */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



/* CTA Section */
.services-cta-section {
    background: linear-gradient(135deg, #14213d 0%, #0f1729 100%);
}

.cta-box {
    padding: 50px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #14213d;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-cta-white:hover {
    background: #2ec4b6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 196, 182, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .featured-service-content {
        padding: 40px 30px;
    }
    
    .featured-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .service-number {
        width: auto;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .featured-service-image img {
        min-height: 250px;
    }
    
    .featured-service-content {
        padding: 30px 20px;
    }
    
    .featured-service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-card-horizontal {
        padding: 25px 20px;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}



/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

/* Product Category Section */
.product-category-section {
    position: relative;
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 15px;
}

.category-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(46, 196, 182, 0.15);
}

/* Product Image Container */
.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 33, 61, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* View Button */
.view-btn {
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(46, 196, 182, 0.5);
}

.view-btn i {
    font-size: 1.2rem;
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
    background-color: #f4fffe;
}

.product-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 8px;
}

.product-info p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: #2ec4b6;
    transform: rotate(90deg);
}

/* Lightbox Content */
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Lightbox Caption */
.lightbox-caption {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 15px 30px;
    background: rgba(46, 196, 182, 0.2);
    border-radius: 30px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 250px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


.header-contact .phone{
    color: white;
    text-decoration: none;
}



/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
}

.faq-section .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Modern Accordion Styling */
.faq-accordion {
    border: none;
}

.faq-accordion .accordion-item {
    background: #fff;
    border: none;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.12);
    transform: translateY(-2px);
}

/* Accordion Button (Question) */
.faq-accordion .accordion-button {
    background: #fff;
    color: #14213d;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #2ec4b6 0%, #0bbbad 100%);
    color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button i {
    font-size: 1.5rem;
    color: #2ec4b6;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: #fff;
    transform: rotate(180deg);
}

/* Remove default arrow, use custom icon */
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #2ec4b6;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: #fff;
    transform: rotate(180deg);
}

/* Focus state */
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Accordion Body (Answer) */
.faq-accordion .accordion-body {
    padding: 25px 30px 30px 70px;
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
    background: #fff;
}

/* FAQ CTA Box */
.faq-cta {
    background: linear-gradient(135deg, #14213d 0%, #0f1729 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(20, 33, 61, 0.2);
}

.faq-cta h4 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
}

.btn-faq-contact:hover {
    background: #fff;
    color: #14213d;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
    .faq-section .section-heading {
        font-size: 2rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 20px 20px;
    }
    
    .faq-accordion .accordion-button i {
        font-size: 1.2rem;
        margin-right: 10px !important;
    }
    
    .faq-accordion .accordion-body {
        padding: 20px 20px 25px 20px;
        font-size: 0.95rem;
    }
    
    .faq-cta {
        padding: 35px 25px;
    }
    
    .faq-cta h4 {
        font-size: 1.6rem;
    }
}
/* ========================================
   ENQUIRY POPUP MODAL
   ======================================== */

.enquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 33, 61, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.enquiry-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Popup Container */
.enquiry-popup-container {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.1);
    border: none;
    border-radius: 50%;
    color: #dc3545;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup-close:hover {
    background: #dc3545;
    color: #fff;
    transform: rotate(90deg);
}

/* Popup Header */
.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(46, 196, 182, 0);
    }
}

.popup-icon i {
    font-size: 2rem;
    color: #fff;
}

.popup-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 10px;
}

.popup-header p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Popup Form */
.popup-form .form-group {
    margin-bottom: 20px;
}

.popup-form label {
    font-weight: 600;
    color: #14213d;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.popup-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.popup-form .form-control:focus {
    border-color: #2ec4b6;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(46, 196, 182, 0.15);
}

.popup-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.btn-popup-submit {
    width: 100%;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
    margin-top: 10px;
}

.btn-popup-submit:hover {
    background: linear-gradient(135deg, #14213d, #0f1729);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(20, 33, 61, 0.4);
}

/* Responsive */
@media (max-width: 767px) {
    .enquiry-popup-container {
        padding: 30px 25px;
        max-width: 95%;
    }
    
    .popup-header h3 {
        font-size: 1.6rem;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: 15px;
        right: 15px;
    }
}

/* Scrollbar for popup content */
.enquiry-popup-container::-webkit-scrollbar {
    width: 6px;
}

.enquiry-popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.enquiry-popup-container::-webkit-scrollbar-thumb {
    background: #2ec4b6;
    border-radius: 10px;
}



/* ISO block background spacing */
.iso-cert-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

/* Bigger card */
.iso-badge {
    background: #fff;
    padding: 30px 40px;              /* more padding */
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;                /* wider */
    min-height: 320px;               /* taller */
    transform: translateY(0);
    transition: all 0.3s ease;
}

.iso-badge:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 70px rgba(46, 196, 182, 0.25);
}

/* Bigger image */
.iso-img {
    width: 190px;                    /* increase from ~80–100px */
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

/* Bigger text */
.iso-badge p {
    font-size: 1.05rem;
    font-weight: 700;
    color: #14213d;
    margin: 0;
    text-align: center;
}

.iso-badge small {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
}

/* Optional: center whole block tighter above map */
.iso-cert-section h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 25px;
}



/*quality html page*/
/* ========================================
   QUALITY PAGE
   ======================================== */

/* Hero uses same page-hero-wrap styles as other pages */

/* Quality main section */
.quality-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.quality-section .section-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #14213d;
}

/* Two-column layout */
.quality-section .quality-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    background: #fff;
}

.quality-section .quality-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right content */
.quality-section .quality-content {
    padding-left: 30px;
}

.quality-section .quality-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 15px;
}

.quality-section .quality-content p {
    color: #6c757d;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Bullet list */
.quality-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.quality-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #14213d;
    font-weight: 500;
    font-size: 0.98rem;
}

/* Badge / label */
.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Button (reuse style if you already have) */
.quality-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.35);
    transition: all 0.3s ease;
}

.quality-btn:hover {
    background: linear-gradient(135deg, #14213d, #0f1729);
    color: #fff;
    transform: translateY(-2px);
}

/* ISO Card (if you show cert again on this page) */
.quality-iso-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 25px 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.quality-iso-card img {
    width: 200px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.quality-iso-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 0;
}

.quality-iso-card span {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Decorative background */
.quality-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.18) 0%, transparent 70%);
    z-index: 0;
}

.quality-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .quality-section .quality-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .quality-section .section-heading,
    .quality-section .quality-content h2 {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .quality-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .quality-section .quality-content h2 {
        font-size: 1.7rem;
    }

    .quality-iso-card img {
        width: 160px;
    }
}


/* ========================================
   DISTRIBUTORS PAGE CONTENT
   ======================================== */

/* Hero background for distributors page */
.hero-distributors .page-hero-bg {
    background-image: url('../images/ftlok-distributor.avif');
    background-size: cover;
}

/* Intro Section */
.distributor-intro {
    background: #fff;
}

.distributor-intro .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #14213d;
    line-height: 1.4;
}

.distributor-intro .lead-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

/* Why Partner Section */
.why-partner-section .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14213d;
}

.why-partner-section .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Benefit Cards */
.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(46, 196, 182, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 12px;
}

.benefit-content p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Looking For Section */
.looking-for-section {
    background: #fff;
}

.looking-for-section .section-heading {
    font-size: 2.3rem;
    font-weight: 700;
    color: #14213d;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.criteria-list i {
    font-size: 1.5rem;
    color: #2ec4b6;
    flex-shrink: 0;
    margin-top: 2px;
}

.criteria-list span {
    color: #14213d;
    font-weight: 500;
    line-height: 1.6;
}

.looking-for-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Application Form Section */
.application-form-section {
    background: #f8f9fa;
}

.form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
    font-size: 1rem;
}

.distributor-form .form-label {
    font-weight: 600;
    color: #14213d;
    margin-bottom: 8px;
}

.distributor-form .form-control,
.distributor-form .form-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.distributor-form .form-control:focus,
.distributor-form .form-select:focus {
    border-color: #2ec4b6;
    box-shadow: 0 0 0 0.2rem rgba(46, 196, 182, 0.15);
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, #2ec4b6, #0bbbad);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.3);
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #14213d, #0f1729);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(20, 33, 61, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .distributor-intro .section-heading {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .looking-for-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .why-partner-section .section-heading {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 1.7rem;
    }
}
