:root {
    /* Modern & Colorful Palette */
    --color-primary: #FF6F00; /* Vibrant Sunset Orange */
    --color-primary-dark: #E65100;
    --color-secondary: #01579B; /* Deep Ocean Blue */
    --color-secondary-light: #0277BD;
    
    --color-text-main: #263238; /* Blue Grey */
    --color-text-light: #546E7A;
    
    --color-bg: #FAFAFA;
    --color-bg-alt: #F5F7FA;
    --color-white: #FFFFFF;
    
    --color-accent: #FFD54F; /* Golden Amber */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-accent: 'Playfair Display', serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    --container-width: 1240px;
    --gutter: 24px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden; /* Keep only on body to prevent horizontal scroll */
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 0 0 16px;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.center-aligned {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.4);
}

.btn-white-outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-white-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* --- Sticky Modern Header --- */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: var(--color-white);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.top-header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 80px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-header.scrolled .brand-name {
    color: var(--color-text-main);
}

.nav-list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list a {
    color: var(--color-text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 10px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-list a:not(.nav-btn):not(.btn-download):hover {
    background: rgba(0,0,0,0.05);
    color: var(--color-primary) !important;
    transform: translateY(-1px);
}

/* --- Dropdown Menu (Desktop) --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1100;
}

.dropdown-trigger {
    position: relative;
}

.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.9rem !important;
}

.dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary) !important;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
    display: inline-block;
    transition: transform var(--transition-fast);
}

.dropdown-trigger:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop: Show Main Items, Hide Submenu Duplicates */
.responsive-main-item {
    display: block;
}

.responsive-submenu-item {
    display: none;
}

/* Hide About Dropdown on Desktop (Empty) */
.about-dropdown-trigger .dropdown-arrow {
    display: none;
}

.about-dropdown-trigger:hover .dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}


.nav-list .nav-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.nav-list .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

.btn-download {
    padding: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #002366, #003399); /* English Professional Blue */
    color: var(--color-white) !important;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 15px rgba(0, 51, 153, 0.3);
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    z-index: 9999;
}

/* Fixed Positioning Modifier */
.fixed-download-btn {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

/* Footer Button Modifier */
.footer-download-btn {
    margin-top: 20px;
    position: relative; /* Ensure it's not fixed */
    transform: none; /* Reset transform */
    width: auto !important; /* Force full width */
    height: auto !important;
    padding: 12px 30px; /* Standard padding */
    background: #FFFFFF !important; /* White background */
    color: #002366 !important; /* Royal Blue Text */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-download-btn .btn-text {
    opacity: 1 !important;
    transform: none !important;
    padding-right: 0;
    padding-left: 10px;
}

.footer-download-btn .icon-pdf {
    width: 24px;
    height: 24px;
}

.footer-download-btn .icon-pdf svg {
    width: 24px;
    height: 24px;
    fill: #002366; /* Match text color */
}

.footer-download-btn:hover {
    width: auto !important;
    transform: translateY(-3px);
    background: #f8f9fa !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.icon-pdf {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-pdf svg {
    width: 28px;
    height: 28px;
}

.btn-text {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding-right: 20px;
    font-size: 0.95rem;
}

.btn-download:hover {
    width: 240px;
    box-shadow: 0 8px 25px rgba(0, 51, 153, 0.4);
}

.fixed-download-btn:hover {
    transform: translateY(calc(-50% - 2px));
}

.btn-download:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}

.top-header.scrolled .nav-list a {
    color: var(--color-text-main);
}

.top-header.scrolled .nav-list .nav-btn {
    background: var(--color-primary);
    color: var(--color-white);
}

.top-header.scrolled .nav-list .nav-btn:hover {
    background: var(--color-primary-dark);
}

.top-header.scrolled .btn-download {
    color: var(--color-white) !important;
}

/* --- Footer --- */
.site-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding-top: 80px;
}

.brand-footer .brand-logo {
    filter: brightness(0) invert(1);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.newsletter-form {
    display: flex;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
}

.newsletter-form button {
    padding: 12px 20px;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    border: none;
    background: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
    font-weight: bold;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--color-primary-dark);
}

.footer-base {
    padding: 24px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* --- Responsive & Mobile Menu --- */

/* Mobile Toggle - Default hidden */
.mobile-toggle {
    display: none;
}

/* Footer Responsive Grid */
@media (max-width: 1024px) {
    .container { max-width: 960px; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { max-width: 100%; }
    .footer-container { grid-template-columns: 1fr; }
}

/* Mobile Menu Implementation (1124px) */
@media (max-width: 1124px) {
    /* Mobile Toggle Button */
    .mobile-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-text-main);
        margin-bottom: 6px;
        transition: all 0.3s;
    }

    /* Mobile Toggle Active Animation */
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Navigation List - Slide Out */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        width: 100%;
        margin-bottom: 15px;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    /* Mobile Dropdown Handling */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        display: none; /* Hidden by default in mobile */
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9f9;
        margin-top: 10px;
    }

    .dropdown-trigger.active .dropdown-menu {
        display: block;
    }

    .dropdown-arrow {
        float: right;
        transform: rotate(0deg);
        transition: transform 0.3s;
    }

    .dropdown-trigger.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Mobile: Hide Main Items, Show in Submenu */
    .responsive-main-item {
        display: none !important;
    }
    
    .responsive-submenu-item {
        display: block !important;
    }

    /* Show About Dropdown Arrow on Mobile */
    .about-dropdown-trigger .dropdown-arrow {
        display: block !important;
    }
    
    /* Allow dropdown to open on Mobile */
    .about-dropdown-trigger.active .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
}

/* =========================================
   HOME PAGE SPECIFIC CSS
   (Extracted from style.css)
   ========================================= */

/* --- Hero Slider --- */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    padding-top: 80px;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    display: inline-block;
    width: fit-content;
    border-radius: 4px;
}

.slide-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    display: inline-block;
    width: fit-content;
    border-radius: 4px;
}

.slide-actions {
    display: flex;
    gap: 16px;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.prev-slide, .next-slide {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.prev-slide:hover, .next-slide:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* --- Certificates Marquee --- */
.certificates-section {
    padding: 60px 0;
    background: var(--color-white);
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cert-item {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text-light);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.cert-item:hover {
    opacity: 1;
    color: var(--color-primary);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.5;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-secondary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    transition: transform var(--transition-smooth);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--color-white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-primary);
}

/* --- Products --- */
.products {
    padding: 120px 0;
    background: var(--color-white);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.product-card:hover .btn-icon {
    transform: translateY(0);
}

.card-content {
    padding: 24px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.product-text {
    font-size: 0.9rem;
    margin: 0;
}

/* --- Why Us --- */
.why-us {
    padding: 120px 0;
    background: var(--color-bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-fast);
}

.why-card:hover .icon-box {
    background: var(--color-primary);
}

.icon {
    font-size: 2rem;
}

.why-title {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* --- Infrastructure Carousel --- */
.infrastructure-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
    overflow: hidden;
}

.infra-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.infra-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.infra-carousel::-webkit-scrollbar {
    display: none;
}

.infra-card {
    flex: 0 0 350px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border-bottom: 4px solid transparent;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--color-primary);
}

.infra-image {
    height: 220px;
    overflow: hidden;
}

.infra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infra-card:hover .infra-image img {
    transform: scale(1.1);
}

.infra-content {
    padding: 24px;
}

.infra-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.infra-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.infra-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.infra-prev { left: 10px; }
.infra-next { right: 10px; }

@media (max-width: 768px) {
    .infra-btn { display: none; }
}

/* --- Clients Carousel --- */
.clients-section {
    padding: 80px 0;
    background: var(--color-white);
}

.client-marquee {
    margin-top: 40px;
}

.client-item {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0,0,0,0.15);
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
}

.client-item:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 120px 0;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    background: #000;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    opacity: 0.95;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-quote {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    color: var(--color-white);
}

.btn-white-filled {
    background: var(--color-white);
    color: var(--color-secondary);
    padding: 16px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-white-filled:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--color-primary);
}

/* Pulse Animation */
@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pulse-animation {
    animation: pulse-white 2s infinite;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(50px);
}

