/* Highlights Carousel Sliding Fix */
.highlights-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.highlights-carousel {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.highlights-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.highlights-slide.active {
    display: block;
    opacity: 1;
}
/* Product label below image in carousel */
.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-logo {
    display: block;
    margin: 0 auto;
}
.product-label {
    margin-top: 12px;
    font-size: 1rem;
    color: #222;
    text-align: center;
    font-weight: 500;
    min-height: 2.2em;
    line-height: 1.2;
    word-break: break-word;
}
.equipment-cards {
    max-height: 70vh;
    overflow-y: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: #4caf50 #f0f0f0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3.5rem 3rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 3.5rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.slideshow-img.slide-left {
    animation: slideLeft 0.7s cubic-bezier(0.4,0,0.2,1);
}

@keyframes slideLeft {
    0% {
        opacity: 0.7;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.modern-nav-btn {
    background: rgba(255,255,255,0.85);
    border: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    color: #4caf50;
    font-size: 1.7rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    z-index: 2;
}
.modern-nav-btn:hover, .modern-nav-btn:focus {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
}
.nav-arrow {
    font-weight: bold;
    font-size: 1.3rem;
    pointer-events: none;
}
.slideshow-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}
.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfd8dc;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(44,62,80,0.10);
}
.slideshow-dot.active {
    background: #4caf50;
    transform: scale(1.2);
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}
.slideshow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    transition: opacity 0.3s;
}
.slideshow-prev, .slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44,62,80,0.7);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 6px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.slideshow-prev:hover, .slideshow-next:hover {
    background: #4caf50;
}
.slideshow-prev {
    left: 10px;
}
.slideshow-next {
    right: 10px;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
}

@media (max-width: 600px) {
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -2px 0 24px rgba(0,0,0,0.12);
        display: flex;
        flex-direction: column;
        padding-top: 24px;
    }
    .mobile-menu-overlay.active {
        transform: translateX(0);
    }
    .mobile-menu-close {
        position: absolute;
        top: 18px;
        right: 24px;
        font-size: 2rem;
        color: #222;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
    }
    .mobile-menu-list {
        width: 100%;
        margin: 0;
        padding: 0 0 24px 0;
        list-style: none;
        flex: 1;
        overflow-y: auto;
    }
    .mobile-menu-list > li {
        border-bottom: 1px solid #eee;
        padding: 0;
    }
    .mobile-menu-main {
        width: 100%;
        font-size: 1.1rem;
        padding: 18px 32px;
        background: #fff;
        color: #222;
        border: none;
        text-align: left;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 500;
    }
    .mobile-menu-main.active {
        background: #e8f5e8;
        color: #1b5e20;
    }
    .mobile-menu-sub {
        width: 100%;
        background: #f8f9fa;
        padding: 0;
        margin: 0;
        list-style: none;
        display: none;
        flex-direction: column;
        border-radius: 0 0 12px 12px;
        box-shadow: none;
    }
    .mobile-menu-main.active + .mobile-menu-sub {
        display: flex;
    }
    .mobile-menu-sub li {
        padding: 14px 48px;
        border-bottom: 1px solid #e0e0e0;
        color: #222;
        font-size: 1rem;
        background: none;
    }
    .mobile-menu-sub li:last-child {
        border-bottom: none;
    }
    .mobile-menu-sub a {
        color: inherit;
        text-decoration: none;
        display: block;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .nav-list {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
        .dropdown {
            width: 100%;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
                .dropdown-menu {
                    display: none;
                    position: static;
                    background: #f8f9fa;
                    box-shadow: none;
                    margin: 0;
                    border-radius: 0 0 12px 12px;
                    border: none;
                    padding: 0;
                    width: 100%;
                    left: 0;
                    transform: none;
                    opacity: 1;
                    visibility: visible;
                    z-index: 2;
                    overflow: visible;
                    max-height: none;
                }
                .dropdown.mobile-active .dropdown-menu {
                    display: block;
                }
                .dropdown-menu li {
                    padding: 14px 32px;
                    border-bottom: 1px solid #e0e0e0;
                    color: #222;
                    font-size: 1rem;
                    background: none;
                }
                .dropdown-menu li:last-child {
                    border-bottom: none;
                }
                .dropdown-menu a {
                    color: inherit;
                    text-decoration: none;
                    display: block;
                    width: 100%;
                    background: none;
                    border-radius: 0;
                    font-size: 1rem;
                    padding: 0;
                }
        .dropdown.mobile-active .dropdown-menu {
            display: block;
        }
    .dropdown-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    .dropdown-menu a {
        display: block;
        padding: 14px 24px 14px 32px;
        font-size: 1rem;
        margin: 0;
        background: transparent;
        border-radius: 8px;
        color: #222;
        box-shadow: none;
        border: none;
        text-align: left;
        transition: background 0.2s;
        position: relative;
        text-decoration: none;
    }
    .dropdown-menu a:hover {
        background: #e8f5e8;
        color: #1b5e20;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth page transitions */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-link:hover {
    transform: scale(1.05);
}

.nav {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #2e7d32;
    background: #f0f8f0;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 250px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #f0f0f0;
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.1));
}

.dropdown-menu li {
    margin: 0;
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
    color: #2e7d32;
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Modern Navbar Enhancements - Compact Version */
.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search Bar - More Compact */
.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-search:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    color: #333;
    padding: 4px 8px;
    font-size: 13px;
    width: 120px;
    outline: none;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: rgba(51, 51, 51, 0.7);
}

.search-input:focus {
    width: 160px;
}

.search-btn {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #2e7d32;
}

/* Products Section Search Bar */
.products-search {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.products-search {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    max-width: 550px;
    margin: 0 auto 30px;
}

.products-search:hover {
    border-color: #2e7d32;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
}

.products-search .search-input {
    border: none;
    background: transparent;
    color: #333;
    padding: 8px 12px;
    font-size: 16px;
    width: 450px;
    outline: none;
}

/* Mobile responsive for products search */
@media (max-width: 768px) {
    .products-search {
        max-width: 300px;
        padding: 6px 15px;
    }
    
    .products-search .search-input {
        width: 200px;
        font-size: 14px;
    }
    
    .products-search .search-btn {
        padding: 8px 12px;
    }
}

.products-search .search-input::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.products-search .search-btn {
    background: #2e7d32;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.products-search .search-btn:hover {
    background: #1b5e20;
    transform: translateY(-1px);
}

/* Search notification styles */
.search-notification {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 5px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation Actions - More Compact */
.nav-actions {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.action-btn {
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Call Now Button Style */
.call-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white !important;
    border: none;
}

.call-btn:hover {
    background: linear-gradient(135deg, #f57c00, #ef6c00);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.quote-btn {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.expand-btn {
    display: inline-block;
    background: #218838;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    margin: 8px 0 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    outline: none;
    text-align: center;
    text-decoration: none;
}

/* Enhanced Dropdown Menu Items with Icons */
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

.dropdown-menu a i {
    font-size: 12px;
    color: #4caf50;
    width: 14px;
    text-align: center;
}

/* Modern Icons in Navigation - Smaller */
.nav-list > li > a i {
    margin-right: 6px;
    font-size: 12px;
    color: #4caf50;
}

/* Compact Navigation List */
.nav-list > li > a {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 1200px) {

    .action-btn {
        padding: 8px 12px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
    }

    /* Call Now Button Style */
    .call-btn {
        background: linear-gradient(135deg, #ff9800, #f57c00);
        color: white;
        border: none;
    }

    .call-btn:hover {
        background: linear-gradient(135deg, #f57c00, #ef6c00);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
    }
    .hamburger {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-list.desktop-nav {
        display: flex;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Services Navigation */
.services-nav {
    background: #2e7d32;
    padding: 15px 0;
    position: relative;
}

.services-nav-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.services-nav-title {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-nav-title::before {
    content: "📋";
    font-size: 1.2rem;
}

.services-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.services-hamburger span {
    width: 20px;
    height: 2px;
    background: #ffd700;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.services-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.services-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.services-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.services-list {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.services-list a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.services-list a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    background: rgba(0,0,0,0.85);
}

.service-card:nth-child(1),
.supply-card {
    background-image: url('images/istockphoto-153734113-612x612.jpg');
}

.service-card:nth-child(2),
.calibration-card {
    background-image: url('images/technicianinstrument-technician-on-job-calibrate-600nw-1020417871.webp');
}

.service-card:nth-child(3),
.repair-card {
    background-image: url('images/focused-industrial-engineer-using-calibration-600nw-2462349429.webp');
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-icon i {
    font-size: 2.5rem;
    color: #2e7d32;
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 300;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.service-content p {
    color: white;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.4s ease 0.1s;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    max-width: 300px;
    letter-spacing: 0.5px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.4s ease 0.2s;
    max-width: 300px;
}

.service-features li {
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    letter-spacing: 0.5px;
}

.service-features li i {
    color: #66bb6a;
    margin-right: 12px;
    font-size: 1rem;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

.service-link {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.4s ease 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    letter-spacing: 0.5px;
    text-shadow: none;
}

.service-link:hover {
    background: #2e7d32;
    transform: translateY(27px) scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Show content on hover */
.service-card:hover .service-content p,
.service-card:hover .service-features,
.service-card:hover .service-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(240, 240, 240, 0.9), rgba(240, 240, 240, 0.9)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjZjVmNWY1Ii8+Cjwvc3ZnPgo=');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.contact-cta-content h3 {
    font-size: 2.2rem;
    color: #2e7d32;
    font-weight: bold;
    margin: 0;
}

.contact-cta-content h3 a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-cta-content h3 a:hover {
    color: #1b5e20;
    text-decoration: underline;
    cursor: pointer;
}

/* Featured Products Section */
.featured-products-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.featured-products-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.featured-products-section .container {
    position: relative;
    z-index: 2;
}

.featured-products-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.featured-products-section .section-header h2 {
    font-size: 2.8rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.featured-products-section .section-header p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2e7d32, #4caf50, #66bb6a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.featured-card:hover::before {
    transform: scaleX(1);
}

.featured-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    background: rgba(255, 255, 255, 0.98);
}

.featured-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.featured-card:hover .featured-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.featured-icon i {
    font-size: 2.2rem;
    color: white;
}

.featured-content h3 {
    font-size: 1.6rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.featured-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.featured-specs li {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 5px;
    position: relative;
}

.featured-specs li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #4caf50;
    border-radius: 50%;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.featured-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    color: white;
}

.featured-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.featured-btn:hover::after {
    transform: translateX(3px);
}

/* News & Blogs Section */
.news-blogs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-blogs-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-blogs-section .section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-blogs-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(46, 125, 50, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1b5e20;
    gap: 12px;
}

/* ===================================================================
 * UTILITY CLASSES FOR CLEANING UP INLINE STYLES
 * ================================================================== */

/* Address margin left for footer addresses */
.address-indent {
    margin-left: 20px;
}

/* Center justified content */
.center-justified {
    display: flex;
    justify-content: center;
}

/* Center justified with gap */
.center-justified-gap {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Brand logo sizing */
.brand-logo-small {
    width: 120px;
    height: auto;
}

.brand-logo-medium {
    width: 140px;
    height: auto;
}

/* Google Maps iframe */
.google-maps {
    border: 0;
}

/* Single product container center */
.single-product-center {
    display: flex;
    justify-content: center;
}

/* Products grid centered with gap */
.products-grid-centered {
    justify-content: center;
    gap: 40px;
}

/* ===================================================================
 * EXISTING EXPANDABLE PRODUCT CARDS STYLES
 * ================================================================== */
.expandable-card {
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.expandable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.expand-btn {
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.expand-btn:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.expand-btn.expanded {
    background: linear-gradient(135deg, #d32f2f, #c62828);
}

.expand-btn.expanded:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c);
}

.product-specifications {
    display: none;
    background: #f8f9fa;
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    border-top: 3px solid #2e7d32;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.specs-content {
    padding: 25px;
}

.specs-content h4 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.spec-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.spec-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.spec-label {
    font-weight: 600;
    color: #2e7d32;
    flex: 1;
    font-size: 0.9rem;
}

.spec-value {
    color: #555;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    font-size: 0.9rem;
}

.contact-section {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #c8e6c9;
    margin-top: 20px;
}

.contact-section h5 {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.btn-contact {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact:first-child {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
}

.btn-contact:first-child:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-contact:last-child {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
}

.btn-contact:last-child:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

/* Responsive Design for Expandable Cards */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-item {
        flex-direction: column;
        text-align: left;
        gap: 5px;
    }
    
    .spec-value {
        text-align: left;
        max-width: 100%;
        font-weight: 600;
        color: #2e7d32;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .expand-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .specs-content {
        padding: 15px;
    }
    
    .spec-item {
        padding: 10px 12px;
    }
    
    .contact-section {
        padding: 15px;
    }
}

/* Material Testing Highlights Section */
.material-testing-highlights {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #9ca3af 100%);
}

.highlights-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.highlights-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.3) 0%, rgba(107, 114, 128, 0.2) 100%);
    z-index: 2;
}

.material-testing-highlights .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Navigation Dots */
.highlights-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    border-color: white;
}

.nav-dot:hover {
    border-color: white;
    transform: scale(1.2);
}

/* Slide Navigation Buttons */
.highlights-nav-btn {
    position: absolute;
    bottom: 80px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.highlights-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.highlights-nav-btn.prev {
    left: 50%;
    margin-left: -100px;
}

.highlights-nav-btn.next {
    right: 50%;
    margin-right: -100px;
}

/* Carousel Container - Remove duplicate styles */

@keyframes slideIn {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.highlights-text {
    color: white;
}

.highlights-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlights-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.highlights-title .text-red {
    color: #ef4444;
    text-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.highlights-title .text-green {
    color: #10b981;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.highlights-title .text-white {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlights-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* Stats Section */
.highlights-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* Features Section */
.highlights-features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Services Section */
.highlights-services {
    margin-bottom: 35px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.service-item i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 5px;
}

.service-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.highlights-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.highlights-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.highlights-btn.primary {
    background: #f97316;
    color: white;
    border: 2px solid #f97316;
}

.highlights-btn.primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.highlights-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.highlights-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.highlights-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment-showcase {
    position: relative;
    max-width: 100%;
    height: auto;
}

.main-equipment-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.main-equipment-image:hover {
    transform: scale(1.05);
}

/* Decorative elements */
.highlights-images::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ef4444, #f97316);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.highlights-images::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Compression Machines Showcase */
.compression-machines-showcase {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 500px;
}

.machine-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.machine-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.machine-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    padding: 12px;
}

.machine-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Product Categories Showcase */
.product-categories-showcase {
    margin: 40px 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.category-nav-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.category-nav-btn:hover {
    border-color: #007bff;
    background: #f0f8ff;
    transform: translateY(-2px);
}

.category-nav-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.category-nav-btn i {
    font-size: 1.1rem;
}

.category-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.category-content.active {
    display: block;
}

.category-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.category-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.category-product-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.product-image-placeholder:hover {
    border-color: #007bff;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.product-image-placeholder i {
    font-size: 2.5rem;
    color: #adb5bd;
    margin-bottom: 10px;
}

.product-image-placeholder span {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.product-info h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.product-specs li {
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
}

.product-specs li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.product-details-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.product-details-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Showcase Section */
.product-showcase-section {
    padding: 80px 0;
    background: white;
}

.product-showcase-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-showcase-section .section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-showcase-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-container {
    position: relative;
    width: 100%;
    max-width: 1400px; /* Add max-width to prevent overstretching */
    margin: 0 auto; /* Center the container */
    padding: 0 60px; /* Add padding to accommodate buttons - same as partners */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 15px;
    padding: 20px; /* Keep internal padding for cards */
    min-height: 300px; /* Ensure minimum height */
}

.showcase-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
    padding: 10px 0; /* Add vertical padding */
}

.product-item {
    flex: 0 0 calc(33.33% - 20px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin: 10px; /* Increased margin to prevent overlap */
    min-width: 220px; /* Minimum width to ensure images aren't too small */
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-item img {
    width: 100%;
    height: 280px; /* Increased height for better visibility */
    object-fit: contain; /* Changed to contain to show full image */
    transition: transform 0.3s ease;
    padding: 10px; /* Add padding around images */
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-item:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 125, 50, 0.3); /* Lower opacity like Facebook button */
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    opacity: 0.5; /* Additional opacity for subtle appearance */
}

.showcase-btn:hover {
    background: rgba(46, 125, 50, 0.9); /* Pop with color on hover */
    opacity: 1; /* Full opacity on hover */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.showcase-btn-left {
    left: 5px; /* Same as carousel-btn-left */
}

.showcase-btn-right {
    right: 5px; /* Same as carousel-btn-right */
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #2e7d32;
    transform: scale(1.2);
}

/* E-Brochures Section - Compact Version */
.ebrochures-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.brochure-hero {
    text-align: center;
    margin-bottom: 40px;
}

.brochure-hero h2 {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.brochure-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.brochure-download-center {
    text-align: center;
}

.compact-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.compact-download-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    color: white;
}

.compact-download-btn i {
    font-size: 1.1rem;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partnership-content {
    text-align: center;
}

.partnership-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.partnership-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-carousel-container {
    position: relative;
    width: 100%;
    padding: 0 60px; /* Add padding to accommodate buttons */
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.partners-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-track:hover {
    transition-duration: 1.2s;
}

.partner-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 200px;
    flex-shrink: 0;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Removed grayscale filter to keep logos colored */
}

.partner-item:hover .partner-logo {
    transform: scale(1.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 125, 50, 0.3); /* Lower opacity like Facebook button */
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.5; /* Additional opacity for subtle appearance */
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(46, 125, 50, 0.9); /* Pop with color on hover */
    opacity: 1; /* Full opacity on hover */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.carousel-btn-left {
    left: 5px;
}

.carousel-btn-right {
    right: 5px;
}

/* Products Carousel Section (mirrors Partnership Section) */
.products-content {
    text-align: center;
    padding: 40px 0; /* Added padding for better spacing */
}

.products-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.products-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; /* Center the paragraph */
    margin-right: auto;
}

.products-carousel-container {
    position: relative;
    width: 100%;
    padding: 0 80px; /* Increased padding to accommodate moved-in buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.products-carousel {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 15px 0; /* Added padding for better spacing */
}

.products-track {
    display: flex;
    gap: 40px; /* Increased gap between products */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-track:hover {
    transition-duration: 1.2s;
}

.product-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    min-width: 200px;
    flex-shrink: 0;
    margin: 0 10px;
    border: 2px solid #f5f5f5;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-logo {
    max-width: 90%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-item:hover .product-logo {
    transform: scale(1.1);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
        width: 28px;
        height: 28px;
    color: white;
    border: none;
    font-size: 1.2rem;
        font-size: 1.1rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(46, 125, 50, 1);
    transform: translateY(-50%) scale(1.05); /* Reduced scale to prevent overlap */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.carousel-btn-left {
    left: 25px; /* Moved further inward */
}

.carousel-btn-right {
    right: 25px; /* Moved further inward */
}

/* Responsive Design for Products Carousel */
@media (min-width: 1025px) {
    /* Desktop-specific styles for better visibility */
    .products-carousel-container .carousel-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3); /* Stronger shadow */
    }
    
    .products-carousel-container .carousel-btn:hover {
        transform: translateY(-50%) scale(1.05); /* Reduced scale to prevent overlap */
        box-shadow: 0 8px 20px rgba(46, 125, 50, 0.5); /* Enhanced shadow on hover */
    }
    
    .products-carousel-container .carousel-btn-left {
        left: 25px; /* Consistent with mobile positioning */
    }
    
    .products-carousel-container .carousel-btn-right {
        right: 25px; /* Consistent with mobile positioning */
    }
}

@media (max-width: 768px) {
    .products-content h2 {
        font-size: 1.8rem;
    }
    
    .products-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .products-carousel-container {
        padding: 0 50px;
    }
    
    .product-item {
        min-width: 150px;
        height: 150px;
        padding: 20px;
    }
    
    .product-logo {
        max-height: 100px;
    }
    
    .products-carousel-container .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .products-carousel-container .carousel-btn-left {
        left: 10px;
    }
    
    .products-carousel-container .carousel-btn-right {
        right: 10px;
    }
}

/* Bottom Section */
/* overrides */
.bottom-section {
  background: transparent;
  border-top: none;
  padding-top: 0;
  padding-bottom: 0;
}


.bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-bottom-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.bottom-left h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: #2e7d32;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.bottom-center {
    text-align: left;
}

.bottom-center h4 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.bottom-center h5 {
    font-size: 1.2rem;
    color: #2e7d32;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.bottom-center p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.bottom-right {
    text-align: left;
}

.bottom-right h4 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.quick-links a:hover {
    color: #2e7d32;
}

/* Footer */
.footer {
    background: #2e7d32;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Horizontal Footer Layout */
.footer-content.horizontal-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.horizontal-footer .footer-section {
    text-align: left;
}

.horizontal-footer .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.horizontal-footer .footer-section h4 i {
    font-size: 1rem;
}

.horizontal-footer .footer-section p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.5;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-section i {
    margin-right: 10px;
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #2e7d32;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.social-links a:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #2e7d32;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.content-wrapper > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.general-equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.equipment-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.equipment-card h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* Calibration section grid fix */
.equipment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3.5rem 3rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 3.5rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.services-offered h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
}

.services-offered ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.services-offered li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.services-offered li:before {
    content: "✓";
    color: #2e7d32;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-offered li:last-child {
    border-bottom: none;
}

/* Authentication Pages Styles */
.auth-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 140px);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.auth-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.auth-form > p {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2e7d32;
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 43px;
    color: #999;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-container input {
    margin-right: 10px;
}

.forgot-password {
    color: #2e7d32;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-btn:hover {
    background: #1b5e20;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-info {
    padding: 40px;
}

.auth-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: #2e7d32;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (min-width: 1025px) {
    /* Desktop-specific styles for better visibility */
    .carousel-btn {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2); /* Softer shadow */
    }
    
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.2);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4); /* Enhanced shadow on hover */
    }
    
    .carousel-btn-left {
        left: -35px;
    }
    
    .carousel-btn-right {
        right: -35px;
    }
}

@media (min-width: 769px) {
    /* Desktop Services Navigation */
    .services-nav-header {
        display: none !important;
    }
    
    .services-list {
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 25px !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        transform: none !important;
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .services-list a {
        font-size: 1rem !important;
        padding: 8px 12px !important;
        text-align: left !important;
        display: inline-block !important;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .services-list {
        gap: 15px;
    }
    
    .services-list a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .partnership-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .header .container {
        position: relative;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 10px;
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        min-width: 200px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-list.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list a {
        padding: 12px 15px;
        border-radius: 8px;
        text-align: center;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        display: none;
        position: static;
        background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
        box-shadow: inset 0 2px 8px rgba(46, 125, 50, 0.1);
        margin: 8px 0;
        border-radius: 12px;
        transform: none;
        border: 1px solid #e8f5e8;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.mobile-active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0 8px;
        background: transparent;
        border-radius: 8px;
    }
    
    .dropdown-menu a:hover {
        background: rgba(46, 125, 50, 0.1);
        transform: translateX(0);
    }
    
    .dropdown-toggle i {
        font-size: 0.7rem;
    }
    
    /* Services Navigation */
    .services-nav {
        padding: 10px 0;
    }
    
    .services-nav-header {
        display: flex;
        margin-bottom: 15px;
        padding: 5px 10px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 8px;
    }
    
    .services-nav-title::before {
        display: none;
    }
    
    .services-hamburger {
        display: flex;
    }
    
    .services-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2e7d32;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
        border-radius: 0 0 15px 15px;
    }
    
    .services-list.mobile-active {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .services-list a {
        font-size: 0.9rem;
        padding: 12px 15px;
        text-align: center;
        border-radius: 6px;
        display: block;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .services-list a:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateX(5px);
    }
    
    /* Hero Section */
    .hero {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        height: 350px;
    }
    
    /* Material Testing Highlights Mobile */
    .material-testing-highlights {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .highlights-navigation {
        top: 20px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .highlights-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .highlights-nav-btn.prev {
        left: 10px;
    }
    
    .highlights-nav-btn.next {
        right: 10px;
    }
    
    .highlights-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .highlights-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .highlights-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .highlights-stats {
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .highlights-features {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .highlights-services {
        text-align: left;
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .service-item {
        margin-bottom: 15px;
    }
    
    .service-item i {
        font-size: 1.2rem;
    }
    
    .highlights-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .highlights-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 200px;
        justify-content: center;
    }
    
    .main-equipment-image {
        max-width: 100%;
    }
    
    /* Compression Machines Showcase Mobile */
    .compression-machines-showcase {
        max-width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .machine-item {
        padding: 12px;
    }
    
    .machine-image {
        height: 150px;
        margin-bottom: 10px;
        padding: 10px;
    }
    
    .machine-description {
        font-size: 0.85rem;
    }
    
    /* Product Categories Showcase Mobile */
    .product-categories-showcase {
        margin: 30px 0;
        padding: 20px;
    }
    
    .category-navigation {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .category-nav-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1;
    }
    
    .category-nav-btn i {
        font-size: 1rem;
    }
    
    .category-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .category-content > p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-product-card {
        padding: 20px;
    }
    
    .product-image-placeholder {
        height: 160px;
        margin-bottom: 15px;
    }
    
    .product-image-placeholder i {
        font-size: 2rem;
    }
    
    .product-info h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .product-details-btn {
        padding: 10px 20px;
    }

    /* Featured Products Section Mobile */
    .featured-products-section {
        padding: 60px 0;
    }
    
    .featured-products-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .featured-card {
        padding: 30px 25px;
    }
    
    .featured-icon {
        width: 70px;
        height: 70px;
    }
    
    .featured-icon i {
        font-size: 1.8rem;
    }
    
    .featured-content h3 {
        font-size: 1.4rem;
    }
    
    .featured-content p {
        font-size: 1rem;
    }
    
    .featured-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* News & Blogs Section Mobile */
    .news-blogs-section {
        padding: 60px 0;
    }
    
    .news-blogs-section .section-header h2 {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .news-card {
        margin-bottom: 20px;
    }
    
    .news-image {
        height: 200px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    /* Product Showcase Mobile */
    .product-showcase-section {
        padding: 60px 0;
    }
    
    .showcase-container {
        padding: 0 50px; /* Match partners mobile padding */
    }
    
    .showcase-container {
        padding: 0 50px; /* Reduced padding for mobile */
    }
    
    .product-showcase-section .section-header h2 {
        font-size: 2rem;
    }
    
    .product-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .product-item img {
        height: 200px;
    }
    
    .showcase-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .showcase-btn-left {
        left: 5px; /* Same as carousel-btn-left */
    }
    
    .showcase-btn-right {
        right: 5px; /* Same as carousel-btn-right */
    }
    
    /* E-Brochures Section - Compact Version */
    .ebrochures-section {
        padding: 40px 0;
    }
    
    .brochure-hero {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .brochure-hero h2 {
        font-size: 1.8rem;
    }
    
    .brochure-hero p {
        font-size: 1rem;
    }
    
    .compact-download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Partnership Section */
    .partnership-section {
        padding: 60px 0;
    }
    
    .partnership-content h2 {
        font-size: 2rem;
    }
    
    .partnership-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .partners-carousel-container {
        margin: 0 20px;
        padding: 0 50px;
        position: relative;
    }
    
    .partners-carousel {
        overflow: hidden;
        width: 100%;
    }
    
    .partner-item {
        height: 100px;
        padding: 20px;
        min-width: 150px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2); /* Softer shadow for mobile */
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-btn-left {
        left: 5px;
    }
    
    .carousel-btn-right {
        right: 5px;
    }
    
    /* Contact CTA Section */
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-cta-content h3 {
        font-size: 1.8rem;
    }
    
    /* Bottom Section */
    .bottom-section {
        padding: 40px 0;
    }
    
    .bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .bottom-left,
    .bottom-center,
    .bottom-right {
        text-align: center;
        align-items: center;
    }
    
    .bottom-left {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content.horizontal-footer {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .horizontal-footer .footer-section {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    /* Page Content Responsive */
    .page-content {
        padding: 60px 0;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .equipment-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 320px;
        min-width: 240px;
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1.2rem 2rem 1.2rem;
        box-sizing: border-box;
    }
    .services-offered {
        padding: 30px;
    }
    
    .services-offered h3 {
        font-size: 1.5rem;
    }
    
    /* Authentication Pages Responsive */
    .auth-section {
        padding: 60px 0;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auth-form {
        padding: 40px 30px;
    }
    
    .auth-form h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-info {
        padding: 30px;
    }
    
    .auth-info h3 {
        font-size: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    /* Services Navigation */
    .services-list a {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    /* Hero */
    .hero {
        height: 200px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    /* Services */
    .services-section {
        padding: 40px 0;
    }
    
    .service-card {
        height: 300px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    /* Partnership */
    .partnership-section {
        padding: 40px 0;
    }
    
    .partnership-content h2 {
        font-size: 1.8rem;
    }
    
    .showcase-container {
        padding: 0 45px; /* Match partners mobile padding */
    }
    
    .partners-carousel-container {
        margin: 0 10px;
        padding: 0 45px;
    }
    
    .partner-item {
        min-width: 120px;
        height: 80px;
        padding: 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2); /* Softer shadow for small mobile */
    }
    
    .carousel-btn-left {
        left: 2px;
    }
    
    .carousel-btn-right {
        right: 2px;
    }
    
    /* Contact CTA */
    .contact-cta-section {
        padding: 40px 0;
    }
    
    .contact-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta-content h3 {
        font-size: 1.5rem;
    }
    
    /* Bottom Section */
    .bottom-section {
        padding: 30px 0;
    }
    
    .bottom-center h4 {
        font-size: 1.2rem;
    }
    
    .bottom-center h5 {
        font-size: 1.1rem;
    }
    
    .bottom-center p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    /* Page Content 480px */
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .equipment-card {
        padding: 20px;
    }
    
    .services-offered {
        padding: 25px;
    }
    
    /* Authentication 480px */
    .auth-form {
        padding: 30px 20px;
    }
    
    .auth-form h2 {
        font-size: 1.6rem;
    }
    
    .form-group input {
        padding: 12px 40px 12px 12px;
    }
    
    .auth-info {
        padding: 25px;
    }
}


@media (max-width: 320px) {
    /* Extra small devices */
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .partnership-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta-content h3 {
        font-size: 1.3rem;
    }
    
    .showcase-container {
        padding: 0 40px; /* Match partners mobile padding */
    }
    
    .partners-carousel-container {
        margin: 0 5px;
        padding: 0 40px;
    }
    
    .partner-item {
        min-width: 100px;
        height: 70px;
        padding: 10px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        box-shadow: 0 1px 4px rgba(46, 125, 50, 0.2); /* Very soft shadow for smallest screens */
    }
    
    .carousel-btn-left {
        left: 0;
    }
    
    .carousel-btn-right {
        right: 0;
    }
}

/* Background patterns for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(1)::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/></svg>');
}

.service-card:nth-child(2)::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/></svg>');
}

.service-card:nth-child(3)::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/></svg>');
}

/* News Page Styles */
.news-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.news-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.news-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-news {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.news-header {
    padding: 30px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    position: relative;
}

.news-header.clickable-header {
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-header.clickable-header:hover {
    background: linear-gradient(135deg, #1b5e20, #388e3c);
    transform: translateY(-2px);
}

.news-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.news-badge.recent {
    background: linear-gradient(135deg, #d32f2f, #f44336);
    color: white;
}

/* Recognition Categories Styles */
.recognition-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1b5e20;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card i {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    display: block;
}

.category-card h4 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.category-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Quality Highlights Styles */
.quality-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #1b5e20;
}

.highlight-item:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #1b5e20;
    flex: 0 0 24px;
}

.highlight-item span {
    font-weight: 600;
    color: #1b5e20;
    font-size: 1rem;
}

/* Simplified category cards */
.recognition-categories .category-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.recognition-categories .category-card p {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .quality-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-item i {
        font-size: 1.3rem;
    }
    
    .highlight-item span {
        font-size: 0.95rem;
    }
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.commitment-list li:last-child {
    border-bottom: none;
}

.commitment-list i {
    color: #1b5e20;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex: 0 0 20px;
}

.news-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content {
    padding: 40px 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-content.collapsed {
    max-height: 0;
    padding: 0 30px;
    opacity: 0;
}

.dropdown-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dropdown-icon.rotated {
    transform: translateY(-50%) rotate(180deg);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slide {
    display: none;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 32px 24px 24px;
    text-align: left;
    backdrop-filter: blur(2px);
    font-size: 1.15rem;
    min-height: 70px;
    font-size: 1.25rem;
    min-height: 90px;
}

.slide-caption h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
    color: #ffffff !important;
}

.slide-caption p {
    font-size: 1.15rem;
    line-height: 1.5;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,1);
    color: #ffffff !important;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* News Body Content */
.news-body {
    margin-top: 40px;
}

.news-body h3 {
    color: #2e7d32;
    font-size: 1.6rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 10px;
}

.news-body p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.quality-benefits {
    list-style: none;
    margin: 25px 0;
}

.quality-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.quality-benefits li i {
    color: #4caf50;
    font-size: 1.1rem;
    margin-top: 2px;
}

.training-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.topic-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 15px;
}

.topic-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.topic-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.client-benefits {
    background: #e8f5e8;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #4caf50;
}

.client-benefits li {
    color: #2e7d32;
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.client-benefits li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.closing-statement {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white !important;
    padding: 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Footer Styles */
.footer {
    background: #2e7d32;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #a5d6a7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a5d6a7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4caf50;
    opacity: 0.8;
}

/* Responsive Design for News Page */
@media (max-width: 768px) {
    .news-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .news-hero .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .news-header {
        padding: 20px;
    }
    
    .news-header h2 {
        font-size: 1.8rem;
    }
    
    .news-content {
        padding: 30px 20px;
    }
    
    .slide img {
        height: 300px;
    }
    
    .slide-caption {
        padding: 20px 15px 15px;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .training-topics {
        grid-template-columns: 1fr;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Services Page Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
}

.service-features li i {
    color: #4caf50;
    font-size: 0.9rem;
}

.additional-services {
    margin-top: 80px;
    text-align: center;
}

.additional-services h2 {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
}

/* Detailed Services Section */
.detailed-services {
    margin-top: 80px;
    margin-bottom: 60px;
}

.detailed-service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e8f5e8;
}

.service-header {
    display: flex;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
}

.service-icon-large {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.service-description {
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.service-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}

.service-description h3 {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Equipment Accordion Styles */
.equipment-accordion {
    margin-top: 30px;
}

.equipment-accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-accordion-item:hover {
    border-color: #4caf50;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
}

.equipment-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
}

.equipment-accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4caf50, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.equipment-accordion-header:hover {
    background: linear-gradient(135deg, #f8fff8 0%, #f0fff0 100%);
    transform: translateY(-1px);
}

.equipment-accordion-header:hover::after {
    transform: scaleX(1);
}

.equipment-info {
    display: flex;
    align-items: center;
}

.equipment-number {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.equipment-accordion-header:hover .equipment-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.equipment-name {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.equipment-accordion-header:hover .equipment-name {
    color: #2e7d32;
}

.accordion-icon {
    color: #4caf50;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
}

.accordion-icon.rotated {
    transform: rotate(180deg);
    background: rgba(76, 175, 80, 0.2);
}

.equipment-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f7f5 100%);
    opacity: 0;
}

.equipment-accordion-content.open {
    max-height: 2500px;
    padding: 30px;
    opacity: 1;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.equipment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.equipment-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.equipment-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    padding: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
}

.equipment-card:hover .equipment-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    backdrop-filter: blur(2px);
}

.equipment-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-overlay p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.2;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.card-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.other-equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.other-equipment-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.other-equipment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .equipment-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 0;
    }
    
    .equipment-card {
        height: 260px;
        margin: 0 10px;
    }
    
    .equipment-img {
        height: 180px;
        padding: 15px;
    }
    
    .card-overlay {
        height: 75px;
        padding: 12px;
    }
    
    .card-overlay h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .card-overlay p {
        font-size: 0.8rem;
    }
    
    .equipment-accordion-header {
        padding: 15px 20px;
    }
    
    .equipment-accordion-content.open {
        padding: 20px;
        max-height: 2000px;
    }
    
    .other-equipment-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Showcase Styles */
.service-showcase {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 2px solid #f0f0f0;
}

.service-showcase h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.service-showcase > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.showcase-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.showcase-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.showcase-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 25px;
}

.showcase-content h4 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-content h4 i {
    color: #4caf50;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: #4caf50;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .showcase-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-content {
        padding: 20px;
    }
    
    .service-showcase h3 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.contact-info > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    background: #4caf50;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #2e7d32;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
}

.submit-btn {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.map-section {
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 400px;
}

.map-address {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

.map-address p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.map-address strong {
    color: #2e7d32;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #4caf50;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: #e0e0e0;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.image-placeholder i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 15px;
}

.mvv-section {
    margin-bottom: 80px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mvv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mvv-icon {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.mvv-card h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mvv-card p {
    color: #666;
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card ul li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mvv-card ul li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* About Tabs Styles */
.about-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 80px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    background: white;
    color: #2e7d32;
    border-bottom-color: #4caf50;
}

.tab-btn:hover {
    background: #f0f0f0;
    color: #2e7d32;
}

.tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-header {
    margin-bottom: 30px;
}

.tab-header p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.government-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.gov-logo {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.gov-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.company-history-content {
    color: #666;
    line-height: 1.7;
}

.company-history-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Mission Vision Tab Styles */
.mission-vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-section, .vision-section, .core-values-section {
    margin-bottom: 40px;
}

.mission-section h3, .vision-section h3, .core-values-section h3 {
    color: #2e7d32;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mission-section p, .vision-section p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: justify;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.value-item {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    color: #2e7d32;
    font-weight: 500;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
}

/* Milestones Timeline Styles */
.milestones-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.milestones-section h2 {
    text-align: center;
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: #4caf50;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    min-height: 100px;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #4caf50;
    border: 4px solid #fff;
    border-radius: 50%;
    left: 50%;
    margin-left: -10px;
    z-index: 2;
    box-shadow: 0 0 0 3px #4caf50;
    top: 25px;
}

.timeline-content {
    position: relative;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 45%;
    border: 2px solid #e8f5e8;
}

/* Odd items (1st, 3rd, 5th...) go to the LEFT */
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

/* Even items (2nd, 4th, 6th...) go to the RIGHT */
.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 0;
    height: 0;
    border: 15px solid;
}

/* Arrow for LEFT items pointing RIGHT */
.timeline-item:nth-child(odd) .timeline-content::after {
    right: -30px;
    border-color: transparent transparent transparent #fff;
}

/* Arrow for RIGHT items pointing LEFT */
.timeline-item:nth-child(even) .timeline-content::after {
    left: -30px;
    border-color: transparent #fff transparent transparent;
}

.timeline-year {
    font-size: 2rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 10px;
}

.timeline-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.what-we-do {
    margin-bottom: 80px;
}

.what-we-do h2 {
    text-align: center;
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-overview-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-5px);
}

.service-overview-card i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.service-overview-card h4 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-overview-card p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    margin-bottom: 80px;
    text-align: center;
}

.stats-section h2 {
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.quality-section {
    text-align: center;
}

.quality-section h2 {
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.quality-section > p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-feature {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quality-feature i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.quality-feature h4 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.quality-feature p {
    color: #666;
    line-height: 1.5;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .mvv-grid,
    .services-overview,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .service-icon-large {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-description {
        padding: 30px 20px;
    }
    
    .equipment-item {
        padding: 15px 20px;
    }
    
    .service-title h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    /* Tab responsive styles */
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid #e0e0e0;
        border-right: none;
    }
    
    .tab-btn.active {
        border-bottom-color: #e0e0e0;
        border-left: 3px solid #4caf50;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .government-logos {
        gap: 20px;
    }
    
    .gov-logo {
        height: 80px;
        max-width: 150px;
    }
    
    /* Mission Vision responsive styles */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mission-section h3, .vision-section h3, .core-values-section h3 {
        font-size: 1.2rem;
    }
    
    /* Timeline responsive styles */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
        margin-left: -10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -30px;
        right: auto;
        border-color: transparent #fff transparent transparent;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .milestones-section h2 {
        font-size: 2rem;
    }
}

/* Matest Equipment Showcase Styles */
.matest-equipment-showcase {
    margin: 40px 0;
}

.matest-equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.matest-equipment-item:hover {
    transform: translateY(-5px);
}

.matest-equipment-item:nth-child(even) {
    flex-direction: row-reverse;
}

.equipment-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
    }

.equipment-details {
    flex: 1;
    padding: 0 20px;
}

.equipment-details h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.equipment-details p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.equipment-features h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.equipment-features ul {
    list-style: none;
    padding-left: 0;
}

.equipment-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.equipment-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.matest-advantages {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    border-radius: 15px;
    color: white;
}

.matest-advantages h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: scale(1.05);
}

.advantage-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.advantage-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.contact-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.contact-btn i {
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .matest-equipment-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .matest-equipment-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .equipment-image {
        flex: none;
        align-self: center;
    }
    
    .equipment-details {
        padding: 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .matest-advantages {
        padding: 20px;
    }
    
    .matest-advantages h3 {
        font-size: 1.5rem;
    }
}

/* Matest Products Section Styling */
.matest-section {
    margin: 40px 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* NL Scientific Products Section Styling */
.nl-section {
    margin: 40px 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* LabTech BioMedic Products Section Styling */
.labtech-section {
    margin: 40px 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Make LabTech use the same grid as Matest/NL */
.labtech-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Remove max-width restriction for featured-product if present */
.featured-product {
    width: 100%;
    max-width: none;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: #2e7d32;
    border-radius: 12px;
    color: white;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* NL Scientific logo*/
.nl-section .brand-logo-img {
    height: 80px;
    width: auto;
    filter: none;
}

/* LabTech BioMedic logo */
.labtech-section .brand-logo-img {
    height: 45px;
    width: auto;
    filter: none;
}

/* Capstone logo  */
.capstone-section .brand-logo-img {
    height: 50px;
    width: auto;
    filter: none;
}

/* EHWA logo */
.ehwa-section .brand-logo-img {
    height: 50px;
    width: auto;
    filter: none;
}

/* TBT Nanjing logo */
.tbt-section .brand-logo-img {
    height: 50px;
    width: auto;
    filter: none;
}

/* GOTECH logo */
.gotech-section .brand-logo-img {
    height: 80px;
    width: auto;
    filter: none;
}

/* Dual Manufacturing logo */
.dual-section .brand-logo-img {
    height: 50px;
    width: auto;
    filter: none;
}

/* TOHO logo */
.toho-section .brand-logo-img {
    height: 80px;
    width: auto;
    filter: none;
}

/* Tae Sung Co. logo */
.taesung-section .brand-logo-img {
    height: 70px;
    width: auto;
    filter: none;
}

/* Add spacing for Tae Sung section */
.taesung-section {
    margin-top: 60px;
}

/* Add spacing between Capstone and EHWA sections */
.ehwa-section {
    margin-top: 60px;
}

/* Add spacing for TBT section */
.tbt-section {
    margin-top: 60px;
}

.brand-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-website-link {
    background: #2e7d32;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-website-link:hover {
    background: #1a472a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2e7d32;
}

.product-image {
    width: 100%;
    min-width: 0;
    height: auto;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-code {
    background: #2e7d32;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 8px 0 12px 0;
    line-height: 1.3;
}

.product-standard {
    background: #f0f8f0;
    padding: 10px 12px;
    border-radius: 8px;
    margin: 12px 0;
    border-left: 4px solid #2e7d32;
    font-size: 0.8rem;
}

.product-standard strong {
    color: #2e7d32;
}

.product-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.85rem;
    margin-top: 12px;
}

/* Mobile Responsive for Matest Products - Force Horizontal */
@media (max-width: 768px) {
    .matest-section, .nl-section, .labtech-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .brand-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .brand-logo {
        flex-direction: column;
        gap: 8px;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .single-product-container {
        margin-top: 20px;
    }
    
    .featured-product {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .product-card {
        min-width: 250px;
    }
    
    .product-image {
        width: 150px;
        min-width: 150px;
        height: auto;
        padding: 10px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-code {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .brand-logo-img {
        height: 40px;
    }
    
    .nl-section .brand-logo-img {
        height: 60px;
    }
    
    .labtech-section .brand-logo-img {
        height: 35px;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
    }
    
    .brand-website-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .product-card {
        min-width: 220px;
    }
    
    .featured-product {
        min-width: 280px;
    }
    
    .product-image {
        width: 120px;
        min-width: 120px;
        height: auto;
        padding: 8px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-code {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .product-standard {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .product-description {
        font-size: 0.75rem;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.contact-hero .hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information */
.contact-info {
    text-align: left;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #4caf50;
}

.contact-info h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: center;
}

.contact-info > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 15px 0;
}

.contact-icon {
    background: #4caf50;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.contact-details h4 {
    color: #2e7d32;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

.contact-details a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2e7d32;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #4caf50;
}

.contact-form h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-address {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.map-address p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-address strong {
    color: #2e7d32;
    font-weight: 600;
}

/* Business Hours Section */
.business-hours {
    background: #f8f9fa;
    padding: 60px 0;
}

.business-hours h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 40px;
    font-size: 2rem;
}

.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}

.hours-item .time {
    color: #666;
    font-size: 1rem;
}

.hours-item.today {
    background: #e8f5e8;
}

.hours-item.today .day {
    color: #2e7d32;
    font-weight: 600;
}

.hours-item.today .time {
    color: #4caf50;
    font-weight: 500;
}

/* Emergency Contact Section */
.emergency-contact {
    background: #2e7d32;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.emergency-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.emergency-contact p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.emergency-contact a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.emergency-contact a:hover {
    text-decoration: underline;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-info > p {
        text-align: center;
    }

    .contact-methods {
        align-items: center;
        gap: 25px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
        max-width: 300px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container iframe {
        height: 300px;
    }

    .hours-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .map-address {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-content {
        padding: 0 15px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        max-width: 280px;
    }

    .contact-form {
        padding: 20px;
        margin: 0 10px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .map-container {
        margin: 0 20px;
    }

    .hours-container {
        margin: 0 20px;
    }
}

/* Blogs Page Styles */
.blogs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-category {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #1b5e20;
    transform: translateX(5px);
}

.read-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Coming Soon Blog Post */
.blog-post.coming-soon {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
    border: 2px dashed #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.blog-post.coming-soon .blog-content {
    text-align: center;
    padding: 40px 25px;
}

.coming-soon-icon {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.blog-post.coming-soon h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-post.coming-soon p {
    color: #666;
    margin-bottom: 0;
}

/* Blogs Responsive Design */
@media (max-width: 768px) {
    .blogs-section {
        padding: 60px 0;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

/* Responsive adjustments for page hero */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    /* News & Blogs Mobile Styles */
    .news-blogs-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .news-grid {
        padding: 0 15px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    /* Product Showcase Mobile Styles */
    .product-showcase-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .showcase-container {
        padding: 0 40px; /* Smaller padding for smallest screens */
    }
    
    .product-item {
        flex: 0 0 calc(100% - 10px);
    }
    
    .product-item img {
        height: 250px;
    }
    
    .showcase-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .showcase-btn-left {
        left: 2px; /* Same as carousel-btn-left */
    }
    
    .showcase-btn-right {
        right: 2px; /* Same as carousel-btn-right */
    }
    
    .product-overlay {
        padding: 20px 15px 15px;
    }
    
    .product-overlay h3 {
        font-size: 1rem;
    }
    
    .product-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 50px 0;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    /* Ultra Mobile Styles */
    .news-blogs-section {
        padding: 40px 0;
    }
    
    .news-blogs-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .news-grid {
        padding: 0 10px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .modal-content {
        padding: 20px 15px;
        margin: 15% auto;
    }
    
    .close {
        top: 15px;
        right: 20px;
        font-size: 24px;
    }
    
    .product-showcase-section {
        padding: 40px 0;
    }
    
    .product-showcase-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .showcase-container {
        margin: 0 10px;
    }
    
    .showcase-btn {
        display: none; /* Hide buttons on very small screens */
    }
    
    .product-overlay {
        padding: 15px 10px 10px;
    }
}

/* Calibration Slideshow Styles */
.calibration-slideshow {
    position: relative;
    margin: 20px 0;
    padding: 0;
}

.calibration-slideshow h2 {
    text-align: center;
    color: #1a3c6e;
    margin-bottom: 15px;
}

.calibration-slideshow p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    padding: 0;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    background: #1a3c6e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-icon i {
    font-size: 2rem;
}

.card-content {
    padding: 20px;
    flex: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 10px 0;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.calibration-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cal-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cal-nav-dot.active {
    background-color: #1a3c6e;
}

.calibration-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #1a3c6e;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.calibration-nav-btn:hover {
    background-color: #0e2549;
}

.calibration-nav-btn.prev {
    left: 10px;
}

.calibration-nav-btn.next {
    right: 10px;
}

.calibration-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    height: 500px;
    margin: 0 auto;
    max-width: 900px;
}

.calibration-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calibration-slide.active {
    opacity: 1;
    visibility: visible;
}

.calibration-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.calibration-image {
    height: 65%;
    overflow: hidden;
}

.calibration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calibration-text {
    height: 35%;
    background-color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calibration-text h3 {
    color: #1a3c6e;
    margin-bottom: 10px;
    font-size: 24px;
}

.calibration-text p {
    color: #555;
    margin: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
}

/* Enhanced CTA Styles */
.enhanced-cta-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.enhanced-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a3c6e, #3a6eb5);
    z-index: 0;
}

.enhanced-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    padding: 40px;
}

.enhanced-cta-text {
    flex: 1.2;
    color: white;
    padding-right: 40px;
}

.enhanced-cta-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.enhanced-cta-text p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.enhanced-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.enhanced-feature {
    display: flex;
    align-items: center;
    width: calc(50% - 10px);
    margin-bottom: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.feature-icon i {
    color: #4CAF50;
    font-size: 16px;
}

.feature-text {
    font-size: 16px;
}

.enhanced-cta-action {
    flex: 0.8;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.enhanced-cta-action h3 {
    color: #1a3c6e;
    margin-bottom: 10px;
    font-size: 22px;
}

.enhanced-cta-action p {
    margin-bottom: 25px;
    color: #555;
}

.enhanced-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enhanced-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.enhanced-cta-btn i {
    margin-right: 10px;
}

.enhanced-cta-btn.primary {
    background-color: #1a3c6e;
    color: white;
}

.enhanced-cta-btn.secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.enhanced-cta-btn.primary:hover {
    background-color: #0e2549;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.enhanced-cta-btn.secondary:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

/* Media queries for calibration slideshow */
@media (max-width: 992px) {
    .enhanced-cta-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .enhanced-cta-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .calibration-carousel {
        height: 400px;
    }
    
    .calibration-text h3 {
        font-size: 20px;
    }
    
    .calibration-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .calibration-carousel {
        height: 380px;
    }
    
    .enhanced-feature {
        width: 100%;
    }
    
    .enhanced-cta-container {
        margin: 40px 0 20px;
    }
}

@media (max-width: 576px) {
    .calibration-carousel {
        height: 420px;
    }
    
    .calibration-image {
        height: 55%;
    }
    
    .calibration-text {
        height: 45%;
        padding: 15px;
    }
    
    .enhanced-cta-content {
        padding: 20px;
    }
    
    .enhanced-cta-action {
        padding: 20px;
    }
    
    .calibration-nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Media queries for calibration rows */
@media (max-width: 992px) {
    .calibration-item {
        width: 48%;
    }
    
    .calibration-row {
        justify-content: space-around;
    }
    
    .client-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modern-cta-content {
        flex-direction: column;
    }
    
    .modern-cta-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .calibration-item img {
        height: 180px;
    }
    
    .modern-cta-container {
        margin: 50px 0 20px;
    }
    
    .modern-cta-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .calibration-item {
        width: 100%;
    }
    
    .client-gallery {
        grid-template-columns: 1fr;
    }
    
    .client-gallery-item {
        height: 150px;
    }
}

/* Calibration Page Styles */
.calibration-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/360_F_1589025175_1DxdWO4V6n1gbYRWoVjD0eef0QEi9yq4.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
    color: white;
    margin-bottom: 40px;
}

.calibration-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calibration-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.calibration-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.calibration-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.calibration-cta a {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.calibration-cta a i {
    margin-right: 8px;
}

.calibration-cta .btn-primary {
    background: #fff;
    color: #0056b3;
}

.calibration-cta .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.calibration-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Features Section */
.services-features {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e6f0ff;
    color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .calibration-hero {
        padding: 40px 20px;
    }
    
    .calibration-hero h1 {
        font-size: 2rem;
    }
    
    .calibration-hero p {
        font-size: 1rem;
    }
    
    .calibration-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .calibration-cta a {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .services-features {
        padding: 40px 20px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Updated News Card Styles */
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}



.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #222;
    font-weight: 600;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #1b5e20;
    font-weight: 500;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.news-card:hover .read-more {
    color: #2e7d32;
}

.read-more i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.news-card:hover .read-more i {
    transform: translateX(4px);
}

/* Company Profile Section Styles */
.company-profile-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-header h3 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.profile-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.profile-download-section {
    margin-bottom: 3rem;
}

.download-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 94, 32, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #1b5e20, #2e7d32);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.download-icon {
    flex: 0 0 80px;
    text-align: center;
    margin-right: 2rem;
    position: relative;
}

.download-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(211, 47, 47, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-info p {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.file-type {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.download-action {
    flex: 0 0 auto;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
    border: none;
    cursor: pointer;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

.download-btn:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.download-btn i {
    font-size: 0.9rem;
}

.profile-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.profile-highlights h4 {
    font-size: 1.3rem;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list i {
    color: #1b5e20;
    margin-right: 1rem;
    font-size: 1.1rem;
    flex: 0 0 20px;
}

.highlight-list li span {
    color: #444;
    line-height: 1.5;
}

/* Responsive styles for company profile */
@media (max-width: 768px) {
    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .download-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .download-action {
        margin-top: 1rem;
    }
    
    .profile-highlights {
        padding: 1.5rem;
    }
    
    .highlight-list li {
        align-items: flex-start;
    }
    
    .highlight-list i {
        margin-top: 0.2rem;
    }
}

/* ===================================================================
   MODAL SYSTEM - ALWAYS CENTERED REGARDLESS OF RESOLUTION
   ===================================================================*/

/* Modal Overlay - Full screen with backdrop */

html, body {
    height: 100%;
    min-height: 100%;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.modal-content {
    pointer-events: auto;
}

/* Modal is active */
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Content Container - Smaller and more centered */
.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: auto;
    display: flex;
    flex-direction: column;
    transform-origin: center center;
}

/* Modal Animation - smoother bounce effect */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
        filter: blur(3px);
    }
    70% {
        opacity: 1;
        transform: scale(1.02) translateY(-5px);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* Modal Header */
.modal-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

/* Modal Body */
.modal-body {
    padding: 24px;
}

.modal-product-info {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.modal-product-image {
    flex: 0 0 200px;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.modal-product-details {
    flex: 1;
}

.modal-product-code {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1b5e20;
    margin: 0 0 8px 0;
}

.modal-product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.modal-product-standard {
    color: #666;
    margin: 0 0 12px 0;
    font-size: 0.95rem;
}

.modal-product-description {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Modal Specifications Grid */
.modal-specs-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.modal-specs-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal-spec-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #1b5e20;
}

.modal-spec-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.modal-spec-value {
    color: #666;
    font-size: 0.95rem;
}

/* Modal Contact Section */
.modal-contact {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    border-radius: 8px;
    color: white;
}

.modal-contact h5 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-contact-buttons {
    display: flex;
    gap: 12px;
}

.modal-btn-contact {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-btn-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Modern Modal Contact Buttons */
.modal-contact-btn {
    flex: 1;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.modal-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.modal-contact-btn:hover::before {
    left: 100%;
}

.modal-email-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.modal-email-btn:hover {
    background: linear-gradient(135deg, #218838, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.modal-call-btn {
    background: linear-gradient(135deg, #fd7e14, #ff8c00);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.modal-call-btn:hover {
    background: linear-gradient(135deg, #e55a00, #dc6300);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4);
    color: white;
}

.modal-contact-btn i {
    font-size: 1.1rem;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 99vw;
        margin: 0;
        max-height: 99vh;
    }
    .modal-product-info {
        flex-direction: column;
        gap: 16px;
    }
    .modal-product-image {
        flex: none;
        align-self: center;
    }
    .modal-specs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .modal-header {
        padding: 16px 16px 12px 16px;
    }
    .modal-body {
        padding: 16px;
    }
    .modal-title {
        font-size: 1.3rem;
    }
    .modal-contact-buttons {
        flex-direction: column;
    }
    
    .modal-contact-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}

/* Additional Mobile Optimizations for Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-width: 95%;
        width: 95%;
        max-height: 85vh;
        border-radius: 8px;
    }
    
    @keyframes modalSlideIn {
        0% {
            opacity: 0;
            transform: scale(0.9) translateY(30px);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
}

/* ===================================================================
   ENHANCED MOBILE RESPONSIVENESS FOR ALL PAGES
   ================================================================= */

@media (max-width: 768px) {
    /* Hero Sections Mobile Optimization */
    .hero,
    .about-hero,
    .contact-hero,
    .news-hero,
    .page-hero,
    .calibration-hero {
        min-height: 250px !important;
        height: auto !important;
        padding: 40px 0 !important;
    }

    .hero-content h1,
    .calibration-hero h1,
    .page-hero .hero-content h1,
    .news-hero .hero-content h1,
    .contact-hero .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero-content p,
    .calibration-hero p,
    .page-hero .hero-content p,
    .news-hero .hero-content p,
    .contact-hero .hero-content p {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        padding: 0 20px !important;
    }

    /* Container and Grid Layouts */
    .container {
        padding: 0 15px !important;
    }

    .contact-content,
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Navigation Mobile Improvements */
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 998;
        overflow-y: auto;
    }

    .nav-list.mobile-active {
        left: 0;
    }

    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.2rem;
        color: #333;
        display: block;
        text-align: center;
        padding: 15px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .nav-list a:hover {
        background-color: rgba(76, 175, 80, 0.1);
    }

    /* Form Mobile Optimization */
    .contact-form {
        padding: 20px !important;
        margin: 0 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    /* Product Cards Mobile */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 20px !important;
    }

    .product-card {
        margin: 0 10px !important;
    }

    /* Modal Mobile Improvements */
    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
        margin: 20px auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    .modal-header h2 {
        font-size: 1.3rem !important;
    }

    .modal-specs-grid {
        grid-template-columns: 1fr !important;
    }

    /* News and Blog Mobile */
    .news-content,
    .blog-content {
        padding: 20px !important;
    }

    .slideshow-container {
        margin: 20px 0 !important;
    }

    .slide img {
        height: 250px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .slide-caption {
        padding: 15px !important;
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
    }

    .slide-caption h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    .slide-caption p {
        font-size: 1rem !important;
        color: #f5f5f5 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }

    /* Service Cards Mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        margin: 0 10px !important;
        padding: 20px !important;
    }

    /* Footer Mobile Enhancement */
    .horizontal-footer {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }

    .footer-section p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .hero-content h1,
    .calibration-hero h1,
    .page-hero .hero-content h1,
    .news-hero .hero-content h1,
    .contact-hero .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content p,
    .calibration-hero p,
    .page-hero .hero-content p,
    .news-hero .hero-content p,
    .contact-hero .hero-content p {
        font-size: 0.9rem !important;
    }

    .container {
        padding: 0 10px !important;
    }

    .modal-content {
        width: 98% !important;
        margin: 10px auto !important;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .slide img {
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .news-content,
    .blog-content,
    .contact-form {
        padding: 15px !important;
        margin: 0 5px !important;
    }

    /* Navigation extra small screens */
    .nav-list {
        padding: 20px 15px !important;
    }

    .nav-list a {
        font-size: 1.1rem !important;
        padding: 12px !important;
    }
}

/* Landscape Tablet Optimization */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero,
    .about-hero,
    .contact-hero,
    .news-hero,
    .page-hero,
    .calibration-hero {
        min-height: 200px !important;
    }
}

/* Floating Social Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: white;
    text-decoration: none;
}

.facebook-btn {
    background: #1877F2;
}

.facebook-btn:hover {
    background: #166fe5;
}

.viber-btn {
    background: #7360F2;
}

.viber-btn:hover {
    background: #665ac1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 10px rgba(115, 96, 242, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Calibration Gallery Dropdown Styles */
.calibration-gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-header {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.gallery-header:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.gallery-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2rem;
}

.gallery-header h2 i {
    color: #4caf50;
    margin-right: 10px;
}

.gallery-header p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

.gallery-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-content.collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: -20px;
}

.gallery-content:not(.collapsed) {
    max-height: 2000px;
    opacity: 1;
    margin-top: 0;
}

.calibration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
}

.calibration-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.calibration-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}


.calibration-overlay {
    display: none;
}


.calibration-overlay i {
    display: none;
}

/* Image Modal Styles */
.image-modal {
    display: none;
}

/* Remove conflicting modal styles */

.close-modal {
    display: none;
}

.close-modal:hover {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calibration-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
    }
    
    .calibration-item img {
        height: 200px;
    }
    
    .gallery-header {
        padding: 20px;
    }
    
    .gallery-header h2 {
        font-size: 1.5rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
}
/* =========================================================
   FIX: Product cards should stack vertically on mobile,
   and images should be centered & full-width.
   Put this at the very end of styles.css
   ========================================================= */

/* Desktop/tablet: ensure image is centered inside its box */
.brand-section .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
}
.brand-section .product-img {
  display: block;
  margin: 0 auto;        /* center the <img> itself */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* MOBILE OVERRIDES */
@media (max-width: 600px) {
  /* 1) Make card vertical on mobile (override the row layout) */
  .brand-section .product-card {
    flex-direction: column !important;   /* beats existing row rule */
    align-items: stretch !important;
  }

  /* 2) Let the image container take full width (remove fixed 200/150/120px) */
  .brand-section .product-image {
    width: 100% !important;
    min-width: 0 !important;
    padding: 12px;                        /* comfy padding */
    aspect-ratio: 4 / 3;                  /* uniform height (optional) */
  }

  /* 3) Center the actual image and avoid any leftover margins */
  .brand-section .product-image .product-img,
  .brand-section .product-img {
    margin: 0 auto !important;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
  }

  /* 4) Single column grid for product list */
  .brand-section .products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}
/* ---- AOS fallback for CTA ---- */
.contact-cta-section[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 2; /* just in case may element na nag-o-overlap */
}
/* ===== Big CTA button style ===== */
.modal-contact-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; font-size: 1.05rem; line-height: 1.2;
  border-radius: 12px; font-weight: 700;
}
.modal-contact-btn i { font-size: 1.15em; }
.modal-email-btn { background:#25a244; color:#fff; border:1px solid #1d7f36; box-shadow:0 6px 18px rgba(37,162,68,.25); }
.modal-email-btn:hover { background:#1f8e3b; transform:translateY(-1px); box-shadow:0 8px 22px rgba(37,162,68,.32); }
.modal-contact-section .modal-email-btn.is-full, .gem-inquiry .modal-email-btn.is-full { display:block; width:100%; }

/* ===== Inline Inquiry Email Panel ===== */
.inquiry-email-panel {
  margin-top:12px; border:1px solid #e6ebf1; border-radius:10px; background:#f9fbfa;
  padding:12px 15px; animation:fadeIn .25s ease-in-out;
}
.inquiry-help { margin:0 0 10px 0; font-size:.95rem; color:#333; }
.inquiry-email-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 12px; margin-bottom:8px; background:#fff; border:1px solid #dce3e8; border-radius:8px;
}
.inquiry-email { font-family:monospace; font-size:.95rem; color:#1b5e20; word-break:break-all; }
.inquiry-copy {
  border:1px solid #c8e6c9; background:#e8f5e9; color:#1b5e20;
  padding:6px 12px; border-radius:6px; font-size:.85rem; font-weight:600; cursor:pointer; transition:.2s;
}
.inquiry-copy:hover { background:#d6f0d7; }
.inquiry-note { margin-top:6px; font-size:.85rem; color:#444; }
.inquiry-mailto { color:#2e7d32; text-decoration:underline; }
@keyframes fadeIn { from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:translateY(0)} }
/* Suggestion dropdown positioning for your .products-search */
.products-search { position: relative; }

/* Suggestion dropdown (reuse your earlier styles if present) */
.search-suggest {
  position: absolute;
  z-index: 9999;
  left: 0; right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  overflow: hidden;
  display: none;
}
.search-suggest.show { display: block; }

.search-suggest-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  cursor:pointer;
  border-top:1px solid #f2f4f7;
}
.search-suggest-item:hover,
.search-suggest-item.active{ background:#f5fbf7; }


.search-suggest-thumb {
  width: 44px; height: 44px; border-radius: 8px;
  object-fit: contain; background:#f6f7f8; border:1px solid #edf0f3;
}

.search-suggest-title { font-weight: 700; line-height: 1.2; }
.search-suggest-meta  { font-size: .82rem; color: #567; }
.search-suggest-code  { font: 600 .82rem ui-monospace, Menlo, Consolas, monospace; color: #1f8e3b; }

/* Pulse highlight when scrolling to a card */
.card-pulse {
  box-shadow: 0 0 0 3px #b8eec7, 0 10px 24px rgba(0,0,0,.12) !important;
  animation: cardPulse 1.2s ease-out 1;
}
@keyframes cardPulse {
  0% { box-shadow: 0 0 0 0 rgba(31,142,59,.35); }
  100% { box-shadow: 0 0 0 3px rgba(31,142,59,0); }
}
/* ===== Search suggestions (works inside .products-search) ===== */
.products-search { position: relative; }

.search-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  z-index: 9999; background: #fff; border: 1px solid #e5e9ee;
  border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.08);
  overflow: hidden; display: none;
}
.search-suggest.show { display: block; }

.search-suggest-group { padding: 6px 0; }
.search-suggest-header {
  font-size: .75rem; font-weight: 800; opacity: .65; padding: 6px 12px;
  text-transform: uppercase; letter-spacing: .04em;
}
.search-suggest-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  cursor:pointer;
  border-top:1px solid #f2f4f7;
}
.search-suggest-item:hover,
.search-suggest-item.active{ background:#f5fbf7; }

.search-suggest-item:hover, .search-suggest-item.active { background: #f5fbf7; }

.suggest-thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: contain;
  background:#f6f7f8; border:1px solid #edf0f3; }
.suggest-title { font-weight: 700; line-height: 1.2; }
.suggest-meta  { font-size: .82rem; color: #567; }
.suggest-code  { font: 600 .82rem ui-monospace, Menlo, Consolas, monospace; color: #1f8e3b; }

/* Pulse highlight kapag nag-scroll tayo sa card */
.card-pulse { box-shadow: 0 0 0 3px #b8eec7, 0 10px 24px rgba(0,0,0,.12)!important; animation: cardPulse 1.2s ease-out 1; }
@keyframes cardPulse { 0%{box-shadow:0 0 0 0 rgba(31,142,59,.35)} 100%{box-shadow:0 0 0 3px rgba(31,142,59,0)} }
/* ====== Search Suggestions Styling ====== */
.search-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  border-top: 1px solid #f2f4f7;
}

.search-suggest-item > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.suggest-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-meta {
  font-size: 0.8rem;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-code {
  font-size: 0.7rem;
  font-weight: bold;
  color: #1b5e20;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e8f5e9;
  white-space: nowrap;
}
/* Let suggestion text wrap to full names */
.search-suggest-item { align-items: flex-start; } /* rows can grow vertically */
.search-suggest-item > div:first-child {
  overflow: visible;      /* remove clipping */
}
.suggest-title,
.suggest-meta {
  white-space: normal;    /* allow wrapping */
  overflow: visible;
  text-overflow: unset;
  line-height: 1.2;
}

/* CF: carousel wrapper fix */
.carousel-wrapper{ position:relative; }
.carousel-viewport{ overflow:hidden; position:relative; }
.carousel-track{ display:flex; gap:24px; transition:transform .4s ease; }
.carousel-btn{ position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%; 
  display:flex; align-items:center; justify-content:center; border:none; cursor:pointer; 
  background:#e8f5e9; box-shadow:0 6px 16px rgba(0,0,0,.12); }
.carousel-btn.prev{ left:-12px; } 
.carousel-btn.next{ right:-12px; }
.carousel-btn:hover{ background:#d1ead4; }

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-header h4 {
    font-size: 1.2rem;
    color: #333;
}
.cta-section {
  text-align: center;
  padding: 40px 0;
}

.cta-buttons {
  margin-top: 16px;
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 16px;               /* space between buttons kung madami */
  flex-wrap: wrap;         /* para responsive sa small screen */
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(46, 125, 50, 0.9); /* darker green para kita */
  color: #fff; /* white arrow icon */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.carousel-btn:hover {
  background: #2e7d32; /* solid green on hover */
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn i {
  font-size: 20px;
  pointer-events: none; /* para click-through */
}
/* === Calibration title strip (screenshot look) === */
.calib-title-strip {
  background: #222;
  border-top: 4px solid #ffc107;
  border-bottom: 4px solid #ffc107;
  padding: 14px 0;
  text-align: center;
}
.calib-title-strip h2 {
  color: #ffc107;
  letter-spacing: 4px;
  font-weight: 800;
  text-shadow: 1px 1px 0 #000;
}

/* === Numbered multi-column list === */
.calib-services-list {
  background: #fafafa;
  padding: 28px 0 8px;
}
.calib-list {
    columns: 2;
    column-gap: 40px;
    font-size: 1rem;
    list-style-type: disc;   /* ito yung default bullets */
    list-style-position: inside;
    padding-left: 20px;      /* para hindi dumikit sa gilid */

}
.calib-list li {
  margin: 6px 0;
  break-inside: avoid;
}
@media (min-width: 1100px) {
  .calib-list { columns: 3; } /* widescreen: 3 columns */
}
@media (max-width: 768px) {
  .calib-list { columns: 1; } /* mobile: single column */
}

/* === Consolidated gallery === */
.calib-gallery-wrap { padding: 24px 0 60px; }
.clickable-header {
  display:flex; align-items:center; justify-content:space-between;
  background:#2e7d32; border:1px solid #e3e8e5; border-radius:14px;
  padding:16px 18px; cursor:pointer; box-shadow:0 4px 18px rgba(0,0,0,.05);
}
.clickable-header h3 { margin:0; color:#fff; font-weight:700; }
.clickable-header p { margin:0; color:#fff; font-size:.95rem; }
.clickable-header .chev { color:#fff; font-size:1rem; margin-left:10px; }

.calib-gallery { margin-top:16px; display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
.calib-gallery.collapsed { display:none; }
.cg-item { position:relative; overflow:hidden; border-radius:12px; background:#f6f6f6; }
.cg-item img { width:100%; height:220px; object-fit:cover; display:block; transition:transform .3s ease; }
.cg-item:hover img { transform:scale(1.04); }
/* === Services title strip (same vibe as calibration) === */
.svc-title-strip {
  background:#222;
  border-top:4px solid #ffc107;
  border-bottom:4px solid #ffc107;
  padding:14px 0;
  text-align:center;
}
.svc-title-strip h2{
  color:#ffc107;
  letter-spacing:4px;
  font-weight:800;
  text-shadow:1px 1px 0 #000;
}

/* === Multi-column numbered list (dot-dot style) === */
.svc-services-list{ background:#fafafa; padding:28px 0 8px; }
.svc-list{
  columns:2;
  column-gap:40px;
  list-style-position:inside;
  font-size:1rem;
}
.svc-list li{ margin:6px 0; break-inside:avoid; }
@media (min-width:1100px){ .svc-list{ columns:3; } }
@media (max-width:768px){ .svc-list{ columns:1; } }

/* === Consolidated gallery for demos & trainings === */
.svc-gallery-wrap{ padding:24px 0 60px; }
.svc-clickable-header{
  display:flex; align-items:center; justify-content:space-between;
  background:#2e7d32; border:1px solid #e3e8e5; border-radius:14px;
  padding:16px 18px; cursor:pointer; box-shadow:0 4px 18px rgba(0,0,0,.05);
}
.svc-clickable-header h3{ margin:0; color:#fff; font-weight:700; }
.svc-clickable-header p{ margin:0; color:#fff; font-size:.95rem; }
.svc-clickable-header .chev{ color:#fff; font-size:1rem; margin-left:10px; }

.svc-gallery{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}
.svc-gallery.collapsed{ display:none; }
.sg-item{ position:relative; overflow:hidden; border-radius:12px; background:#f6f6f6; }
.sg-item img{
  width:100%; height:220px; object-fit:cover; display:block;
  transition:transform .3s ease;
}
.sg-item:hover img{ transform:scale(1.04); }
/* Inquiry Banner */
.inquiry-banner {
  background: linear-gradient(135deg, #e8f5e9, #f1f8f6);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 30px 0 10px;
  text-align: center;
  font-size: 1rem;
  color: #2e7d32;
  box-shadow: 0 6px 18px rgba(46,125,50,0.08);
}

.inquiry-banner i {
  color: #2e7d32;
  margin-right: 6px;
}

.inquiry-banner a {
  color: #1b5e20;
  font-weight: 600;
  text-decoration: none;
}

.inquiry-banner a:hover {
  text-decoration: underline;
}
.slideshow-dots {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.slideshow-dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.slideshow-dot.active {
  background-color: #2e7d32; /* brand green */
}

@media (max-width:1024px){
  .nav-list.desktop-nav{display:none !important;}
}


/* --- MOBILE: hide desktop actions --- */
@media (max-width: 1024px){
  .nav-actions{ display:none !important; }
}

/* --- MOBILE drawer actions (inside overlay) --- */
.mobile-actions{
  margin: 16px 20px 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.mobile-actions .action-btn{
  justify-content:center;
  width:100%;
}
@media (max-width:600px){
  .mobile-menu-overlay{
    padding-bottom: 96px; /* space for actions */
  }
  .mobile-actions{
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 20px;
    box-shadow: 0 -6px 20px rgba(0,0,0,.08);
    z-index: 10002;
  }
}
