

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ===== CSS CUSTOM PROPERTIES (DESIGN TOKENS) ===== */
:root {
    /* Colors */
    --primary-color: #0A2A43;
    --primary-hover: #071e32;
    --secondary-color: #DAA520;
    --secondary-hover: #c4941d;
    --accent-color: #DAA520;
    --white: #FFFFFF;
    --gray-light: #F4F6F8;
    --gray-medium: #E5E7EB;
    --gray-dark: #6B7280;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-weight: var(--font-medium);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    /* Solid primary-colored secondary buttons for header/about CTAs
       No border or shadow; responsive padding for different screen sizes */
    background-color: #0A2A43;
    color: #ffffff;
    border: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    padding: 0.6rem 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 180ms ease, transform 120ms ease;
}

.btn-secondary:hover:not(:disabled) {
    /* Lighter variant of #0A2A43 for hover (subtle lightening) */
    background-color: #123A57 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-secondary:focus {
    outline: 3px solid rgba(255,255,255,0.08);
    outline-offset: 2px;
}

/* Ensure navbar 'Get Started' uses the exact primary color across sizes */
.navbar .btn-secondary {
    background-color: #0A2A43 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

.btn-secondary:focus {
    /* subtle focus outline for accessibility without a shadow */
    background-color: #0A2A43;
    outline: 3px solid #0A2A43;
    outline-offset: 2px;
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* Hero Section Button Styling */
.hero-actions .btn {
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    min-width: 200px;
    border-radius: var(--radius-lg);
}

.hero-actions .btn-primary {
    /* Deep gold hero CTA with high contrast text - override global .btn-primary */
    background-color: #D4AF37 !important; /* deep gold */
    color: var(--white) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 8px 24px rgba(10, 42, 67, 0.12);
}

.hero-actions .btn-primary:hover:not(:disabled) {
    background-color: #C99E2F !important; /* slightly darker deep gold */
    border-color: #C99E2F !important;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(10, 42, 67, 0.16);
    color: var(--white) !important;
}

.hero-actions .btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
    padding: var(--space-3);
}

/* Bootstrap Navbar Styles */
.navbar {
    padding: var(--space-4) 0;
}

.navbar-brand.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.navbar-brand.logo:hover {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
}

.logo-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--secondary-color);
    line-height: 1;
    margin: 0;
}

.navbar-nav {
    margin: 0;
}

.navbar-nav .nav-item {
    margin: 0 var(--space-2);
}

.navbar-nav .nav-link {
    font-weight: var(--font-medium);
    color: var(--text-primary);
    padding: var(--space-2) var(--space-3);
    position: relative;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-collapse {
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0 var(--space-3);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: var(--space-24) 0 var(--space-20) 0;
    background-color: #0A2A43;
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    padding-right: var(--space-8);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-6);
    line-height: 1.1;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}


.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--white);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background-color: #0A2A43;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.illustration-placeholder {
    color: var(--white);
    font-size: 8rem;
}

/* ===== HERO VISUAL IMAGE ADJUSTMENTS ===== */
/* Ensure any real <img> inside the hero illustration fills the decorative container and scales */
.hero-illustration img,
.hero-illustration .corporate-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-2xl);
}

/* Make the illustration flexible and allow it to act like an aspect-ratio container */
.hero-illustration {
    max-width: 480px; /* allow larger visuals on wide screens */
    width: 100%;
    height: auto;      /* let height be driven by content or explicit height in larger breakpoints */
    aspect-ratio: 1 / 1; /* keep square aspect by default */
    overflow: hidden;
    position: relative;
}

/* When the container uses aspect-ratio, absolutely position the image to cover it */
.hero-illustration img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments: stack hero on smaller screens and reduce illustration size */
@media (max-width: 991.98px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
        min-height: auto;
    }

    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-text {
        order: 1;
        padding-right: 0;
    }

    .hero-illustration {
        max-width: 360px;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hero-illustration {
        max-width: 280px;
        aspect-ratio: 1 / 1;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }
}

/* ===== SECTIONS ===== */
.services-overview,
.why-choose-us,
.about-preview,
.testimonials,
.cta-banner {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #0A2A43;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--white);
    font-size: 1.5rem;
}

