        /* Reset and Base Styles */
        /* ===== BASIC ===== */
#navbar ul li a.active {
    color: #386ea8; /* Active link color */
    font-weight: bold;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */


/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    background: #fca311;
    color: #000;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
    font-weight: bold;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
}

/* ===== NAV ===== */
nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #6f859c;
        display: none;
        flex-direction: column;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    nav ul li {
        margin: 10px 0;
    }
}

/* ///// */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: #ffffff;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #2c5282;
            color: white;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #1a365d;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #2c5282;
            color: #2c5282;
        }

        .btn-outline:hover {
            background-color: #2c5282;
            color: white;
        }

        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #2c5282;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background-color: #2c5282;
            border-radius: 8px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c5282;
        }

        nav ul {
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
            color: #333;
        }

        nav ul li a:hover {
            color: #205fac;
        }

        /* Hero Section */
        .hero {
            background-color: #f8fafc;
            padding: 80px 0;
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #1a365d;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        /* Services Section */
        .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background-color: #f8fafc;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 20px;
            background-color: #ebf4ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-icon i {
            font-size: 24px;
            color: #2c5282;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c5282;
        }

        /* About Section */
        .about {
            background-color: #f8fafc;
        }

        .about-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .about-content {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c5282;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Team Section */
        .team {
            background-color: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .team-member h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #2c5282;
        }

        .team-member p {
            color: #666;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 per row */
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
            /* background: #f8fafc; */
            padding: 20px;
            border-radius: 10px;
            transition: 0.3s;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: #f8fafc;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: bold;
            color: #2c5282;
        }

        .testimonial-position {
            color: #666;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            background-color: white;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #ebf4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .contact-icon i {
            color: #2c5282;
        }

        .contact-details h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #2c5282;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: #1a365d;
            color: white;
            padding: 40px 0;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 30px;
            height: 30px;
            background-color: white;
            border-radius: 6px;
            color: #1a365d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }

        .footer-logo-text {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: #cbd5e0;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            margin-top: 20px;
            color: #cbd5e0;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            @media (max-width: 992px) {
                .team-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 576px) {
                .team-grid {
                    grid-template-columns: 1fr;
                }
            }

            nav ul {
                margin-top: 20px;
                justify-content: center;
            }

            nav ul li {
                margin: 0 10px;
            }

            .hero-content,
            .about-content {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
