:root {
            --primary-blue: #0056b3;
            --secondary-blue: #00a8ff;
            --dark-blue: #003366;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-muted: #6c757d;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* Prevents navbar from covering section titles */
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* --- Navbar & Logo --- */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--primary-blue) !important;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--secondary-blue) !important;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-blue) !important;
            margin-left: 20px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary-blue) !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* --- Section Titles --- */
        .section-title {
            position: relative;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: var(--secondary-blue);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* --- Founder Section --- */
        .founder-section {
            padding: 100px 0 80px;
            background-color: var(--white);
        }

        .founder-img-wrapper {
            position: relative;
            display: inline-block;
        }

        .founder-img {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 50%;
            border: 8px solid var(--light-bg);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .founder-img-wrapper:hover .founder-img {
            transform: scale(1.05);
            border-color: var(--secondary-blue);
            box-shadow: 0 15px 40px rgba(0,86,179,0.2);
        }

        /* --- Team Section --- */
        /* Work Showcase Styling */
.work-showcase-section {
    padding: 80px 0;
    background-color: #fff;
}

.slideshow-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Ensures perfect square shape */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.slideshow-container:hover {
    transform: translateY(-10px);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-list {
    list-style: none;
    padding-left: 0;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
}

.achievement-icon {
    background: #007bff;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.achievement-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
}
       /* .team-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .team-card {
            background: var(--white);
            border: none;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .team-img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid var(--light-bg);
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-img {
            transform: rotate(5deg) scale(1.1);
            border-color: var(--secondary-blue);
        }

        .social-links a {
            color: var(--text-muted);
            font-size: 1.2rem;
            margin: 0 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-links a:hover {
            color: var(--primary-blue);
            transform: scale(1.3);
        }

        .email-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            word-break: break-all;
        } */

        footer { 
            background: #111; 
            color: #ccc; 
            padding: 60px 0 20px; 
        }
        footer h5 { 
            color: white; 
            font-weight: 700; 
            margin-bottom: 20px; 
        }
        footer a { 
            color: #ccc; 
            text-decoration: none; 
            transition: 0.3s; 
        }
        footer a:hover { 
            color: var(--primary-blue); 
        }
        .social-icons i { 
            font-size: 1.5rem; 
            margin-right: 15px; 
            cursor: pointer;
             transition: 0.3s; 
            }
        .social-icons i:hover { 
            color: var(--primary-blue); 
        }

        .bottom-bar {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            font-size: 0.85rem;
        }

        @media (max-width: 991px) {
            .nav-link { margin-left: 0; padding: 10px 0; }
        }
        /* Right-side Map & Address Styling */
    .map-address-col {
        display: flex;
        align-items: center; /* Aligns map and text vertically center */
        gap: 12px;
        padding-left: 20px; /* Separates it from the social icons */
    }

    .footer-map-box {
        width: 80px;
        height: 65px;
        border-radius: 6px;
        overflow: hidden;
        border: 1px solid #444;
        flex-shrink: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .footer-map-box:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
    }

    .footer-address-text {
        font-size: 11px;
        line-height: 1.4;
        color: #adb5bd;
        margin: 0;
        text-align: left;
    }

    /* Mobile handling: Stacks on mobile, stays side-by-side on Desktop */
    @media (max-width: 768px) {
        .map-address-col {
            padding-left: 0;
            justify-content: center;
            margin-top: 20px;
        }
    }
    .footer-map-box {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map-box {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;   /* IMPORTANT */
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;        /* fixed size same as map */
    height: 90px;        /* fixed size same as map */
    z-index: 2;
}