.service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.service-link {
    color: var(--secondary-color);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background-color: var(--gray-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.pillar-card {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-medium);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: #0A2A43;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

.pillar-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ABOUT PREVIEW ===== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

/* About section primary button: professional, no border/shadow, responsive */
.about-preview .btn-primary,
.about-preview .btn {
    background-color: #0A2A43 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.6rem 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 160ms ease, transform 120ms ease;
}

.about-preview .btn-primary:hover:not(:disabled),
.about-preview .btn:hover:not(:disabled) {
    background-color: #123A57 !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

@media (max-width: 575.98px) {
    .about-preview .btn-primary,
    .about-preview .btn {
        width: 100%;
        display: block;
        padding: 0.9rem 1rem;
        font-size: 0.98rem;
    }
}

/* ===== PAGE CTA BUTTONS (About / Services / Contact) ===== */
/* Apply a consistent, professional CTA style across the main content sections */
.services-overview .btn,
.contact-section .btn,
.about-preview .btn,
.about-content .btn,
.cta-section .btn,
.page-cta,
.service-card .service-link {
    background-color: #0A2A43 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.6rem 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 160ms ease, transform 120ms ease;
}

.services-overview .btn:hover:not(:disabled),
.contact-section .btn:hover:not(:disabled),
.about-preview .btn:hover:not(:disabled),
.service-card .service-link:hover:not(:disabled),
.page-cta:hover:not(:disabled) {
    background-color: #123A57 !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Ensure focus is visible and accessible */
.services-overview .btn:focus,
.contact-section .btn:focus,
.about-preview .btn:focus,
.page-cta:focus,
.service-card .service-link:focus {
    outline: 3px solid rgba(10,42,67,0.12);
    outline-offset: 2px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: #0A2A43;
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    display: block;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background-color: var(--gray-light);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #0A2A43;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

.author-name {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.author-position {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: var(--space-16) 0;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    color: var(--white);
}

.cta-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}

/* CTA button styling: remove border and make the CTA look professional */
.cta-banner .btn-primary {
    /* Force white background and dark text for CTA, overriding global .btn-primary */
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-color: transparent !important;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    box-shadow: 0 10px 30px rgba(10, 42, 67, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta-banner .btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(10, 42, 67, 0.16);
    /* Keep text visible on hover */
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.cta-banner .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(10,42,67,0.08);
}

/* ===== ABOUT PAGE SECTIONS ===== */

/* About Story */
.about-story {
    padding: var(--space-20) 0;
    background-color: var(--gray-light);
}

.story-text p {
    margin-bottom: var(--space-6);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Mission, Vision, Values */
.mission-vision-values {
    padding: var(--space-20) 0;
    background-color: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.mvv-card {
    background-color: var(--gray-light);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
    transition: all var(--transition-normal);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-lg);
}

.mvv-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.mvv-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.values-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: var(--space-3);
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* What We Stand For */
.what-we-stand-for {
    padding: var(--space-20) 0;
    background-color: var(--gray-light);
}

.stand-for-content {
    display: block;
    align-items: center;
}

.stand-for-text h2 {
    margin-bottom: var(--space-6);
}

.stand-for-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}
.corporate-icon-large svg {
    width: 120px;
    height: 120px;
    color: var(--white);
}

/* Our Team */
.our-team {
    padding: var(--space-20) 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

/* Timeline */
.timeline-section {
    padding: var(--space-20) 0;
    background-color: var(--gray-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: var(--space-12) auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--space-12);
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-content {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
    max-width: 350px;
    position: relative;
}

.timeline-year {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
    margin-bottom: var(--space-2);
}

.timeline-content h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT PAGE SECTIONS ===== */

/* Contact Section */
.contact-section {
    padding: var(--space-20) 0;
    background-color: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* Desktop: side by side layout */
@media (min-width: 992px) {
    .contact-content {
        grid-template-columns: 2fr 1fr;
        gap: var(--space-12);
    }
}

.contact-form-container {
    background-color: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-medium);
}

.contact-form {
    margin-top: var(--space-8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-actions {
    margin-top: var(--space-8);
    text-align: center;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-info-section {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
}

.contact-info-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.contact-info-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.contact-method-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.contact-method-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-method-content a:hover {
    color: var(--secondary-color);
}

.response-time-card {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.response-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto var(--space-4);
}

.response-time-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
}

.response-time-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-20) 0;
    background-color: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.faq-item {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES DETAIL SECTIONS ===== */
.services-detail {
    padding: var(--space-20) 0;
    background-color: var(--gray-light);
}

.services-detail:nth-child(even) {
    background-color: var(--white);
}

.service-detail-header {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-lg);
}

.service-detail-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.service-detail-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo .logo-text {
    color: var(--white);
    margin-bottom: var(--space-2);
}

.footer-logo .logo-subtitle {
    color: var(--secondary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-6);
    color: var(--white);
}

.footer-links  {
    list-style: none;

}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 767.98px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    /* Ensure the navbar 'Get Started' button is visible and usable in the collapsed menu */
    .navbar-collapse .btn-secondary {
        display: block !important;
        width: 100%;
        padding: 0.75rem 1rem;
        margin: var(--space-2) 0;
        background-color: #0A2A43 !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: none !important;
        text-align: center;
        border-radius: var(--radius-md);
    }

    .navbar-collapse .btn-secondary:hover:not(:disabled) {
        background-color: #123A57 !important;
    }

    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .services-grid,
    .pillars-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: var(--text-2xl);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}
