/* Global Styles */
:root {
    /* New Premium Color Palette */
    --primary-color: #0f172a;      /* Dark Navy Blue */
    --secondary-color: #1e293b;    /* Slightly lighter navy */
    --accent-color: #3b82f6;       /* Vibrant blue for CTAs */
    --accent-hover: #2563eb;       /* Hover state for CTAs */
    --light-bg: #f8fafc;          /* Off-white background */
    --text-color: #1e293b;         /* Dark blue-gray for text */
    --text-light: #64748b;         /* Lighter blue-gray for secondary text */
    --white: #ffffff;
    --off-white: #f8fafc;         /* Slightly off-white for backgrounds */
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;         /* Consistent border radius */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-hover);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn:hover::before {
    transform: translateX(0);
}

.section-padding {
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle .bar {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar:not(.scrolled) .menu-toggle .bar {
    background-color: white;
}

/* Force dark color for X icon when menu active */
.menu-toggle.active .bar {
    background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9rem 0;
    background: transparent;
    z-index: 1000;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease, 
                transform 0.3s ease;
}

.navbar.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 20px;
        width: 250px;
        height: auto;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-hover);
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        margin: 5px 0;
    }

    .nav-links a {
        padding: 8px 0;
        font-size: 1rem;
        color: var(--primary-color) !important;
        display: block;
    }

    .nav-links a:after {
        display: none;
    }

    .navbar .container {
        justify-content: space-between;
        padding: 0 20px;
    }

    .logo img {
        height: 45px;
    }

    /* Adjust header height on mobile */
    .navbar {
        padding: 0.7rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    /* Mobile hidden state for navbar */
    .navbar.hidden .container > *:not(.menu-toggle) {
        display: none;
    }

    .navbar.hidden .menu-toggle {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
        z-index: 1001;
        background: var(--white);
        padding: 8px;
        border-radius: 50%;
        box-shadow: var(--shadow);
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.3s ease;
    }

    body.header-hidden .navbar.hidden .menu-toggle {
        opacity: 1;
    }

    /* Hide floating menu when at top */
    body:not(.header-hidden) .navbar .menu-toggle {
        display: flex; /* Show in header at top */
    }

    /* For tablet optimization */
    @media (min-width: 768px) and (max-width: 992px) {
        .container {
            width: 95%;
            max-width: 960px;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .board-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-container {
            flex-direction: row;
        }

        .form-iframe {
            height: 600px;
        }

        .founder-card {
            flex-direction: row;
            text-align: left;
        }

        .leader-image {
            margin-right: 2rem;
            margin-bottom: 0;
        }
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .nav-links {
        width: calc(100% - 40px);
        right: 20px;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
}

/* White text when navbar is transparent (over hero) */
.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

/* Hover effects */
.navbar.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

.navbar:not(.scrolled) .nav-links a:hover {
    opacity: 0.8;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Sidebar Nav for Desktop */
.sidebar-nav {
    display: none;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 40px;
    transition: width 0.3s ease;
    background: transparent;
    mix-blend-mode: difference;
}

@media (min-width: 993px) {
    body.header-hidden .sidebar-nav {
        display: block;
    }
}

.sidebar-nav:hover {
    width: 160px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 5px 0;
    text-align: right;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--accent-color);
}

.sidebar-nav .dash {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.sidebar-nav .label {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-right: 10px;
}

.sidebar-nav:hover .label {
    opacity: 1;
    width: 120px;
}

.sidebar-nav:hover .dash {
    opacity: 0;
}

.sidebar-nav a.active .dash {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 11, 24, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    z-index: 0;
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin: 0 0 1.5rem;
    color: white;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-fill-mode: both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
        padding: 0 1.5rem;
    }
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    animation-fill-mode: both;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    animation-fill-mode: both;
    transform: translateY(20px);
    opacity: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-hover);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    transform: translateX(0);
}

/* About Section */
.about {
    background: var(--light-bg);
    padding: 5rem 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.stat-item {
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 350px;
}

.service-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-10px);
}

.service-card.highlight h3,
.service-card.highlight .card-icon,
.service-card.highlight li {
    color: white;
}

.service-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.service-card.highlight h3::after {
    background: white;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card.highlight li::before {
    color: white;
}

/* Leadership Section */
.leadership {
    padding: 5rem 0;
    background: var(--light-bg);
    text-align: center;
}

.leadership h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.founder-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    text-align: left;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.founder-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.leader-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.leader-info .title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.board-member {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.board-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.board-member:nth-child(1) { transition-delay: 0.2s; }
.board-member:nth-child(2) { transition-delay: 0.4s; }
.board-member:nth-child(3) { transition-delay: 0.6s; }

.board-member .leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.board-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.board-member .title {
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-content p {
    margin: 0;
    color: var(--text-color);
}

.form-container {
    flex: 2;
    min-width: 300px;
}

.form-box {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    height: 100%;
}

.form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.form-iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 500px;
        width: 100%;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .leader-image {
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: 20px;
        width: 250px;
        height: auto;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .form-iframe {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-image {
        width: 150px;
        height: 150px;
    }
    
    .form-box {
        padding: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Add delay classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }