/* ===================================
   GARMENT MANUFACTURING CMS STYLES
   Color Palette:
   - Primary: Deep Navy Blue (#1a2332)
   - Secondary: Industrial Cool Grey (#6b7280)
   - Background: Clean White (#ffffff)
   - Accent: Bronzed Gold (#c9a961)
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* New Global Color Palette */
    --primary-bg: #1A1F2C;
    /* Deep Navy/Charcoal - for Footer and Header */
    --secondary-bg: #FFFFFF;
    /* White - for content sections */
    --accent-gold: #E2B94C;
    /* For Headings, Buttons, and Active Links */
    --accent-green: #4CAF50;
    /* For Sustainability icons only */
    --text-main: #333333;
    /* Dark Grey on white backgrounds */
    --text-light: #FFFFFF;
    /* White on dark backgrounds */

    /* Mappings for existing classes */
    --primary-navy: var(--primary-bg);
    --secondary-grey: var(--text-main);
    --background-white: var(--secondary-bg);
    --text-dark: var(--text-main);

    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    background-color: var(--secondary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-gold);
}

h1 {
    text-transform: uppercase;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.placeholder-box {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-grey);
    font-weight: 600;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    min-height: 200px;
    text-align: center;
    padding: 2rem;
}

/* === HEADER === */
.header {
    background-color: var(--primary-bg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-placeholder {
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* === NAVIGATION === */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    display: block;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: #f9fafb;
    color: var(--accent-gold);
    padding-left: 2rem;
}

/* Contact Button */
.contact-btn {
    background: var(--accent-gold);
    color: var(--primary-bg);
    /* Dark Navy text on Gold */
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #b8964d, var(--accent-gold));
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8), rgba(107, 114, 128, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ABOUT SECTION === */
.about-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-grey);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === INDUSTRIES SECTION === */
.industries-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-grey);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.industry-card {
    min-width: 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 600px;
    /* Increased from 500px to fit content */
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-card-image {
    height: 220px;
    /* Reduced from 250px to give more text space */
    overflow: hidden;
    flex-shrink: 0;
}

.industry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-card:hover .industry-card-image img {
    transform: scale(1.1);
}

.industry-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.industry-card-title {
    font-size: 1.4rem;
    /* Slightly reduced for better fit */
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.industry-card-description {
    color: var(--secondary-grey);
    margin-bottom: 0.5rem;
    /* Reduced margin */
    font-size: 0.95rem;
    line-height: 1.5;
    /* Slightly reduced line height */
    flex-grow: 1;
    /* Allow description to fill available space */
}

.industry-card-capacity {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    /* Prevent capacity from shrinking */
}

.industry-card-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-gold);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    /* Align to bottom */
}

.industry-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--accent-gold);
    color: var(--primary-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

/* === NEWS SECTION === */
.news-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.3rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-subtitle {
    color: var(--secondary-grey);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

.news-see-more {
    text-align: center;
    margin-top: 3rem;
}


/* === CLIENTS SECTION === */
.clients-section {
    padding: 4rem 0;
    background-color: var(--background-white);
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.clients-see-more {
    text-align: center;
}



@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* === MEMBERSHIPS SECTION === */
.memberships-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.memberships-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.membership-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    max-width: 180px;
}

.membership-logo:hover {
    transform: translateY(-8px);
}

.membership-logo img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.membership-logo:hover img {
    filter: grayscale(0%);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.membership-name {
    font-size: 0.85rem;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-top: 2px solid var(--accent-gold);
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

/* Responsive Design for Memberships */
@media (max-width: 1024px) {
    .memberships-row {
        gap: 2rem;
    }

    .membership-logo {
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .memberships-row {
        gap: 1.5rem;
    }

    .membership-logo {
        max-width: 140px;
    }

    .membership-logo img {
        height: 60px;
        max-width: 120px;
    }

    .membership-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .memberships-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .membership-logo {
        max-width: 200px;
    }

    .membership-logo img {
        height: 70px;
        max-width: 150px;
    }
}

/* === GALLERY PREVIEW SECTION === */
.gallery-preview-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: white;
    cursor: pointer;
    height: 300px;
}

.gallery-preview-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-preview-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-preview-item:hover .gallery-preview-caption {
    transform: translateY(0);
}

.gallery-preview-caption p {
    font-size: 0.95rem;
    margin: 0;
}

.gallery-see-more {
    text-align: center;
    margin-top: 3rem;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: var(--accent-gold);
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #b8964d, var(--accent-gold));
}

.see-more-btn i {
    font-size: 1.2rem;
}

.gallery-preview-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--secondary-grey);
}

.gallery-preview-empty i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.gallery-preview-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

/* === FOOTER === */
.footer {
    background-color: var(--primary-navy);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* === MANUFACTURING PAGE === */
.page-banner {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manufacturing-content {
    padding: 6rem 0;
}

.manufacturing-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.manufacturing-section h2 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.manufacturing-section p {
    color: var(--secondary-grey);
}

/* === COMPANY STATISTICS SECTION === */
.stats-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 400px;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-navy);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(26, 35, 50, 0.75));
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stats-heading {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.stats-heading h2,
.stats-heading h3,
.stats-heading h4 {
    color: white;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stats-heading p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animated {
    animation: countUp 0.6s ease-out;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-card {
        min-width: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        font-size: 3rem;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-bg);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .main-nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-preview-item {
        height: 250px;
    }

    .see-more-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .contact-btn {
        margin-top: 1rem;
        display: inline-block;
        width: auto;
    }
}

/* === MANAGEMENT TEAM REFINED === */
.management-page-container {
    padding: 3rem 0;
    min-height: 600px;
    background-color: #fcfcfc;
}

/* Director (Top) */
.director-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.leader-card {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-card:hover {
    transform: translateY(-5px);
}

/* Specific Sizes */
.director-card-style {
    width: 320px;
}

.team-card-style {
    width: 280px;
}

/* Images */
.leader-img-container {
    width: 100%;
    position: relative;
    background: #e0e0e0;
}

.leader-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-card-style .leader-img {
    height: 280px;
}

/* Info Box */
.leader-info {
    padding: 1.5rem;
    width: 100%;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.leader-name {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.leader-designation {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.leader-contact {
    font-size: 0.85rem;
    color: var(--secondary-grey);
}

/* Team Grid (Flexbox for centering) */
.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

/* === PAGE HEADER === */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-grey) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-header-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-section h1 {
        font-size: 2rem;
    }
}