.slide-right {
    transform: translateX(-50px);
}

.slide-left {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.8);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Home Page Specific Responsive --- */
@media (max-width: 1024px) {
    .about-container { gap: 40px; }
    .slide-title { font-size: 3.5rem; }
    .product-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .slide-title { font-size: 2.5rem; }
    .about-container { grid-template-columns: 1fr; }
    .about-image { order: -1; margin-bottom: 40px; }
    .cta-heading { font-size: 2.5rem; }
    .infra-card { flex: 0 0 280px; }
}

/* =========================================
   ABOUT PAGE SPECIFIC CSS
   (Extracted from style.css)
   ========================================= */

/* --- Inner Page Hero --- */
.inner-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.inner-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-accent);
}

.breadcrumb {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li + li::before {
    content: '/';
    margin: 0 10px;
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

.breadcrumb .active {
    color: var(--color-primary);
}

/* Responsive adjustments for Inner Hero */
@media (max-width: 768px) {
    .inner-hero {
        height: 300px;
    }
    .inner-hero-title {
        font-size: 2.5rem;
    }
}

.about-page-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mission-vision-modern {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Vision & Mission Modern Design */
.vision-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.mission-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt); /* Distinct light background */
}

.mv-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mv-row.reverse {
    flex-direction: row-reverse;
}

.mv-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.mv-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mv-image:hover img {
    transform: scale(1.03);
}

.mv-content {
    flex: 1;
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.mv-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mv-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.mv-row.reverse .mv-content h3::after {
    /* If centered on mobile, this needs adjustment, but for desktop it stays left aligned as per standard. 
       However, if we want alternating text alignment, we can add that. 
       Standard modern design usually keeps text left-aligned even if image is on right. */
}

.mv-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .mv-row {
        gap: 40px;
    }
    
    .mv-image img {
        height: 350px;
    }
    
    .mv-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mv-row, .mv-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .mv-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mv-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mv-row {
        padding: 20px;
    }
}

/* --- Products Page CSS --- */
.products-section {
    padding: 100px 0;
    background: var(--color-white);
}

.product-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    background: var(--box-bg);
    --ring-size: 1px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 360px;
    position: relative;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-row:hover .product-image img {
    transform: scale(1.05);
}

/* Show overlay on hover for products page images */
.product-image:hover .gallery-overlay {
    opacity: 1;
}

.product-content {
    flex: 1;
}

.product-content h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.product-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 14px;
    list-style: none;
    padding: 0;
}

.product-list li {
    background: var(--color-white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--color-text-main);
}

.theme-mens {
    --box-bg: #f9fafb;
    --grad-start: #0ea5e9;
    --grad-end: #6366f1;
}

.theme-womens {
    --box-bg: #fff7f8;
    --grad-start: #ec4899;
    --grad-end: #f59e0b;
}

.theme-kids {
    --box-bg: #f7fff9;
    --grad-start: #22c55e;
    --grad-end: #06b6d4;
}

.theme-children {
    --box-bg: #f7f7ff;
    --grad-start: #a855f7;
    --grad-end: #f43f5e;
}

.product-row::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(from 0deg, var(--grad-start), var(--grad-end), var(--grad-start));
    animation: rotateBorder 8s linear infinite;
}

.product-row::after {
    content: "";
    position: absolute;
    inset: var(--ring-size);
    border-radius: calc(var(--radius-lg) - var(--ring-size));
    background: var(--box-bg);
}

.product-row > * {
    position: relative;
    z-index: 1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .product-row, .product-row.reverse {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }
    .product-image {
        width: 100%;
        height: 300px;
    }
    .product-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-row {
        padding: 20px;
    }
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.25), rgba(255,255,255,0));
    transform: skewX(-20deg);
}

.btn-gallery:hover::before {
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% { left: -120%; }
    100% { left: 120%; }
}

.product-gallery-section {
    padding: 100px 0;
    background: var(--color-white);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px; /* Increased gap */
    justify-content: center; /* Center to make more visible */
}

.filter-btn {
    padding: 12px 22px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--color-white);
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 1.15rem; /* Increased font size by ~15% */
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary);
}

