/* ===========================
   HERO CAROUSEL STYLES
=========================== */

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Content Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--white);
}

/* ===========================
   HERO CAROUSEL RESPONSIVE DESIGN
=========================== */

@media (max-width: 768px) {
    .hero {
        height: 500px;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .carousel-controls {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 450px;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===========================
   GLOBAL STYLES & VARIABLES
=========================== */
:root {
    --primary-color: #1a237e;
    --secondary-color: #283593;
    --accent-color: #3949ab;
    --dark-color: #0d1b36;
    --light-color: #e8eaf6;
    --white: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: var(--gray);
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-download {
    background: var(--success);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-download:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* ===========================
   HEADER & NAVIGATION — FIXED
=========================== */
header {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-top: 5px;
}

/* Override container inside header to be full width */
header .container {
    max-width: 100%;
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    min-height: 70px;
    gap: 10px;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
margin-left: 80%;
}

.logo h1 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 130px;
   
    
}

/* Company name — next to logo, wraps to 2 lines, fixed width, no flex grow */
.h1 {
    flex: 0 0 auto;
    text-align: left;
    margin: 0 10px 0 12px;
}

.h1 h1 {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
    max-width: 200px;
}

/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
    margin-left: 8px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}


nav {
    flex: 1 1 auto;
    margin-left: 0;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    align-items: center;
    width: 100%;
   margin-left: auto;
 
}

nav ul li {
    position: relative;
    margin-left: 5px;
    margin-right: 20px;

}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.82rem;
    white-space: nowrap;
   
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Staff Mail link */
#staff-mail-link {
    white-space: nowrap;
    padding: 8px 12px;
}

/* Dropdown Menu */
nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

nav ul li .dropdown li a {
    padding: 10px 18px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

nav ul li .dropdown li:last-child a {
    border-bottom: none;
}

nav ul li:hover .dropdown {
    display: block;
}

/* ===========================
   MINIMAL PROFESSIONAL SAWASCO HEADER TEXT
=========================== */
header .logo h1,
header .h1 h1,
header #sawasco {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background: linear-gradient(135deg, var(--white) 0%, #e8eaf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    max-width: 200px;
    word-break: break-word;
    margin-left: 15% !important;
   
}

/* ===========================
   STAFF MAIL STYLING
=========================== */
#staff-mail-link {
    background: var(--accent-color);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 15px !important;
    border-radius: 6px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#staff-mail-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===========================
   PROJECTS GRID SECTION
=========================== */
.projects-grid-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.projects-grid-section .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.projects-grid-section .header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-grid-section .header h2 {
    font-size: 2rem;
    color: #1a237e;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.projects-grid-section .header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a237e;
}

.projects-grid-section .header p {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 12px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.project-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab);
    z-index: 1;
}

.project-card .project-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 20;
    color: white;
}

.project-status.ongoing {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
}

.project-status.completed {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.project-gallery {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.project-gallery .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.project-gallery .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #1a237e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 15;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.project-gallery .gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.project-gallery .gallery-nav.prev { left: 12px; }
.project-gallery .gallery-nav.next { right: 12px; }

.project-gallery .gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 15;
}

.project-gallery .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-gallery .gallery-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.project-single-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.project-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-single-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 24px;
}

.project-title {
    color: #1a237e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-description {
    color: #495057;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #1a237e;
}

.meta-item i {
    color: #1a237e;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.meta-value {
    font-size: 0.82rem;
    color: #212529;
    font-weight: 600;
    line-height: 1.3;
}

.project-impact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
}

.project-impact h4 {
    color: #1a237e;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-impact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-impact li {
    padding: 5px 0 5px 24px;
    position: relative;
    color: #495057;
    font-size: 0.82rem;
    line-height: 1.4;
}

.project-impact li::before {
    content: '✓';
    position: absolute;
    left: 6px;
    color: #4caf50;
    font-weight: bold;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .projects-grid { gap: 25px; }
    .project-gallery, .project-single-image { height: 250px; }
}

@media (max-width: 768px) {
    .projects-grid-section { padding: 40px 15px; }
    .projects-grid-section .header h2 { font-size: 1.6rem; }
    .projects-grid { grid-template-columns: 1fr; gap: 20px; }
    .project-gallery, .project-single-image { height: 240px; }
    .project-info { padding: 20px; }
    .project-title { font-size: 1.2rem; }
    .project-description { font-size: 0.85rem; }
    .project-meta { grid-template-columns: 1fr; gap: 8px; }
    .meta-item { padding: 8px; }
    .project-gallery .gallery-nav { width: 34px; height: 34px; font-size: 18px; }
}

@media (max-width: 480px) {
    .project-gallery, .project-single-image { height: 200px; }
    .project-title { font-size: 1.1rem; }
    .meta-item { gap: 6px; }
    .meta-value { font-size: 0.78rem; }
    .project-impact li { font-size: 0.78rem; }
}

/* ===========================
   HERO SECTIONS - STATIC IMAGE
=========================== */
.hero {
    background: transparent;
    padding: 0 !important;
    margin-top: 0 !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.media-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

/* ===========================
   SECTION STYLES
=========================== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--dark-gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.section-header p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ===========================
   SERVICES PAGE SPECIFIC STYLES
=========================== */
.new-connection {
    padding: 100px 0 60px;
    background: var(--light-color);
}

.new-connection .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.new-connection .section-header p {
    font-size: 0.95rem;
}

.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.connection-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.connection-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 8px;
}

.connection-box ol,
.connection-box ul {
    padding-left: 20px;
}

.connection-box li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--dark-gray);
}

.connection-box ol li {
    padding-left: 5px;
}

.download-form {
    text-align: center;
    margin: 25px 0 35px;
}

