   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Jost', sans-serif;
            font-weight: 400;
            font-size: 14px;
            background: #ffffff;
            color: #1a2c3e;
            overflow-x: hidden;
        }

        /* Typography constraints */
        h1 { font-size: 36px; font-weight: 600; line-height: 1.2; }
        h2 { font-size: 28px; font-weight: 600; margin-bottom: 1rem; }
        h3 { font-size: 22px; font-weight: 600; }
        h4 { font-size: 18px; font-weight: 500; }
        p, li, span, a { font-size: 14px; font-weight: 400; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

        /* Premium Header (consistent) */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 80px;
            display: flex;
            align-items: center;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .logo h2 { font-size: 24px; font-weight: 700; color: #0056b3; letter-spacing: -0.5px; }
        .logo span { font-weight: 300; color: #1a2c3e; }
        .nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
        .nav-links a { text-decoration: none; font-weight: 500; color: #1a2c3e; transition: 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: #0056b3; }
        .nav-cta { background: #0056b3; color: white !important; padding: 10px 24px; border-radius: 40px; }
        .nav-toggle { display: none; flex-direction: column; cursor: pointer; }
        .bar { width: 26px; height: 2px; background: #1a2c3e; margin: 4px 0; }

        @media (max-width: 768px) {
            .nav-toggle { display: flex; }
            .nav-links {
                position: fixed; top: 80px; left: -100%; width: 100%; background: white;
                flex-direction: column; gap: 24px; padding: 40px; transition: 0.3s; z-index: 999;
            }
            .nav-links.active { left: 0; }
        }

        /* Hero About Section */
        .about-hero {
            /* BACKGROUND IMAGE + GRADIENT OVERLAY */
   background: 
  linear-gradient(135deg, rgba(10,47,68,0.85), rgba(0,34,68,0.9)),
  url('waterlink-favicon.webp') center/cover no-repeat;
            padding: 160px 0 80px;
            text-align: center;
            color: white;
        }
        .about-hero h1 { font-size: 44px; margin-bottom: 20px; }
        .about-hero p { max-width: 700px; margin: 0 auto; font-size: 16px; opacity: 0.9; }

        /* Our Story Section */
        .story-section {
            padding: 80px 0;
            background: #ffffff;
        }
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .story-content p { font-size: 15px; line-height: 1.7; color: #2c3e44; margin-bottom: 20px; }
        .signature-badge { margin-top: 30px; display: flex; gap: 20px; align-items: center; }
        .signature-line { width: 80px; height: 2px; background: #0056b3; }
        .story-image img { width: 100%; border-radius: 24px; box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1); }

        /* Stats Strip Premium */
        .stats-strip {
            background: #f8fafc;
            padding: 60px 0;
            border-top: 1px solid #eef2f6;
            border-bottom: 1px solid #eef2f6;
        }
        .stats-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            text-align: center;
        }
        .stat-card h3 { font-size: 42px; font-weight: 700; color: #0056b3; }
        .stat-card p { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #4a6270; }

        /* Mission Vision Cards */
        .mission-vision {
            padding: 80px 0;
            background: white;
        }
        .mv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .mv-card {
            background: #f9fbfd;
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            transition: 0.3s;
            border: 1px solid #eef2f6;
        }
        .mv-card:hover { transform: translateY(-8px); border-color: #0056b3; }
        .mv-card i { font-size: 48px; color: #0056b3; margin-bottom: 20px; }
        .mv-card h3 { margin-bottom: 16px; }

        /* Team Section (Leadership) */
        .team-section {
            background: #f8fafc;
            padding: 80px 0;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        .team-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .team-card:hover { transform: translateY(-5px); }
        .team-img { height: 280px; overflow: hidden; }
        .team-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .team-card:hover .team-img img { transform: scale(1.05); }
        .team-info { padding: 24px; text-align: center; }
        .team-info h4 { font-size: 20px; margin-bottom: 6px; }
        .team-role { color: #0056b3; font-weight: 500; font-size: 13px; margin-bottom: 12px; }
        .team-bio { font-size: 13px; color: #5a6e7c; }

        /* Timeline (Company Journey) */
        .timeline-section {
            padding: 80px 0;
            background: white;
        }
        .timeline {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }
        .timeline:before {
            content: ''; position: absolute; left: 50%; transform: translateX(-50%);
            width: 2px; height: 100%; background: #0056b3; opacity: 0.2;
        }
        .timeline-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
            position: relative;
        }
        .timeline-year {
            width: 120px;
            font-weight: 700;
            font-size: 20px;
            color: #0056b3;
        }
        .timeline-content {
            width: calc(50% - 30px);
            background: #f9fbfd;
            padding: 20px;
            border-radius: 16px;
        }
        .timeline-item:nth-child(even) { flex-direction: row-reverse; }
        @media (max-width: 768px) {
            .timeline:before { left: 20px; }
            .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; margin-left: 40px; }
            .timeline-year { margin-bottom: 10px; }
            .timeline-content { width: 100%; }
        }

        /* CTA Section */
        .cta-about {
            background: linear-gradient(135deg, #0056b3, #003d82);
            padding: 70px 0;
            text-align: center;
            color: white;
        }
        .btn-light {
            background: white; color: #0056b3; padding: 14px 36px;
            border-radius: 40px; text-decoration: none; font-weight: 600;
            display: inline-block; margin-top: 20px; transition: 0.2s;
        }
        .btn-light:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

        /* Footer */
        .main-footer {
            background: #0a1c2a;
            color: #cddfe7;
            padding: 56px 0 24px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .footer-col h4 { font-size: 18px; color: white; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a { color: #cddfe7; text-decoration: none; }
        .social-links { display: flex; gap: 16px; margin-top: 20px; }
        .social-links a { background: #1e3a4d; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
        .footer-bottom {
            border-top: 1px solid #1e3a4d;
            margin-top: 48px;
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
        }
        .whatsapp-float {
            position: fixed; bottom: 28px; right: 28px; background: #25D366;
            width: 54px; height: 54px; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; font-size: 28px;
            color: white; z-index: 999; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .story-grid, .mv-grid { grid-template-columns: 1fr; }
            .about-hero h1 { font-size: 32px; }
        }

                /* Container for the logo */
.logo {
    display: flex;
    align-items: center; /* Vertically centers the logo in the navbar */
    height: 100%;
}

.logo img {
    /* Set a specific height to keep it consistent */
    height: 60px; 
    width: auto; /* Automatically calculates width to prevent distortion */
    
    /* Premium touch: subtle transitions for scroll or hover */
    transition: transform 0.3s ease, height 0.3s ease;
    
    /* Ensure it remains crisp on all screens */
    image-rendering: -webkit-optimize-contrast;
    display: block;
}

/* Optional: Slight hover effect to make it feel interactive */
.logo:hover img {
    transform: scale(1.05);
}

/* Scale down for mobile to save screen real estate */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}
/* This class is added by your existing JavaScript on scroll */
.header-scrolled .logo img {
    height: 48px; /* Shrinks from 60px to 48px for a compact look */
}