@keyframes active-border-pulse {
    0% { 
        border-color: var(--color-white); 
        box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4);
    }
    50% { 
        border-color: var(--color-accent); 
        box-shadow: 0 0 0 4px rgba(255, 213, 79, 0.5);
    }
    100% { 
        border-color: var(--color-white); 
        box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4);
    }
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-white);
    animation: active-border-pulse 2s infinite;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-item {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.05);
}

.gallery-title {
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 16px 16px;
    color: var(--color-text-main);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- Lightbox CSS --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s, color 0.3s;
    border-radius: 4px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-primary);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 8px 12px;
        font-size: 24px;
    }
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

/* --- Mobile Menu (Breakpoint 1124px) --- */
.mobile-toggle {
    display: none;
    width: 30px; 
    height: 20px; 
    position: relative; 
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block; 
    width: 100%; 
    height: 2px; 
    background: var(--color-text-main); 
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1124px) {
    .mobile-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        width: 100%;
        margin-bottom: 15px;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    /* Mobile Dropdown Handling */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        display: none; /* Hidden by default in mobile */
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9f9;
        margin-top: 10px;
    }

    .dropdown-trigger.active .dropdown-menu {
        display: block;
    }

    .dropdown-arrow {
        float: right;
        transform: rotate(0deg);
        transition: transform 0.3s;
    }

    .dropdown-trigger.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Ensure responsive items are visible in mobile menu */
    .responsive-main-item {
        display: block !important;
    }
    
    /* In mobile, we don't want the About submenu to contain Quality/CSR if they are also in main list.
       However, the user might want a cleaner list. 
       Let's keep the standard structure: 
       If < 1124px, we are in "mobile mode". 
       The 1200px rules might conflict if we don't reset them.
       Specifically, .responsive-submenu-item is block !important in < 1200px.
       We should hide them in mobile if we show them in main list, OR show them in submenu and hide in main.
       Common mobile pattern: Show everything in a flat or nested list.
       Let's stick to the main structure. 
       I will force show .responsive-main-item in mobile and hide .responsive-submenu-item 
       to avoid duplicates, or just let the user decide.
       Let's hide the submenu duplicates to keep it clean.
    */
    .responsive-submenu-item {
        display: none !important;
    }

    /* Hide the dropdown arrow for About in mobile since the submenu is empty */
    .about-dropdown-trigger .dropdown-arrow {
        display: none !important;
    }
}

/* --- Infrastructure Page CSS (New) --- */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.infra-unit-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.infra-unit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.infra-unit-img {
    height: 240px;
    overflow: hidden;
}

.infra-unit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infra-unit-card:hover .infra-unit-img img {
    transform: scale(1.05);
}

.infra-unit-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.infra-unit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.infra-unit-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.infra-capacity {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.infra-capacity strong {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Shared Modern Hero Section --- */
.modern-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Offset for fixed header */
}

.modern-hero-section.markets-hero {
    background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 100%);
}

.modern-hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.modern-hero-content {
    max-width: 600px;
}

.modern-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-main);
    font-family: var(--font-accent);
}

.modern-hero-desc {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modern-hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.modern-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.modern-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .modern-hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modern-hero-content {
        margin: 0 auto 40px;
    }
    
    .modern-hero-image {
        transform: none;
        max-width: 80%;
        margin: 0 auto;
    }
}

/* --- Markets Page CSS --- */

.markets-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.market-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.market-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.market-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.market-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.market-card:hover .market-img img {
    transform: scale(1.1);
}

.market-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.market-card:hover .market-overlay {
    opacity: 0.8;
}

.market-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.market-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.market-card:hover .market-info h3 {
    color: var(--color-primary);
}

.market-country {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.market-country .flag {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Responsive Markets */
@media (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .market-img {
        height: 200px;
    }
}

/* --- Quality Page CSS --- */

/* Quality Policy */
.quality-policy-section {
    padding: 100px 0;
    background: var(--color-white);
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.policy-content .sub-heading {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.policy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.policy-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.policy-list li i {
    color: var(--color-primary);
    margin-right: 12px;
    font-weight: bold;
}

.policy-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.policy-image img {
    width: 100%;
    transition: transform var(--transition-smooth);
}

.policy-image:hover img {
    transform: scale(1.05);
}

.policy-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--color-primary);
}

.policy-badge .percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.policy-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

/* QC Process */
.quality-process-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 4px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-primary);
}

