/* styles.css */

/* ... (include all the CSS from your original file here) ... */
 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #1e40af;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn:hover {
            background-color: #1e3a8a;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.5rem;
            color: #374151;
            margin-bottom: 40px;
            text-align: center;
        }
		 .section-title-b {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle-b {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 40px;
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
		
	.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e40af;
        }
        
        .logo-text {
            margin-left: 15px;
        }
        
        .logo-text h1 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #111827;
        }
        
        .logo-text p {
            font-size: 0.8rem;
            color: #6b7280;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            font-size: 1.1rem;
            font-weight: 500;
            color: #4b5563;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav a:hover, nav a.active {
            color: #1e40af;
        }
        
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #1e40af;
            border-radius: 3px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1e40af;
        }
        
        /* Hero Section */
		/* Hero background image layer */
.hero {
    position: relative;
    overflow: hidden; /* keep image neatly clipped */
    background: none; /* we’ll create the gradient via ::before */
}

/* Gradient overlay for text contrast */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* same palette as your brand gradient, with transparency */
    background: linear-gradient(135deg, rgba(30,64,175,0.75) 0%, rgba(30,58,138,0.70) 50%, rgba(30,27,75,0.65) 100%);
    z-index: 1;
}

/* Image wrapper covers the hero */
.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Make the <img> act like a background: cover + center */
.hero .hero-bg picture,
.hero .hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero .hero-bg img {
    object-fit: cover;
    object-position: center;
    filter: none; /* keep sharp, overlay provides contrast */
}

/* Keep text above overlay */
.hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Optional: ensure a good min height across viewports */
.hero {
    min-height: 60vh;
}

@media (max-width: 576px) {
    .hero {
        min-height: 55vh;
    }
}

        .hero {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e1b4b 100%);
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Services Overview */
        .services-overview {
            background-color: #f3f4f6;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            color: #1e40af;
            margin-bottom: 15px;
        }
        
        /* Value Proposition */
        .value-proposition {
            background-color: white;
        }
        
        .value-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .value-text {
            flex: 1;
        }
        
        .value-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        /* Trust Indicators */
        .trust-indicators {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
        }
        
        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
        }
        
        .stat {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Client Promise */
        .client-promise {
            background-color: #f3f4f6;
            text-align: center;
        }
        
        .promise-box {
            background: white;
            max-width: 800px;
            margin: 0 auto;
            padding: 50px;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .promise-box p {
            font-size: 1.2rem;
            line-height: 1.8;
        }
        
        /* Experience Section */
        .experience {
            background-color: white;
        }
        
        .experience-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        /* About Page Styles */
        .about-hero {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .who-we-are {
            background-color: #f3f4f6;
            padding: 80px 0;
        }
        
        .approach {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .approach-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .approach-focus {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .focus-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 15px 25px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        .team-section {
            padding: 80px 0;
            background-color: #f3f4f6;
        }
        
        .founder {
            background: white;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .founder-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .founder-image {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: 800;
        }
        
        .founder-text h3 {
            font-size: 2rem;
            color: #1e40af;
            margin-bottom: 10px;
        }
        
        .founder-text p {
            color: #1e40af;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .qualifications {
            margin-top: 20px;
        }
        
        .qualifications li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .qualifications li::before {
            content: '•';
            color: #1e40af;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .consultants {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .consultant {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .consultant h4 {
            font-size: 1.3rem;
            color: #1e40af;
            margin-bottom: 10px;
        }
        
        .consultant p {
            color: #6b7280;
            margin-bottom: 10px;
        }
        
        /* Services Page Styles */
        .services-hero {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .services-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .service-category {
            background: white;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .service-category h3 {
            font-size: 2rem;
            color: #1e40af;
            margin-bottom: 20px;
        }
        
        .service-category p {
            color: #1e40af;
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .specialties {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .specialty {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background-color: #f3f4f6;
            border-radius: 8px;
        }
        
        .specialty::before {
            content: '•';
            color: #1e40af;
            font-weight: bold;
        }
        
        .additional-services {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
            border-radius: 16px;
            padding: 40px;
        }
        
        .additional-services h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .additional-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .additional-service {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            text-align: center;
        }
        
        .additional-service::before {
            content: '•';
            color: white;
            font-weight: bold;
        }
        
        /* Contact Page Styles */
        .contact-hero {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
        }
        
        .office {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .office h3 {
            font-size: 1.8rem;
            color: #1e40af;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 30px;
            height: 30px;
            background: #1e40af;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        
        .social-media {
            background: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .social-media h3 {
            font-size: 1.8rem;
            color: #1e40af;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .social-link {
            background: #1e40af;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
        }
        
        .contact-form {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4b5563;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .maps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .map-box {
            background: #f3f4f6;
            border-radius: 12px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            color: #6b7280;
        }
        
        /* Footer */
        footer {
            background-color: #111827;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #3b82f6;
            margin-bottom: 20px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            opacity: 0.8;
        }
        
        .footer-contact .small {
            font-size: 0.9rem;
            opacity: 0.6;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .section {
                padding: 60px 0;
            }
            
            .hero h1, .about-hero h1, .services-hero h1, .contact-hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .value-content, .experience-content, .founder-content {
                flex-direction: column;
                text-align: center;
            }
            
            .value-image, .experience-image {
                order: -1;
                margin-bottom: 30px;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
              /* flex-direction: column; */
                gap: 20px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            nav a {
                font-size: 1rem;
            }
            
            .hero h1, .about-hero h1, .services-hero h1, .contact-hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .trust-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .maps {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                position: absolute;
                top: 100%;
                left: 0;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
                overflow: hidden;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                width: 100%;
            }
            
            nav a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #f3f4f6;
            }
            
            nav a:last-child {
                border-bottom: none;
            }
            
            .hero, .about-hero, .services-hero, .contact-hero {
                padding: 80px 0;
            }
            
            .hero h1, .about-hero h1, .services-hero h1, .contact-hero h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 50px 0;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }