  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        /* Nav Container */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            min-height: 90px;
        }

        /* Logo */
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c5aa0;
        }

        /* Nav Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 20px;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            display: block;
        }

        /* Animated Underline Effect */
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #1e3f73);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: #2c5aa0;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* CTA Button */
        .cta-button {
            background: #2c5aa0;
            color: white;
            padding: 0.7rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #1e3f73;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            height: 3px;
            width: 25px;
            background: #333;
            border-radius: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                right: 20px;
                background: #a3c2f1;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                padding: 1rem 2rem;
                border-radius: 8px;
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .cta-button {
                display: none;
            }
        }
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 110px 0 20px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .breadcrumb {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

      /* About Intro */
.about-intro {
    padding: 80px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.highlight-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
    margin-top: 2rem;
}

.intro-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image {
        height: 300px;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
}

        /* Mission Vision Values */
        .mvv-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c5aa0;
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .mvv-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .mvv-card:hover {
            transform: translateY(-5px);
        }

        .mvv-icon {
            font-size: 3rem;
            color: #2c5aa0;
            margin-bottom: 1.5rem;
        }

        .mvv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .mvv-card p {
            color: #666;
            font-size: 1rem;
        }

 /* Team Overview Section */
        .team-overview-section {
            padding: 80px 0;
            background: #fff;
        }

        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .team-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #5a6c7d;
        }

        .leadership-section {
            margin-bottom: 60px;
        }

        .leadership-title {
            text-align: center;
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .leader-card {
            background: #fff;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: #1e3f73;
        }

        .leader-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3f73, #1e3f73);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            color: white;
        }

        .leader-role {
            font-size: 0.9rem;
            color: #1e3f73;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .leader-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .team-strength {
            background: #f8f9fa;
            padding: 50px 30px;
            border-radius: 20px;
        }

        .strength-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .strength-card {
            text-align: center;
            background: #fff;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .strength-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .strength-icon {
            width: 50px;
            height: 50px;
            background: #1e3f73;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 20px;
            color: white;
        }

        .strength-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3f73;
            margin-bottom: 5px;
        }

        .strength-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .strength-desc {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .leadership-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .strength-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .team-strength {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .leadership-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .intro-content h2 {
                font-size: 1.8rem;
            }
            
            .process-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .process-card {
                padding: 25px;
            }
        }
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border-top: 4px solid #2c5aa0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
        }

     /* Company Culture */
.culture-section {
    padding: 80px 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-list {
    list-style: none;
}

.culture-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.culture-list i {
    color: #2c5aa0;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Culture Image Styling */
.culture-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.culture-image:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .culture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .culture-image {
        height: 300px;
    }
}
        /* Client Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #2c5aa0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #666;
            font-size: 1rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: #2c5aa0;
            margin-bottom: 0.5rem;
        }

        .testimonial-company {
            font-size: 0.9rem;
            color: #888;
        }

        .quote-icon {
            font-size: 2rem;
            color: #2c5aa0;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .intro-content,
            .culture-content {
                grid-template-columns: 1fr;
            }

            .mvv-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