.process-icon {
    padding: 24px 24px 0;
}

.process-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.process-content {
    padding: 24px;
    flex: 1;
}

.process-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.process-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-light);
}

.process-img {
    height: 160px;
    overflow: hidden;
    margin-top: auto;
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-card:hover .process-img img {
    transform: scale(1.1);
}

/* Certifications Grid */
.cert-section {
    padding: 80px 0;
    background: var(--color-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    background: var(--color-bg-alt);
    padding: 40px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
}

.cert-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.cert-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 10px;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.cert-card:hover .cert-logo {
    color: var(--color-primary);
    opacity: 1;
}

.cert-card p {
    margin: 0;
    font-weight: 600;
    color: var(--color-text-main);
}

/* Responsive */
@media (max-width: 1024px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-grid, .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid, .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 80%;
        justify-content: center;
    }
    
    .policy-image {
        margin-bottom: 40px;
    }
}

/* --- CSR Page CSS --- */

.csr-vision-section {
    padding: 100px 0;
    background: var(--color-white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-quote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--color-primary);
    font-style: italic;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 1.2rem;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vision-stat-card {
    background: var(--color-bg-alt);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-fast);
}

.vision-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.vision-stat-card .v-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.vision-stat-card .v-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.vision-stat-card .v-label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* CSR Pillars */
.csr-pillar-section {
    padding: 100px 0;
}

.csr-pillar-section.bg-light {
    background: var(--color-bg-alt);
}

.csr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.csr-grid.reverse-layout .csr-text {
    order: 2;
}

.csr-grid.reverse-layout .csr-image {
    order: 1;
}

.csr-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.csr-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.csr-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--color-text-light);
    font-weight: 500;
}

.csr-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    top: 0;
}

.mt-5 { margin-top: 80px; }

/* Welfare Grid */
.welfare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.welfare-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.welfare-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.welfare-card .w-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.welfare-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.welfare-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Community Section */
.csr-community-section {
    padding: 100px 0;
    background: url('https://placehold.co/1920x800/004d40/ffffff?text=Community+Background') no-repeat center center/cover;
    position: relative;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.relative { position: relative; }
.z-10 { z-index: 10; }
.text-white { color: #fff !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }

.community-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.community-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform var(--transition-fast);
}

.community-item:hover {
    transform: translateY(-10px);
}

.community-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.community-item .c-content {
    padding: 24px;
}

.community-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.community-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive CSR */
@media (max-width: 1024px) {
    .vision-grid, .csr-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .csr-grid.reverse-layout .csr-text { order: 1; }
    .csr-grid.reverse-layout .csr-image { order: 2; }
    
    .welfare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .welfare-grid, .community-slider {
        grid-template-columns: 1fr;
    }
    
    .vision-stats-grid {
        gap: 15px;
    }
}

/* --- Product Gallery Hover Effects --- */

.gallery-thumb {
    position: relative;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item:hover .zoom-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.zoom-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}


/* --- Modern Contact Page Design --- */

.contact-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.contact-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Details (Left Side) */
.contact-details {
    padding-right: 20px;
}

.info-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border-left: 5px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.info-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.team-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    position: relative;
    padding-left: 15px;
    font-weight: 700;
}

.team-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.person-card {
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.person-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.person-info h4 {
    color: var(--color-text-main);
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 700;
}

.person-info .role {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.2s;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--color-secondary);
}

.contact-link .icon {
    font-size: 1.1rem;
}

/* Contact Form (Right Side) */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.1);
}

.modern-form .btn {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 16px;
    cursor: pointer;
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
    margin-top: 0;
}

.map-section iframe {
    filter: grayscale(20%) contrast(1.1); /* Subtle modern map look */
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-details {
        padding-right: 0;
    }

    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .brand-logo {
        height: 50px;
    }
}