 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        /* CSS Variables */
        :root {
            --navy-blue: #0d1b2a;
            --sky-blue: #1b9aaa;
            --accent-blue: #2a6f97;
            --white: #ffffff;
            --light-gray: #e0e1dd;
            --dark-gray: #415a77;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--navy-blue);
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
             font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        p {
            margin-bottom: 1rem;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-blue);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--sky-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--navy-blue);
            border: 2px solid var(--navy-blue);
        }

        .btn-secondary:hover {
            background-color: var(--navy-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-white {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-white:hover {
            background-color: var(--white);
            color: var(--navy-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

         /* Top Bar */
        .top-bar {
            background-color: var(--navy-blue);
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            color: #ffffff;
        }

        .top-bar-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

         .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-bar i {
            margin-right: 8px;
            color: var(--sky-blue);
        }

        /* Navbar */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 2.4em;
            z-index: 1000;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--navy-blue);
            font-weight: 700;
            font-size: 24px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 5px;
            color: var(--white);
        }
       
        .logo-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 30px;
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--navy-blue);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--sky-blue);
        }

        .nav-link.active {
            color: var(--sky-blue);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--sky-blue);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            background-color: var(--white);
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            z-index: 1;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            top: 100%;
            left: 0;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: var(--navy-blue);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s;
        }

        .dropdown-content a:hover {
            background-color: var(--light-gray);
            color: var(--sky-blue);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--navy-blue);
        }

        /* About Hero Section */
        .about-hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .about-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('assets/hero7.jpg');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 27, 42, 0.7);
            z-index: -1;
        }

        .about-hero-content {
            max-width: 600px;
            color: var(--white);
            padding: 0 20px;
        }

        .about-hero-preheading {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--sky-blue);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .about-hero-heading {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .about-hero-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .about-hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* About Mission & Vision Section */
        .about-mission-vision {
            background-color: var(--light-gray);
        }

        .about-mv-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .about-mv-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--sky-blue);
        }

        .about-mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .about-mv-icon {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }

        .about-mv-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--navy-blue);
        }

        /* About Story Section */
        .about-story-text {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .about-story-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .about-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background-color: var(--accent-blue);
            transform: translateX(-50%);
        }

        .about-timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 30px;
            position: relative;
            margin-bottom: 50px;
            width: 50%;
        }

        .about-timeline-item:nth-child(even) {
            align-self: flex-end;
            justify-content: flex-start;
            padding-left: 30px;
            padding-right: 0;
            margin-left: 50%;
        }

        .about-timeline-content {
            background-color: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            max-width: 400px;
            position: relative;
        }

        .about-timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            background-color: var(--white);
        }

        .about-timeline-item:nth-child(even) .about-timeline-content::after {
            right: auto;
            left: -10px;
        }

        .about-timeline-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 15px;
        }

        .about-timeline-year {
            font-weight: 600;
            color: var(--sky-blue);
            margin-bottom: 5px;
        }

        .about-timeline-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--navy-blue);
        }

        /* About Team Section */
        .about-team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .about-team-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding-bottom: 25px;
            padding-top: 10px;
        }

        .about-team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .about-team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .about-team-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--navy-blue);
        }

        .about-team-role {
            color: var(--sky-blue);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .about-team-bio {
            padding: 0 20px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .about-team-btn {
            background-color: transparent;
            color: var(--accent-blue);
            border: 1px solid var(--accent-blue);
            padding: 8px 20px;
            border-radius: 4px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .about-team-btn:hover {
            background-color: var(--accent-blue);
            color: var(--white);
        }

        /* About Gallery Section */
        .about-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .about-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            aspect-ratio: 1 / 1;
            cursor: pointer;
        }

        .about-gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-gallery-item:hover .about-gallery-img {
            transform: scale(1.05);
        }

        /* About Projects Highlight Section */
        .about-projects-highlight {
            background-color: var(--light-gray);
        }

        .about-projects-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .about-project-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .about-project-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .about-project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .about-project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .about-project-title {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--navy-blue);
        }

        .about-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .about-badge--ongoing {
            background-color: var(--sky-blue);
            color: var(--white);
        }

        .about-badge--completed {
            background-color: var(--light-gray);
            color: var(--navy-blue);
        }

        .about-project-desc {
            color: var(--dark-gray);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* About CTA Section */
        .about-cta {
            background-color: var(--navy-blue);
            color: var(--white);
            text-align: center;
        }

        .about-cta-heading {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .about-cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .about-footer {
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--light-gray);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Modal Styles */
        .about-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .about-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .about-modal-content {
            background-color: var(--white);
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .about-modal.active .about-modal-content {
            transform: translateY(0);
        }

        .about-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-gray);
            transition: color 0.3s ease;
        }

        .about-modal-close:hover {
            color: var(--navy-blue);
        }

        .about-modal-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .about-modal-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }

        .about-modal-name {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--navy-blue);
        }

        .about-modal-role {
            color: var(--sky-blue);
            font-weight: 600;
        }

        .about-modal-bio {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .about-modal-contact {
            display: flex;
            gap: 15px;
        }

        .about-modal-contact a {
            color: var(--accent-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .about-modal-contact a:hover {
            color: var(--sky-blue);
        }

        /* Lightbox Styles */
        .about-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .about-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .about-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .about-lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .about-lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .about-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
        }

        .about-lightbox-prev {
            left: 10px;
        }

        .about-lightbox-next {
            right: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-hero-heading {
                font-size: 2.8rem;
            }

            .about-mv-container {
                grid-template-columns: 1fr;
            }

            .about-team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .about-projects-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .about-hero-heading {
                font-size: 2.2rem;
            }

            .about-timeline::before {
                left: 30px;
            }

            .about-timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }

            .about-timeline-item:nth-child(even) {
                margin-left: 0;
            }

            .about-timeline-content::after {
                left: -10px;
                right: auto;
            }

            .about-team-grid {
                grid-template-columns: 1fr;
            }

            .about-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-modal-header {
                flex-direction: column;
                text-align: center;
            }

            .about-modal-img {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .about-hero-heading {
                font-size: 1.8rem;
            }

            .about-hero-buttons {
                flex-direction: column;
            }

            .about-hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .about-cta-heading {
                font-size: 2rem;
            }

            .about-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-cta-buttons .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            .about-gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer Section */
        .container-footer {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), 
                        url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--sky-blue);
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: var(--light-gray);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--sky-blue);
        }
        
        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .news-item a:hover {
            color: var(--sky-blue);
        }
        
        .news-date {
            font-size: 0.85rem;
            color: var(--sky-blue);
            margin-bottom: 5px;
        }
        
        .contact-info {
            margin-bottom: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--light-gray);
        }
        
        .contact-item i {
            margin-right: 12px;
            color: var(--sky-blue);
            width: 20px;
            text-align: center;
        }
        
        .footer-newsletter-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 0.9rem;
        }
        
        .footer-newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-newsletter-form input:focus {
            outline: none;
            border-color: var(--sky-blue);
        }
        
        .btn-footer-subscribe {
            background-color: var(--accent-blue);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-footer-subscribe:hover {
            background-color: var(--sky-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .newsletter-section h2 {
                font-size: 2rem;
            }
            
            .form-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }


        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 23vh;
                right: -100%;
                background-color: var(--white);
                width: 280px;
                height: 100vh;
                flex-direction: column;
                padding-top: 80px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
                margin-left: 0;
                padding: 0 20px;
            }

            .hamburger {
                display: block;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: transparent;
                padding-left: 20px;
            }

            .dropdown-content a {
                padding: 8px 0;
                border-bottom: none;
            }}