.download-form .btn-download {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.payment-info {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.payment-info h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.payment-method {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--secondary-color);
}

.payment-method:last-child { margin-bottom: 0; }

.payment-method h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.payment-note {
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid #ffc107;
    font-size: 0.85rem;
    margin-top: 10px;
}

.bowser-services {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.bowser-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 8px;
}

.bowser-info ul,
.bowser-info ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.bowser-info li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bowser-info strong { color: var(--primary-color); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.pricing-tier {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.pricing-tier h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 5px;
}

.pricing-tier p {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0;
}

.emergency-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.emergency-notice h4 {
    color: #856404;
    margin-bottom: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-notice p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.operator-registration {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.operator-registration h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.requirement-category {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
}

.requirement-category h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.requirement-category ul { padding-left: 20px; }

.requirement-category li {
    margin-bottom: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.registration-process {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.registration-process h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.registration-process ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.registration-process li {
    margin-bottom: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.registration-benefits {
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.registration-benefits h4 {
    color: var(--success);
    margin-bottom: 10px;
    font-size: 1rem;
}

.registration-benefits ul { padding-left: 20px; }

.registration-benefits li {
    margin-bottom: 5px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.registration-note {
    background: #fff3cd;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* ===========================
   CARD STYLES
=========================== */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-card,
.department-card,
.project-card,
.service-card {
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.value-icon,
.department-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===========================
   SERVICE AREA
=========================== */
#service-area .section-title { margin-bottom: 30px; }
#service-area .section-title h2 { font-size: 1.8rem; }
#service-area .section-title p { font-size: 0.95rem; }

.area-map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.area-map {
    position: relative;
    background: #e8f4f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 300px;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-map img {
    width: 100%;
    height: auto;
    display: block;
}

.area-list {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.area-list h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    font-size: 1.3rem;
}

.area-list ul {
    list-style: none;
    margin-bottom: 20px;
}

.area-list li {
    padding: 6px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.area-list p {
    background: var(--light-color);
    padding: 12px;
    border-radius: 6px;
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    border-left: 3px solid var(--secondary-color);
    font-size: 0.9rem;
}

/* ===========================
   PUBLICATIONS
=========================== */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.publication-category {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.publication-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    font-size: 1.2rem;
}

.publication-item {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.publication-item h4 {
    color: var(--dark-color);
    margin-bottom: 6px;
    font-size: 1rem;
}

.publication-item p {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 0.85rem;
}

/* ===========================
   COMPLIANCE SECTIONS
=========================== */
.compliance-section {
    padding: 60px 0;
    background: var(--white);
}

.compliance-section:nth-child(even) {
    background: var(--gray);
}

.charter-commitments,
.tariff-tables,
.procedures-grid,
.complaint-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.commitment-card,
.tariff-table,
.procedure-card,
.channel-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 3px solid var(--accent-color);
}

.commitment-card h3,
.tariff-table h3,
.procedure-card h3,
.channel-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.commitment-card ul,
.procedure-card ol {
    padding-left: 20px;
}

.commitment-card li,
.procedure-card li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===========================
   TABLE STYLES
=========================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.85rem;
}

th {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

tr:nth-child(even) { background: #f8f9fa; }
tr:hover { background: #e3f2fd; }

/* ===========================
   WATER RATIONING
=========================== */
.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-table {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.schedule-note {
    text-align: center;
    color: var(--dark-gray);
    font-style: italic;
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
    font-size: 0.85rem;
}

/* ===========================
   SERVICE PROCEDURES
=========================== */
.procedure-card ol { padding-left: 20px; }

.procedure-card li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.balance-options p {
    margin-bottom: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 2px solid var(--secondary-color);
    font-size: 0.85rem;
}

/* ===========================
   FAQ
=========================== */
.faq-container {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    border-left: 3px solid var(--accent-color);
}

.faq-item h3 {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 15px;
    margin: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-item h3:hover { background: var(--secondary-color); }

.faq-item p {
    padding: 15px;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===========================
   CONTACT SECTION
=========================== */
#contact {
    padding: 40px 20px;
    background: #f8f9fa;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    font-size: 1.8rem;
    color: #1a237e;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
    font-size: 0.95rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 3px solid #1a237e;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.form-group { margin-bottom: 10px; }

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #3949ab;
    box-shadow: 0 0 4px rgba(57, 73, 171, 0.2);
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 70px;
    max-height: 100px;
}

.contact-form-container button {
    background: #1a237e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form-container button:hover {
    background: #0d1b36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.form-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}

.form-message.show { display: block; }
.form-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-message.error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

.map-container {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 3px solid #3949ab;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-container h3 {
    font-size: 1.1rem;
    color: #1a237e;
    margin: 0;
}

.map-container p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.map-frame {
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-content { grid-template-columns: 1fr; gap: 20px; }
    .contact-header h2 { font-size: 1.5rem; }
    .map-frame { height: 300px; }
    .contact-form-container, .map-container { padding: 20px; }
    .form-group { margin-bottom: 10px; }
    .contact-form-container textarea { min-height: 70px; }
}

@media (max-width: 576px) {
    #contact { padding: 25px 15px; }
    .contact-header h2 { font-size: 1.3rem; }
    .contact-form-container, .map-container { padding: 15px; }
    .map-frame { height: 250px; }
    .form-group { margin-bottom: 8px; }
    .contact-form-container label { font-size: 0.8rem; }
    .contact-form-container input,
    .contact-form-container select,
    .contact-form-container textarea { font-size: 0.85rem; padding: 7px 10px; }
    .contact-form-container button { font-size: 0.85rem; padding: 9px 15px; }
}

/* ===========================
   ABOUT PAGE
=========================== */
.company-overview {
    padding: 100px 0 60px;
    background: var(--light-color);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.overview-text {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.overview-text h2.text-center {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.legal-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.legal-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.legal-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.ownership-list { margin-top: 15px; }

.ownership-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.ownership-item:last-child { border-bottom: none; }

.ownership-percent {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.ownership-desc {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: right;
}

.growth-overview {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.growth-overview h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat:hover { transform: translateY(-3px); }

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin: 0;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stakeholder-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-left: 3px solid var(--accent-color);
}

.stakeholder-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stakeholder-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.stakeholder-card p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.4;
    margin: 0;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.mission-header, .vision-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.mission-header i, .vision-header i {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mission-header h3, .vision-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.mission-card p, .vision-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mission-commitments h4, .vision-goals h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.mission-commitments ul, .vision-goals ul { padding-left: 20px; }

.mission-commitments li, .vision-goals li {
    margin-bottom: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===========================
   CORE VALUES
=========================== */
.core-values {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.core-values .section-title { text-align: center; margin-bottom: 50px; }

.core-values .section-title h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.core-values .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.core-values .section-title p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid transparent;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: height 0.4s ease;
    z-index: -1;
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
    border-bottom: 4px solid var(--accent-color);
}

.value-card:hover::before { height: 100%; }

.value-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 12px;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.value-card:hover h3::after { width: 60px; }

.value-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.value-card:hover p { color: #333; }

.value-hover-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(57, 73, 171, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.value-card:hover .value-hover-effect {
    opacity: 1;
    transform: scale(3);
}

@media (max-width: 1200px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .core-values .section-title h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .core-values { padding: 50px 0; }
    .core-values .section-title h2 { font-size: 1.8rem; }
    .core-values .section-title p { font-size: 1rem; padding: 0 20px; }
    .values-grid { gap: 20px; }
    .value-card { padding: 25px 15px; }
    .value-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .value-card h3 { font-size: 1.1rem; }
}

@media (max-width: 576px) {
    .values-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
    .value-card { padding: 30px 20px; }
    .value-icon { width: 80px; height: 80px; font-size: 2rem; }
}

/* ===========================
   BOARD & MD CARDS
=========================== */
.leadership-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.leadership-main-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.leadership-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
}

.leadership-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.leadership-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.leadership-main-card:hover .leadership-image img { transform: scale(1.03); }

.leadership-content {
    padding: 25px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.leadership-content h3 {
    color: #1a237e;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.leadership-content .leadership-position {
    color: #3949ab;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8eaf6;
}

.leadership-main-card:first-child .leadership-content .leadership-position { display: none; }

.leadership-main-card:first-child .leadership-content::before {
    content: "Board Leadership";
    display: block;
    color: #3949ab;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8eaf6;
}

.leadership-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ===========================
   DEPARTMENT MANAGERS GRID
=========================== */
.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 20px auto 30px;
    max-width: 1200px;
    padding: 0 20px;
}

.department-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(26, 35, 126, 0.15);
}

.department-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.department-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.department-card:hover .department-image img { transform: scale(1.35); }

.department-content {
    padding: 18px 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.department-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.department-position {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* ===========================
   BRANCHES / SCHEMES MANAGERS
=========================== */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 20px auto 0;
    max-width: 1200px;
    padding: 0 20px 20px;
}

.branch-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #8e24aa;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.branch-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.branch-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-image img { transform: scale(1.08); }

.branch-content {
    padding: 18px 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.branch-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.branch-position {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* ===========================
   CENTERED HEADERS
=========================== */
.dept-header {
    text-align: center;
    margin: 50px 0 30px 0;
    width: 100%;
}

.dept-header h3 {
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.dept-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .leadership-top { gap: 30px; }
    .leadership-image { height: 300px; }
    .department-image { height: 180px; }
    .branch-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .leadership-top { grid-template-columns: 1fr; max-width: 550px; }
    .leadership-image { height: 320px; }
    .department-grid, .branch-grid { grid-template-columns: repeat(2, 1fr); }
    .department-image { height: 170px; padding: 10px; }
    .branch-image { height: 160px; }
}

@media (max-width: 576px) {
    .leadership-image { height: 280px; padding: 12px; }
    .department-image { height: 160px; padding: 8px; }
}

@media (max-width: 480px) {
    .department-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
    .branch-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-image { height: 260px; }
    .department-image { height: 200px; padding: 12px; }
    .branch-image { height: 190px; }
}

/* ===========================
   ACHIEVEMENTS SECTION
=========================== */
.achievements-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.achievements-section .section-title { text-align: center; margin-bottom: 40px; }

.achievements-section .section-title h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievements-section .section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.achievements-section .section-title p {
    color: var(--dark-gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.achievement-item {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(26, 35, 126, 0.02) 50%);
    z-index: 0;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.12);
    border-left: 4px solid var(--accent-color);
}

.achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 16px;
    border-radius: 25px;
    margin-bottom: 12px;
    box-shadow: 0 3px 8px rgba(26, 35, 126, 0.25);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.achievement-content { position: relative; z-index: 1; }

.achievement-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.achievement-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.stat-item:hover { transform: translateY(-3px); }

.stat-number {
    display: block;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .achievements-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .achievement-year { font-size: 0.95rem; padding: 4px 14px; }
}

@media (max-width: 768px) {
    .achievements-section { padding: 50px 0; }
    .achievements-section .section-title h2 { font-size: 1.8rem; }
    .achievements-grid { grid-template-columns: 1fr; gap: 16px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .achievement-item { padding: 20px 18px; }
    .achievement-year { font-size: 0.95rem; padding: 4px 14px; margin-bottom: 10px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
    .achievements-section .section-title h2 { font-size: 1.6rem; }
    .stats-row { grid-template-columns: 1fr; gap: 10px; }
    .stat-item { padding: 10px; }
    .stat-number { font-size: 1.8rem; }
    .achievement-year { font-size: 0.9rem; padding: 4px 12px; }
}

/* ===========================
   PARTNERS
=========================== */
.partners-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
}

.partner-card:hover { transform: translateY(-3px); }

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    
}

.partner-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.partner-info p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ===========================
   ABOUT PAGE - SPECIFIC HEADERS BLACK & BOLD
=========================== */
.company-overview .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
.overview-text h2.text-center { color: #000000 !important; font-weight: 700 !important; }
#legal-overview .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
.growth-overview h3 { color: #000000 !important; font-weight: 700 !important; }
#stakeholders .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
#mission-vision .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
.core-values .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
.leadership .section-header h2 { color: #000000 !important; font-weight: 700 !important; }
.dept-header h3 { color: #000000 !important; font-weight: 700 !important; }
.branch-header h3, section .dept-header h3 { color: #000000 !important; font-weight: 700 !important; }
.achievements-section .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
#partners .section-title h2 { color: #000000 !important; font-weight: 700 !important; }
.dept-header h3::after { background: var(--accent-color) !important; }

/* =========================
   FOOTER — COMPACT UPDATED
   Matches header #0d1b36 aesthetic
   Replace old footer CSS entirely
========================= */

#footer {
  /* Colours synced to header #0d1b36 palette */
  --f-bg:        #0d1b36;
  --f-surface:   #112040;
  --f-border:    rgba(255, 255, 255, 0.08);
  --f-text:      rgba(255, 255, 255, 0.58);
  --f-heading:   #ffffff;
  --f-accent:    #4f6ef7;   /* matches header active/hover blue */
  --f-accent2:   #7b93f8;
  --f-highlight: #4fc3f7;   /* light-blue chip labels */

  background: var(--f-bg);
  color: var(--f-text);
  font-family: 'Outfit', 'Segoe UI', Tahoma, sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

/* Subtle glow orbs */
#footer::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Top gradient accent bar ── */
.footer-topbar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4f6ef7, #7b93f8, #4fc3f7);
}

/* ═══════════════════════
   CONTACT STRIP
   ═══════════════════════ */
.footer-contact-strip {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--f-border);
  position: relative;
  z-index: 1;
}

.footer-contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;     /* ← reduced from 14px */
  flex: 1;
  border-right: 1px solid var(--f-border);
  transition: background 0.2s;
}
.footer-contact-chip:last-child { border-right: none; }
.footer-contact-chip:hover      { background: var(--f-surface); }

.chip-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(79, 110, 247, 0.18);
  border: 1px solid rgba(79, 110, 247, 0.28);
  display: flex; align-items: center; justify-content: center;
}
.chip-icon i { color: var(--f-highlight); font-size: 0.72rem; }

.chip-text { display: flex; flex-direction: column; gap: 1px; }

.chip-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--f-highlight);
  font-weight: 700;
}
.chip-value {
  font-size: 0.78rem;
  color: var(--f-heading);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.chip-value:hover { color: var(--f-highlight); }

/* ═══════════════════════
   MAIN 4-COLUMN GRID
   ═══════════════════════ */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 40px;     /* ← was 40px 60px — key reduction */
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer-col {
  padding: 0 20px 0 0;
  border-right: 1px solid var(--f-border);
}
.footer-col:last-child  { border-right: none; padding-right: 0; padding-left: 20px; }
.footer-col:first-child { padding-left: 0; }
.footer-col + .footer-col { padding-left: 20px; }

/* Column heading */
.footer-col-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--f-heading);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 7px;    /* ← tighter */
  margin-bottom: 0;
  border-bottom: 1px solid var(--f-accent);
}
.footer-col-heading::before {
  content: '';
  width: 12px; height: 2px;
  background: linear-gradient(90deg, var(--f-accent), var(--f-highlight));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Table-style nav links ── */
.footer-table-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--f-border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.footer-table-links li {
  border-bottom: 1px solid var(--f-border);
}
.footer-table-links li:last-child { border-bottom: none; }

.footer-table-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;      /* ← was 9px 14px */
  color: var(--f-text);
  font-size: 0.78rem;     /* ← slightly smaller */
  text-decoration: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.footer-table-links li a i {
  font-size: 0.54rem;
  color: var(--f-accent2);
  flex-shrink: 0;
  transition: transform 0.15s;
}
.footer-table-links li a:hover {
  background: var(--f-surface);
  color: var(--f-heading);
  padding-left: 16px;
}
.footer-table-links li a:hover i { transform: translateX(2px); }

/* ── Download list ── */
.footer-download-list {
  border: 1px solid var(--f-border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.footer-download-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;      /* ← was 9px 14px */
  border-bottom: 1px solid var(--f-border);
  text-decoration: none;
  transition: background 0.15s, padding-left 0.15s;
}
.footer-download-item:last-child { border-bottom: none; }
.footer-download-item:hover { background: var(--f-surface); padding-left: 15px; }

.dl-icon {
  width: 24px; height: 24px;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dl-icon i { font-size: 0.66rem; color: #fff; }
.dl-icon.pdf-icon  { background: linear-gradient(135deg, #ef4444, #dc2626); }
.dl-icon.link-icon { background: linear-gradient(135deg, #4f6ef7, #7b93f8); }
.dl-icon.doc-icon  { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.dl-icon.ext-icon  { background: linear-gradient(135deg, #f59e0b, #d97706); }

.dl-text { display: flex; flex-direction: column; }
.dl-text strong {
  color: var(--f-heading);
  font-size: 0.76rem;
  font-weight: 600;
  transition: color 0.15s;
}
.dl-text span { color: var(--f-text); font-size: 0.63rem; }
.footer-download-item:hover .dl-text strong { color: var(--f-highlight); }

/* ── Social pill list ── */
.footer-social-list {
  border: 1px solid var(--f-border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.footer-social-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;      /* ← was 9px 14px */
  border-bottom: 1px solid var(--f-border);
  text-decoration: none;
  transition: background 0.15s, padding-left 0.15s;
  position: relative;
  overflow: hidden;
}
.footer-social-pill:last-child { border-bottom: none; }

.footer-social-pill::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
.footer-social-pill.fb::before { background: linear-gradient(90deg, rgba(24, 119, 242, 0.10), transparent); }
.footer-social-pill.tw::before { background: linear-gradient(90deg, rgba(29, 161, 242, 0.10), transparent); }
.footer-social-pill.wa::before { background: linear-gradient(90deg, rgba(37, 211, 102, 0.10), transparent); }

.footer-social-pill:hover { padding-left: 16px; }
.footer-social-pill:hover::before { opacity: 1; }

.social-icon-circle {
  width: 24px; height: 24px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.footer-social-pill.fb .social-icon-circle { background: #1877f2; }
.footer-social-pill.tw .social-icon-circle { background: #1da1f2; }
.footer-social-pill.wa .social-icon-circle { background: #25d366; }
.social-icon-circle i { color: #fff; font-size: 0.66rem; }

.social-text { flex: 1; z-index: 1; }
.social-text strong { display: block; color: var(--f-heading); font-size: 0.76rem; font-weight: 600; }
.social-text span   { font-size: 0.63rem; color: var(--f-text); }

.social-arrow { color: var(--f-text); font-size: 0.58rem; z-index: 1; transition: transform 0.15s; }
.footer-social-pill:hover .social-arrow { transform: translateX(3px); }

/* ═══════════════════════
   BOTTOM BAR
   ═══════════════════════ */
.footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr auto;
  gap: 16px;
  align-items: center;
  padding: 10px 40px;     /* ← was 18px 60px — key reduction */
  border-top: 1px solid var(--f-border);
  position: relative;
  z-index: 1;
}

/* Left: copyright */
.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.73rem;
  line-height: 1.4;
}
.footer-copy strong {
  color: var(--f-heading);
  font-weight: 600;
}

/* Centre: animated ICT credit */
.footer-credit { text-align: center; }
.footer-credit p { margin: 0; font-size: 0.73rem; color: var(--f-text); }

.footer-credit a {
  color: var(--f-heading);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.8s ease-in-out infinite;
  font-size: 0.73rem;
  transition: background 0.2s, border-color 0.2s;
}
.footer-credit a i { color: var(--f-highlight); font-size: 0.64rem; }

.footer-credit a::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  height: 100%; width: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 2.4s linear infinite;
}
.footer-credit a:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

@keyframes pulseGlow {
  0%,100% { transform: translateY(0);    box-shadow: 0 0 0 rgba(79, 110, 247, 0); }
  50%      { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(79, 110, 247, 0.28); }
}
@keyframes shimmer {
  0%   { left: -120%; }
  100% { left: 120%; }
}

/* Right: social icon buttons */
.footer-bottom-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.bottom-social-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: 1px solid var(--f-border);
  background: var(--f-surface);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.bottom-social-icon i {
  font-size: 0.75rem;
  color: var(--f-text);
  transition: color 0.2s;
}
.bottom-social-icon:hover { transform: translateY(-2px); }
.bottom-social-icon.fb:hover { background: #1877f2; border-color: #1877f2; }
.bottom-social-icon.fb:hover i { color: #fff; }
.bottom-social-icon.tw:hover { background: #1da1f2; border-color: #1da1f2; }
.bottom-social-icon.tw:hover i { color: #fff; }
.bottom-social-icon.wa:hover { background: #25d366; border-color: #25d366; }
.bottom-social-icon.wa:hover i { color: #fff; }
.bottom-social-icon.yt:hover { background: #ff0000; border-color: #ff0000; }
.bottom-social-icon.yt:hover i { color: #fff; }

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 32px;
    gap: 20px;
  }
  .footer-col { border-right: none !important; padding: 0 !important; }
  .footer-col:nth-child(odd)  { border-right: 1px solid var(--f-border) !important; padding-right: 20px !important; }
  .footer-col:nth-child(even) { padding-left: 20px !important; }
  .footer-col:nth-child(3),
  .footer-col:nth-child(4)    { border-top: 1px solid var(--f-border); padding-top: 18px !important; }
  .footer-contact-strip       { flex-wrap: wrap; }
  .footer-contact-chip        { flex: 0 0 50%; }
  .footer-contact-chip:nth-child(2) { border-right: none; }
  .footer-contact-chip:nth-child(3) { border-top: 1px solid var(--f-border); border-right: none; }
  .footer-bottom              { padding: 10px 32px; }
}

@media (max-width: 900px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 12px 20px;
    gap: 10px;
  }
  .footer-bottom-social { justify-content: center; }
}

@media (max-width: 768px) {
  .footer-contact-chip { flex: 0 0 100% !important; border-right: none !important; border-top: 1px solid var(--f-border); }
  .footer-contact-chip:first-child { border-top: none; }
  .footer-main { grid-template-columns: 1fr; padding: 16px 20px; gap: 14px; }
  .footer-col { border: none !important; padding: 0 !important; }
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) { border-top: none !important; padding-top: 0 !important; }
}
/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 1200px) {
    .container { max-width: 1140px; }
}

@media (max-width: 992px) {
    .container { max-width: 960px; padding: 0 15px; }
    .hero h1 { font-size: 2.2rem; }
    .area-map-container, .contact-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .mission-vision-container { grid-template-columns: 1fr; gap: 20px; }
    .leadership-top { grid-template-columns: 1fr; gap: 20px; }
    .connection-grid { grid-template-columns: 1fr; }
    .requirements { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }

    /* Mobile Navigation — FIXED */
    .nav-container {
        padding: 10px 15px;
        min-height: 70px;
    }

    .menu-toggle {
        display: flex !important;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-color);
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
        overflow-y: auto;
        margin-left: 0;
        flex: none;
    }

    nav.active { right: 0; }

    nav ul {
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
    }

    nav ul li { width: 100%; }

    nav ul li a {
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
    }

    nav ul li .dropdown {
        position: static;
        background: transparent;
        box-shadow: none;
        margin-top: 8px;
        display: none;
    }

    nav ul li .dropdown.active { display: block; }

    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Header company name on mobile */
    .h1 h1,
    header #sawasco {
        font-size: 0.68rem !important;
        max-width: 140px;
    }

    /* Staff mail */
    #staff-mail-link { margin: 5px 0; text-align: center; }

    /* Projects */
    .projects { padding: 70px 0 30px; }
    .projects-grid { grid-template-columns: 1fr; gap: 20px; }
    .project-image { height: 180px; }
    .project-meta { flex-direction: column; gap: 8px; }
    .project-achievements { justify-content: flex-start; }

    /* Hero */
    .hero, .media-hero { padding: 100px 0 50px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }

    /* Sections */
    .compliance-section, .tab-content, .new-connection { padding: 50px 0; }
    .section-title h2 { font-size: 1.6rem; }

    /* Grids */
    .grid-cards, .values-container, .departments-grid, .projects-grid,
    .service-cards, .charter-commitments, .tariff-tables, .procedures-grid,
    .complaint-channels, .gallery-grid, .news-grid, .publications-grid,
    .legal-grid, .stakeholder-grid, .department-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* About */
    .company-overview { padding: 80px 0 40px; }
    .partners-container { flex-direction: column; align-items: center; }
}

@media (max-width: 576px) {
    body { padding-top: 60px; }

    .nav-container { padding: 8px 10px; min-height: 60px; }

    .logo img { height: 40px; width: 40px; }

    .h1 h1,
    header #sawasco {
        font-size: 0.62rem !important;
        max-width: 115px;
    }

    /* Projects */
    .projects { padding: 60px 0 20px; }
    .project-content { padding: 15px; }
    .project-details p { flex-direction: column; gap: 2px; }
    .project-details strong { min-width: auto; }

    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.9rem; }
    .section-title h2 { font-size: 1.4rem; }

    .card, .commitment-card, .tariff-table, .procedure-card, .channel-card,
    .publication-category, .legal-card, .stakeholder-card, .mission-card,
    .vision-card, .leadership-main-card, .partner-card, .connection-box,
    .payment-info, .bowser-services, .operator-registration { padding: 15px; }

    .media-tabs { flex-direction: column; align-items: center; }
    .tab-btn { width: 180px; justify-content: center; font-size: 0.85rem; }

    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .h1 h1,
    header #sawasco {
        font-size: 0.6rem !important;
        max-width: 105px;
    }

    .logo img { height: 38px; width: 38px; }
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.6s ease-out; }

/* ===========================
   PRINT STYLES
=========================== */
@media print {
    header { position: static; }
    .menu-toggle, nav { display: none; }
    .hero { background: #fff !important; color: #000 !important; }
    body { padding-top: 0; }
    .btn { background: #000 !important; color: #fff !important; }
}

.skip-link { display: none !important; }

/* ===========================
   MEDIA PAGE SPECIFIC STYLES
=========================== */
.media-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 100px 0 50px;
    text-align: center;
}

.media-hero-content h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.media-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.media-tabs-section {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.media-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--light-color);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.tab-btn:hover { background: var(--accent-color); color: var(--white); }
.tab-btn.active { background: var(--primary-color); color: var(--white); }
.tab-btn i { font-size: 0.9rem; }

.tab-content { display: none; padding: 50px 0; }
.tab-content.active { display: block; }

/* ===========================
   PHOTO GALLERY STYLES
=========================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.filter-btn:hover { background: var(--accent-color); color: var(--white); }
.filter-btn.active { background: var(--primary-color); color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover { transform: translateY(-5px); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h3 { color: var(--white); margin-bottom: 5px; font-size: 1rem; }
.gallery-overlay p { color: rgba(255,255,255,0.9); margin-bottom: 8px; font-size: 0.8rem; line-height: 1.3; }
.gallery-date { font-size: 0.75rem; opacity: 0.8; }

.auto-scroll-gallery {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scroll-track {
    display: flex;
    animation: scrollGallery 16s linear infinite;
    height: 100%;
}

.scroll-item {
    flex: 0 0 300px;
    height: 100%;
    position: relative;
    margin-right: 15px;
}

.scroll-item img { width: 100%; height: 100%; object-fit: cover; }

.scroll-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 10px 15px;
    font-size: 0.85rem;
    line-height: 1.3;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6 - 15px * 6)); }
}

.auto-scroll-gallery:hover .scroll-track { animation-play-state: paused; }

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1003;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    margin-top: 60px;
}

.close-modal {
    position: absolute;
    top: 15px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover { color: #bbb; }

.modal-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.modal-caption h3 { color: white; margin-bottom: 5px; font-size: 1.2rem; }
.modal-caption p { color: #ccc; font-size: 0.9rem; margin-bottom: 5px; }

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-nav:hover { background: rgba(255,255,255,0.3); }
.modal-nav.prev { left: 20px; }
.modal-nav.next { right: 20px; }

/* ===========================
   NEWS & UPDATES STYLES
=========================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.news-card:hover { transform: translateY(-5px); }

.news-image { position: relative; height: 180px; overflow: hidden; }

.news-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img { transform: scale(1.05); }

.news-date {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content { padding: 20px; }

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.news-content p { color: var(--dark-gray); margin-bottom: 15px; font-size: 0.85rem; line-height: 1.4; }

.news-meta { display: flex; justify-content: space-between; align-items: center; }

.news-category {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover { color: var(--primary-color); }

.news-archive {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.news-archive h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

.update-list { display: grid; gap: 12px; }

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background: var(--light-color);
    border-radius: 6px;
    border-left: 3px solid var(--info);
}

.update-date {
    background: var(--info);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 90px;
    text-align: center;
}

.update-item p { margin: 0; font-size: 0.85rem; color: var(--dark-gray); line-height: 1.4; }

/* ===========================
   VIDEOS STYLES
=========================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-card:hover { transform: translateY(-5px); }

.video-thumbnail { position: relative; height: 180px; overflow: hidden; }

.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-info { padding: 20px; }

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.video-info p { color: var(--dark-gray); margin-bottom: 10px; font-size: 0.85rem; line-height: 1.4; }
.video-duration { color: var(--accent-color); font-size: 0.8rem; font-weight: 600; }

.video-modal {
    display: none;
    position: fixed;
    z-index: 1003;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-video-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
}

/* ===========================
   PRESS RELEASES STYLES
=========================== */
.press-releases { display: grid; gap: 25px; margin-bottom: 40px; }

.press-release {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.press-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.press-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    flex: 1;
}

.press-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.press-content p { color: var(--dark-gray); margin-bottom: 15px; font-size: 0.9rem; line-height: 1.5; }

.press-meta { display: flex; justify-content: space-between; align-items: center; }

.press-category {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.download-press {
    background: var(--success);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.download-press:hover { background: #218838; transform: translateY(-2px); }

.media-contact {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.media-contact h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; }
.media-contact > p { color: var(--dark-gray); margin-bottom: 20px; font-size: 0.9rem; }

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.contact-details i { color: var(--accent-color); width: 16px; }

@media (max-width: 768px) {
    .media-hero { padding: 80px 0 40px; }
    .media-hero-content h1 { font-size: 1.8rem; }
    .media-tabs { flex-direction: column; align-items: center; }
    .tab-btn { width: 200px; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .auto-scroll-gallery { height: 250px; }
    .scroll-item { flex: 0 0 250px; }
    .news-grid { grid-template-columns: 1fr; }
    .press-header { flex-direction: column; align-items: flex-start; }
    .press-date { align-self: flex-start; }
    .contact-details { grid-template-columns: 1fr; text-align: center; }
    .contact-details p { justify-content: center; }
}

@media (max-width: 576px) {
    .media-hero-content h1 { font-size: 1.6rem; }
    .gallery-filters { flex-direction: column; align-items: center; }
    .filter-btn { width: 200px; text-align: center; }
    .auto-scroll-gallery { height: 200px; }
    .scroll-item { flex: 0 0 200px; }
    .scroll-caption { font-size: 0.8rem; padding: 8px 12px; }
    .modal-nav { width: 40px; height: 40px; padding: 10px; }
    .modal-nav.prev { left: 10px; }
    .modal-nav.next { right: 10px; }
}

/* ===========================
   CAREERS PAGE
=========================== */

/* ── Hero Banner ── */
.careers-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    padding: 110px 40px 70px;
    text-align: center;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(57, 73, 171, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 35, 126, 0.4) 0%, transparent 40%);
    pointer-events: none;
}

.careers-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.careers-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.careers-hero-content h1 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.careers-hero-content > p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.careers-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 18px 32px;
    backdrop-filter: blur(6px);
}

.hero-stat { text-align: center; padding: 0 28px; }

.hero-stat-number {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* ── Page wrapper ── */
.careers-page {
    background: var(--gray);
    padding: 60px 0 40px;
}

/* ── Section wrapper ── */
.careers-section {
    background: var(--white);
    border-radius: 12px;
    padding: 50px 48px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.06);
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.careers-section-dark {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    border: none;
}

/* ── Section headers ── */
.careers-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.careers-section-header.light h2,
.careers-section-header.light p { color: #fff; }
.careers-section-header.light p { opacity: 0.8; }

.careers-section-tag {
    display: inline-block;
    background: var(--light-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.careers-section-tag.light {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.careers-section-header h2 {
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.careers-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.careers-section-header p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Why Work With Us cards ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border-bottom: 3px solid transparent;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(26, 35, 126, 0.15);
    border-bottom-color: var(--accent-color);
}

.why-icon-wrap {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 1.6rem;
    transition: transform 0.4s ease;
    box-shadow: 0 6px 18px rgba(26, 35, 126, 0.3);
}

.why-card:hover .why-icon-wrap { transform: rotateY(360deg); }

.why-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--dark-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* ── No vacancies state ── */
.vacancies-empty {
    background: linear-gradient(135deg, #f0f3ff 0%, var(--light-color) 100%);
    border-radius: 10px;
    padding: 48px 32px;
    text-align: center;
    border: 2px dashed rgba(57, 73, 171, 0.25);
}

.vacancies-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.3);
}

.vacancies-empty h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.vacancies-empty-inner > p {
    color: var(--dark-gray);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.future-roles {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 28px;
    max-width: 600px;
    margin: 0 auto 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: left;
}

.future-roles h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.future-roles h4 i { color: var(--accent-color); }

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.role-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.role-tag i { color: var(--accent-color); font-size: 0.8rem; flex-shrink: 0; }



/* ── Student cards ── */
.student-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 24px;
}

.student-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 28px;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.student-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26, 35, 126, 0.12);
}

.student-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.student-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
}

.student-card-header h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.student-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.student-card > p {
    color: var(--dark-gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.student-reqs {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
}

.student-reqs h5 {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.student-reqs ul { list-style: none; padding: 0; margin: 0; }

.student-reqs li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-bottom: 7px;
    line-height: 1.4;
}

.student-reqs li i { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }

.student-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #e8eaf6;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 18px 22px;
}

.student-notice-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.student-notice strong { display: block; color: var(--primary-color); font-size: 0.95rem; margin-bottom: 4px; }
.student-notice p { color: var(--dark-gray); font-size: 0.875rem; margin: 0; line-height: 1.5; }
.student-notice a { color: var(--primary-color); font-weight: 600; }
.student-notice a:hover { color: var(--accent-color); }

/* ── How to Apply (dark bg) ── */
.apply-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 28px;
}

.apply-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.apply-step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: -12px;
}

.apply-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.apply-step:hover .apply-step-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.apply-step h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.apply-step p { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.6; margin: 0; }

.apply-step-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    padding-top: 48px;
    flex-shrink: 0;
}

.apply-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 14px 24px;
    text-align: center;
}

.apply-note i { color: var(--warning); font-size: 1.1rem; flex-shrink: 0; }
.apply-note span { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.5; }

/* ── EOE ── */
.eoe-section-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.eoe-left .careers-section-tag { margin-bottom: 12px; display: inline-block; }

.eoe-left h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.eoe-left p { color: var(--dark-gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }

.eoe-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.eoe-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    border-top: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.eoe-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(26, 35, 126, 0.12); }
.eoe-card i { color: var(--accent-color); font-size: 1.5rem; margin-bottom: 10px; display: block; }
.eoe-card h4 { color: var(--primary-color); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.eoe-card p { color: var(--dark-gray); font-size: 0.82rem; line-height: 1.5; margin: 0; }

/* ── Connect cards ── */
.connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.connect-card {
    display: flex;
    flex-direction: column;
    background: var(--light-color);
    border-radius: 10px;
    padding: 30px 22px;
    text-align: center;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.connect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(26, 35, 126, 0.15);
    border-bottom-color: var(--accent-color);
}

.connect-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(26, 35, 126, 0.3);
    transition: transform 0.4s ease;
}

.connect-card:hover .connect-icon { transform: scale(1.1); }

.connect-card h4 { color: var(--primary-color); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.connect-card p { color: var(--dark-gray); font-size: 0.85rem; line-height: 1.5; margin: 0 0 18px; flex: 1; }

.connect-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.82rem;
    word-break: break-all;
    transition: gap 0.3s ease;
}

.connect-card:hover .connect-link { gap: 10px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .apply-steps { flex-wrap: wrap; gap: 20px; }
    .apply-step-arrow { display: none; }
    .apply-step { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
    .careers-hero { padding: 90px 20px 50px; }
    .careers-hero-content h1 { font-size: 2rem; }
    .careers-hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .hero-stat { padding: 0; }
    .careers-page { padding: 30px 0 20px; }
    .careers-section { padding: 32px 20px; }
    .careers-section-header h2 { font-size: 1.6rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .student-grid { grid-template-columns: 1fr; }
    .connect-cards { grid-template-columns: 1fr; }
    .apply-steps { flex-direction: column; gap: 16px; }
    .apply-step { flex: none; width: 100%; }
    .apply-step-arrow { display: none; }
    .eoe-section-new { grid-template-columns: 1fr; gap: 28px; }
    .eoe-right { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .careers-hero-content h1 { font-size: 1.7rem; }
    .careers-section { padding: 24px 15px; }
    .careers-section-header h2 { font-size: 1.4rem; }
    .why-grid { grid-template-columns: 1fr; }
    .roles-grid { grid-template-columns: 1fr; }
    .eoe-right { grid-template-columns: 1fr; }
    .future-roles { padding: 18px; }
    .vacancies-empty { padding: 28px 16px; }
    .student-card { padding: 20px; }
    .apply-step-num { font-size: 2.5rem; }
}

   /*TENDERS PAGE*/
/*=========================== */
.tenders { padding: 100px 0 50px; background: var(--light-color); }

.procurement-principles, .current-tenders, .tender-process,
.supplier-registration, .tender-notices, .tenders-form, .tender-contact {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.procurement-principles h3, .current-tenders h3, .tender-process h3,
.supplier-registration h3, .tender-notices h3, .tenders-form h3, .tender-contact h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.principle-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.principle-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.principle-card i { color: var(--primary-color); margin-bottom: 15px; }
.principle-card h4 { color: var(--primary-color); margin-bottom: 12px; font-size: 1.1rem; }
.principle-card p { color: var(--dark-gray); font-size: 0.85rem; line-height: 1.5; margin: 0; }

.no-tenders { text-align: center; padding: 40px 20px; }

.tender-message { max-width: 700px; margin: 0 auto; }
.tender-message i { color: var(--dark-gray); margin-bottom: 20px; opacity: 0.6; }
.tender-message h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; }
.tender-message p { color: var(--dark-gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.upcoming-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--info);
}

.upcoming-info h5 { color: var(--secondary-color); margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.upcoming-info p { color: var(--dark-gray); font-size: 0.9rem; margin-bottom: 20px; text-align: center; }

.tender-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.category { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--white); border-radius: 6px; transition: all 0.3s ease; }
.category:hover { transform: translateX(5px); box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.category i { color: var(--accent-color); font-size: 1rem; width: 20px; }
.category span { color: var(--dark-color); font-size: 0.85rem; font-weight: 500; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.step-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.registration-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.registration-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--success);
}

.registration-card h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.registration-card h4 i { color: var(--success); }
.registration-card p { color: var(--dark-gray); font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }

.registration-benefits h5, .requirements-list h5 { color: var(--secondary-color); margin-bottom: 12px; font-size: 1rem; }
.registration-benefits ul, .requirements-list ul { list-style: none; padding: 0; margin: 0; }
.registration-benefits li, .requirements-list li { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 0.85rem; color: var(--dark-gray); }
.registration-benefits li::before { content: '✓'; color: var(--success); font-weight: bold; }
.requirements-list li::before { content: '•'; color: var(--accent-color); font-weight: bold; }

.notices-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.notice-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
}

.notice-card.important { border-left-color: var(--danger); background: #ffe6e6; }
.notice-card i { color: var(--warning); font-size: 1.5rem; margin-bottom: 15px; }
.notice-card.important i { color: var(--danger); }
.notice-card h4 { color: var(--primary-color); margin-bottom: 12px; font-size: 1.1rem; }
.notice-card p { color: var(--dark-gray); font-size: 0.85rem; line-height: 1.5; margin: 0; }

.download-section { text-align: center; }

.download-section h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.download-section h3 i { color: var(--accent-color); }
.download-section p { color: var(--dark-gray); font-size: 0.95rem; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }

.download-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

.btn-download {
    background: var(--success);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-decoration: none;
}

.btn-download:hover { background: #218838; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-download i { font-size: 1rem; }

.contact-info h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.2rem; }

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.contact-info i { color: var(--accent-color); width: 16px; }

.contact-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.contact-note p { color: #856404; font-size: 0.85rem; line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
    .tenders { padding: 80px 0 40px; }
    .procurement-principles, .current-tenders, .tender-process,
    .supplier-registration, .tender-notices, .tenders-form, .tender-contact { padding: 30px 20px; }
    .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .tender-categories { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .registration-info { grid-template-columns: 1fr; }
    .notices-container { grid-template-columns: 1fr; }
    .download-buttons { flex-direction: column; align-items: center; }
    .btn-download { width: 250px; justify-content: center; }
}

@media (max-width: 576px) {
    .tenders { padding: 70px 0 30px; }
    .principles-grid { grid-template-columns: 1fr; }
    .principle-card, .registration-card, .notice-card { padding: 20px 15px; }
    .process-step { flex-direction: column; text-align: center; gap: 15px; }
    .step-icon { align-self: center; }
    .upcoming-info { padding: 20px 15px; }
    .contact-note { padding: 15px; }
}

/* ===========================
   DEPARTMENTS PAGE
=========================== */
.departments { padding: 100px 0 50px; background: var(--light-color); }

.departments-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 50px;
}

.department-card {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.department-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

.department-card.featured {
    border-top: 4px solid var(--warning);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9ff 100%);
}

.department-card.featured::before {
    content: 'Leadership';
    position: absolute;
    top: 15px; right: -30px;
    background: var(--warning);
    color: var(--white);
    padding: 5px 35px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.department-icon {
    width: 55px; height: 55px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.department-card:hover .department-icon { background: var(--accent-color); color: var(--white); transform: scale(1.1); }

.department-card h3 { color: var(--primary-color); margin-bottom: 8px; font-size: 1.2rem; text-align: center; line-height: 1.3; }

.department-lead { display: none !important; }
.department-card .department-functions { display: none !important; }
.department-card .contact-info { display: none !important; }

.department-card > p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    text-align: center;
}

.collaboration-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.collaboration-section .section-title { margin-bottom: 30px; }
.collaboration-section .section-title h3 { color: var(--primary-color); margin-bottom: 10px; font-size: 1.5rem; }
.collaboration-section .section-title p { color: var(--dark-gray); font-size: 0.95rem; }

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.collaboration-item {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.collaboration-item:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-top: 3px solid var(--accent-color); }

.collaboration-item h4 { color: var(--primary-color); margin-bottom: 12px; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.collaboration-item h4 i { color: var(--accent-color); font-size: 1rem; }
.collaboration-item p { color: var(--dark-gray); font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* Department Specific Colors */
.department-card:nth-child(1) .department-icon { background: #e3f2fd; color: #1976d2; }
.department-card:nth-child(2) .department-icon { background: #f3e5f5; color: #7b1fa2; }
.department-card:nth-child(3) .department-icon { background: #e8f5e8; color: #388e3c; }
.department-card:nth-child(4) .department-icon { background: #fff3e0; color: #f57c00; }
.department-card:nth-child(5) .department-icon { background: #fce4ec; color: #c2185b; }
.department-card:nth-child(6) .department-icon { background: #e0f2f1; color: #00796b; }
.department-card:nth-child(7) .department-icon { background: #f3e5f5; color: #7b1fa2; }
.department-card:nth-child(8) .department-icon { background: #e8eaf6; color: #303f9f; }
.department-card:nth-child(9) .department-icon { background: #fff8e1; color: #ffa000; }
.department-card.featured .department-icon { background: #fff3e0; color: #ff6f00; }

.department-card:hover:nth-child(1) .department-icon { background: #1976d2; }
.department-card:hover:nth-child(2) .department-icon { background: #7b1fa2; }
.department-card:hover:nth-child(3) .department-icon { background: #388e3c; }
.department-card:hover:nth-child(4) .department-icon { background: #f57c00; }
.department-card:hover:nth-child(5) .department-icon { background: #c2185b; }
.department-card:hover:nth-child(6) .department-icon { background: #00796b; }
.department-card:hover:nth-child(7) .department-icon { background: #7b1fa2; }
.department-card:hover:nth-child(8) .department-icon { background: #303f9f; }
.department-card:hover:nth-child(9) .department-icon { background: #ffa000; }
.department-card.featured:hover .department-icon { background: #ff6f00; }

@media (max-width: 768px) {
    .departments { padding: 80px 0 40px; }
    .section-title h2 { font-size: 1.6rem; }
    .departments-grid { grid-template-columns: 1fr; gap: 20px; }
    .collaboration-section { padding: 30px 20px; }
    .collaboration-grid { grid-template-columns: 1fr; gap: 20px; }
    .department-card.featured::before { font-size: 0.7rem; right: -25px; padding: 4px 30px; }
}

@media (max-width: 576px) {
    .departments { padding: 70px 0 30px; }
    .collaboration-section .section-title h3 { font-size: 1.3rem; }
    .department-card { padding: 20px 15px; }
    .collaboration-item { padding: 20px 15px; }
    .department-card.featured::before { right: -20px; padding: 3px 25px; }
    .department-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* ===========================
   TARIFF TABLE ENHANCEMENTS
=========================== */
.tariff-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tariff-table {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.tariff-table h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 10px;
}

.tariff-table table { width: 100%; border-collapse: collapse; margin: 15px 0; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); font-size: 0.85rem; }
.tariff-table th { background: var(--primary-color); color: var(--white); padding: 12px 10px; text-align: left; font-weight: 600; font-size: 0.9rem; }
.tariff-table td { padding: 10px 12px; border-bottom: 1px solid #eee; font-size: 0.85rem; }
.tariff-table tr:nth-child(even) { background: #f8f9fa; }
.tariff-table tr:hover { background: #e3f2fd; }
.tariff-table td[rowspan] { background: #e8eaf6; font-weight: 600; color: var(--primary-color); vertical-align: top; }

@media (max-width: 768px) {
    .tariff-tables { grid-template-columns: 1fr; gap: 20px; }
    .tariff-table { padding: 20px; }
    .tariff-table table { font-size: 0.8rem; }
    .tariff-table th, .tariff-table td { padding: 8px 10px; }
}

@media (max-width: 576px) {
    .tariff-table { padding: 15px; }
    .tariff-table table { font-size: 0.75rem; }
    .tariff-table th, .tariff-table td { padding: 6px 8px; }
}

/* ===========================
   WATER BOWSER SERVICES
=========================== */
.bowser-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.bowser-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
    text-align: center;
    height: 100%;
}

.bowser-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.capacity-card { border-top-color: #2196F3; }
.pricing-card { border-top-color: #4CAF50; }
.licensing-card { border-top-color: #FF9800; }

.capacity-card .card-icon { background: #E3F2FD; color: #2196F3; }
.pricing-card .card-icon { background: #E8F5E8; color: #4CAF50; }
.licensing-card .card-icon { background: #FFF3E0; color: #FF9800; }

.bowser-card h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.2rem; border-bottom: 2px solid var(--light-color); padding-bottom: 10px; }

.capacity-options, .pricing-options, .licensing-options { display: flex; flex-direction: column; gap: 15px; }

.capacity-option, .pricing-option, .licensing-option {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.capacity-option:hover, .pricing-option:hover, .licensing-option:hover { transform: translateX(5px); box-shadow: 0 3px 10px rgba(0,0,0,0.1); }

.capacity-option h4, .pricing-option h4, .licensing-option h4 { color: var(--secondary-color); margin-bottom: 8px; font-size: 1rem; }
.capacity-option p, .licensing-option p { color: var(--dark-gray); font-size: 0.85rem; line-height: 1.4; margin: 0; }

.license-details p { display: flex; justify-content: space-between; margin-bottom: 5px; }
.license-details p:last-child { margin-bottom: 0; }
.license-details span { font-weight: 600; color: var(--dark-color); }

.service-note {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #ffc107;
    text-align: center;
}

.service-note p { color: #856404; font-size: 0.9rem; margin: 0; line-height: 1.4; }

@media (max-width: 768px) {
    .bowser-services-grid { grid-template-columns: 1fr; gap: 20px; }
    .bowser-card { padding: 20px; }
}

@media (max-width: 576px) {
    .bowser-card { padding: 15px; }
    .bowser-card h3 { font-size: 1.1rem; }
    .service-note { padding: 12px; }
}

/* ===========================
   QUICK SERVICES CAROUSEL
=========================== */
.quick-services {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.quick-services .header {
    text-align: center;
    margin-bottom: 35px;
}

.quick-services .header h2 {
    font-size: 2rem;
    color: #1a237e;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.quick-services .header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a237e;
}

.quick-services .header p { color: #6c757d; font-size: 1rem; margin-top: 12px; }

.services-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-carousel .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 320px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
}

.service-card.active {
    animation: slideInFromLeft 0.8s ease-out forwards;
    z-index: 10;
}

.service-card.exiting {
    animation: slideOutToRight 0.8s ease-out forwards;
    z-index: 5;
}

@keyframes slideInFromLeft {
    0% { opacity: 0; visibility: visible; transform: translate(-200%, -50%) scale(0.8); }
    100% { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
}

@keyframes slideOutToRight {
    0% { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; visibility: hidden; transform: translate(200%, -50%) scale(0.8); }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #1a237e, #3949ab);
}

.card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.card-icon i { font-size: 1.1rem; color: #fff; }
.card-title { color: #1a237e; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.card-subtitle { color: #6c757d; font-size: 0.7rem; margin-bottom: 10px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active { background: #1a237e; width: 30px; border-radius: 5px; }

/* Service card variants */
.paybill .card-icon { background: linear-gradient(135deg, #28a745, #20c997); }
.paybill-number { font-size: 1.5rem; font-weight: 900; text-align: center; color: #28a745; margin: 8px 0; letter-spacing: 2px; }
.mini-steps { background: #e7f5ec; border-radius: 8px; padding: 8px; margin-top: 8px; }
.mini-step { color: #495057; font-size: 0.7rem; margin-bottom: 4px; padding-left: 15px; position: relative; }
.mini-step::before { content: '→'; position: absolute; left: 0; color: #28a745; font-weight: bold; }

.bank .card-icon { background: linear-gradient(135deg, #1a237e, #3949ab); }
.bank-info { background: #e8eaf6; border-radius: 8px; padding: 10px; margin-top: 8px; }
.account-num { color: #1a237e; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.bank-name { color: #6c757d; font-size: 0.7rem; }

.ussd .card-icon { background: linear-gradient(135deg, #ffc107, #ff9800); }
.ussd-code { font-size: 1.4rem; font-weight: 900; text-align: center; color: #ff9800; margin: 8px 0; padding: 8px; border: 2px dashed #ffc107; border-radius: 8px; background: #fff8e1; }

.meter .card-icon { background: linear-gradient(135deg, #673ab7, #9c27b0); }
.meter-tips { margin-top: 8px; }
.tip { color: #495057; font-size: 0.7rem; margin-bottom: 4px; padding-left: 15px; position: relative; }
.tip::before { content: '✓'; position: absolute; left: 0; color: #673ab7; font-weight: bold; }

.contact .card-icon { background: linear-gradient(135deg, #e91e63, #f06292); }
.phone { color: #e91e63; font-size: 0.85rem; font-weight: 700; text-align: center; margin: 6px 0; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
.method { background: #fce4ec; border-radius: 6px; padding: 8px; text-align: center; transition: all 0.3s ease; }
.method i { color: #e91e63; font-size: 1rem; margin-bottom: 4px; }
.method span { display: block; color: #495057; font-size: 0.65rem; }

.reading .card-icon { background: linear-gradient(135deg, #00bcd4, #0097a7); }
.due-date { background: #e0f7fa; border-left: 3px solid #00bcd4; padding: 8px; border-radius: 6px; margin-top: 8px; }
.due-date i { color: #00bcd4; margin-right: 6px; }
.due-date span { color: #495057; font-size: 0.7rem; }
.submit-options { display: flex; gap: 6px; margin-top: 10px; }
.option-btn { flex: 1; background: #e0f7fa; border-radius: 6px; padding: 6px; text-align: center; font-size: 0.65rem; color: #00838f; }

.schemes .card-icon { background: linear-gradient(135deg, #009688, #00796b); }
.scheme-list { margin-top: 8px; }
.scheme-item { color: #495057; font-size: 0.7rem; margin-bottom: 4px; padding-left: 15px; position: relative; }
.scheme-item::before { content: '•'; position: absolute; left: 0; color: #009688; font-size: 1.2rem; line-height: 0.75rem; }

.info .card-icon { background: linear-gradient(135deg, #5c6bc0, #3f51b5); }

@media (max-width: 768px) {
    .quick-services .header h2 { font-size: 1.6rem; }
    .service-card { width: 280px; }
}

/* ===========================
   PUBLICATIONS TABS
=========================== */
.compliance-section {
    padding: 60px 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab {
    background: #eee;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: background 0.3s;
}

.tab:hover { background: #ddd; }
.tab.active { background: #422072; color: #fff; }

.tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.tab-content ul { list-style: none; padding: 0; margin: 0; }

.tab-content li {
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.badge {
    display: inline-block;
    background: #ddd;
    color: #555;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 6px;
}

/* ===========================
   FAQ CARDS
=========================== */
.faq-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faq-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 80px;
}

.faq-card h3 { margin: 0; font-size: 16px; }

.faq-card .faq-answer {
    margin-top: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card.active { max-height: 300px; background: #dddde6; }
.faq-card.active .faq-answer { opacity: 1; max-height: 200px; }

/* ===========================
   FORM MESSAGE
=========================== */
.form-message { margin-top: 10px; font-weight: 500; }