/* Base Styles & Variables */
:root {
    --primary-dark: #041C39;
    --primary-light: #E6DDD3;
    --accent-gold: #D9AF62;
    --accent-purple: #583BBF;
    --accent-teal: #539DA6;
    --text-dark: #333333;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Desktop Navbar Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #041C39; /* Example background color */
    padding: 15px 30px; /* Example padding */
}

.nav-links {
    display: flex; /* Show links in a row for desktop */
    gap: 20px; /* Space between links */
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none; /* Hidden by default */
    cursor: pointer;
}

/* Show mobile menu button on smaller screens */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column; /* Stack links vertically */
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        right: 0;
        background: #539DA6; /* Match your header background */
        width: 100%;
        z-index: 10;
    }

    .nav-links.active {
        display: flex; /* Show links when active */
    }

    .mobile-menu-btn {
        display: block; /* Show mobile menu button */
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 28, 57, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.logo img {
    height: 40px;
}

.nav-links a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.125rem;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.cta-button {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/enhancedgraph.jpeg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(4, 28, 57, 0.95) 0%,
        rgba(4, 28, 57, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    z-index: 3;
}

.hero-text-container {
    max-width: 800px;
    margin-left: 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-eyebrow {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 2rem 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-light);
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: #539DA6;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.section-tag {
    font-size: 3.75rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem !important;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
    opacity: 1;
}

.supporting-text {
    font-size: 1.25rem !important;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
    opacity: 1;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .lead-text {
        font-size: 1.125rem;
    }
}

/* Focus Section */
.focus-section {
    padding: 120px 0;
    background-color: #041C39;
    position: relative;
    overflow: hidden;
}

.focus-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.focus-section .section-tag {
    font-size: 3.75rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.focus-section .section-intro {
    font-size: 1.375rem;
    color: var(--primary-light);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.focus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 24px;
    color: #041C39;
}

.focus-card h3 {
    font-size: 1.625rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.focus-card p {
    font-size: 1.125rem;
    color: var(--primary-light);
    opacity: 0.8;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .focus-section .section-tag {
        font-size: 2.75rem;
    }

    .focus-section .section-intro {
        font-size: 1.175rem;
    }
}

@media (max-width: 768px) {
    .focus-section {
        padding: 80px 0;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-card {
        padding: 30px;
    }
}

/* Vision & Mission */
.vision-mission {
    padding: 120px 0;
    background-color: #539DA6;
    position: relative;
    overflow: hidden;
}

.vm-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vm-card .label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #539DA6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vm-card h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vm-card p {
    font-size: 1.375rem;
    color: var(--primary-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vision-mission {
        padding: 80px 0;
    }

    .vm-card {
        padding: 30px;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .vm-card {
        padding: 25px;
    }

    .vm-card p {
        font-size: 1.125rem;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--primary-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 3.75rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-intro {
    font-size: 1.375rem;
    color: var(--primary-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(88, 59, 191, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 20px;
    color: var(--accent-purple);
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-tag {
        font-size: 2.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
}

/* Impact Section */
.impact-section {
    padding: 120px 0;
    background-color: #041C39;
    position: relative;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header .section-tag {
    font-size: 3.75rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.impact-header .section-intro {
    font-size: 1.375rem;
    color: var(--primary-light);
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-card p {
    font-size: 1.375rem;
    color: var(--primary-light);
    margin: 0;
}

.impact-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.impact-content p {
    font-size: 1.25rem;
    color: var(--primary-light);
    opacity: 0.9;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--accent-gold);
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .impact-section {
        padding: 80px 0;
    }

    .impact-header .section-tag {
        font-size: 2.75rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .highlight-text {
        font-size: 1.175rem;
    }

    .cta-section {
        padding: 40px;
    }

    .cta-section h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 30px;
    }

    .impact-content p {
        font-size: 1.125rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: #539DA6;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-section .section-tag {
    font-size: 3.75rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.team-section .section-intro {
    font-size: 1.375rem;
    color: var(--primary-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-info h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.designation {
    font-size: 1.25rem;
    color: #539DA6;
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--primary-dark);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .team-section {
        padding: 80px 0;
    }

    .team-section .section-tag {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 25px;
    }
}

/* Contact & Footer Section */
.contact-footer {
    background: var(--primary-dark);
    padding: 80px 0 40px;
    color: var(--primary-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

.contact-item p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 1.125rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-footer {
        padding: 60px 0 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2.25rem;
    }

    .footer-content {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }

    .contact-item p {
        font-size: 1.125rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background-color: #E6DDD3;
    position: relative;
    overflow: hidden;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us .section-tag {
    font-size: 3.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.why-us-content {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.why-us-content .lead-text {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.why-us-content .supporting-text {
    font-size: 1.25rem;
    color: var(--primary-dark);
    opacity: 0.9;
    line-height: 1.8;
}

/* USP Cards */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.usp-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.usp-card h3 {
    font-size: 1.625rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.usp-card p {
    font-size: 1.125rem;
    color: var(--primary-dark);
    opacity: 0.8;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .why-choose-us .section-tag {
        font-size: 2.75rem;
    }

    .why-us-content .lead-text {
        font-size: 1.175rem;
    }

    .why-us-content .supporting-text {
        font-size: 1.125rem;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .usp-card {
        padding: 30px;
    }
}

/* About and Why Choose Us paragraphs */
.about-content .lead-text,
.about-content .supporting-text,
.why-us-content .lead-text,
.why-us-content .supporting-text {
    font-weight: 500;  /* Medium weight for better readability while being bold */
}

/* If you want it even bolder, you can use: */
.about-content .lead-text,
.about-content .supporting-text,
.why-us-content .lead-text,
.why-us-content .supporting-text {
    font-weight: 600;  /* Semi-bold weight */
}

/* Why Choose Us section paragraphs */
.why-us-content .lead-text,
.why-us-content .supporting-text {
    font-size: 1.25rem !important;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
    opacity: 1;
} 