/* CSS Reset & Variables */
:root {
    /* Brand Colors */
    --color-primary: #4E5C96;
    /* Brand Blue */
    --color-secondary: #2F3B65;
    /* Darker Blue */
    --color-accent: #86B96F;
    /* Brand Green (Replacing Orange) */
    --color-accent-hover: #6ea058;
    /* Darker Green for hover */

    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-light-gray: #f4f6f8;
    --color-white: #ffffff;
    --color-success: #28a745;

    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-light-gray);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base size */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    /* Improved readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Crisp text */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #6ea058 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(134, 185, 111, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6ea058 0%, var(--color-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(134, 185, 111, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    /* More transparency */
    backdrop-filter: blur(20px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    /* More spacing */
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(78, 92, 150, 0.3);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 92, 150, 0.4);
}

#back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 45px;
    /* Adjust based on logo aspect ratio */
    /* Ensure logo sits on white well */
}

/* Logo Styles */
.logo svg {
    height: 50px;
    width: auto;
    cursor: pointer;
}

/* SVG Line Drawing Animation */
.svganimate path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s ease-out forwards;
}

.svganimate .path-1 {
    stroke-dashoffset: 313;
    animation-delay: 0s;
}

.svganimate .path-2 {
    stroke-dashoffset: 355;
    animation-delay: 0.5s;
}

.svganimate .path-3 {
    stroke-dashoffset: 282;
    animation-delay: 1s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hover effect for the whole SVG */
.logo svg:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links .btn-contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-links .btn-contact:hover {
    background-color: #004494;
    color: white;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.4rem;
    padding: 2px 4px;
    transition: var(--transition);
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--color-primary);
}



.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: crossFade 25s infinite;
}

/* Stagger animations for 5 slides */
.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

.slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes crossFade {
    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    24% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 92, 150, 0.9) 0%, rgba(134, 185, 111, 0.8) 100%);
    /* Brand gradient overlay */
    z-index: 2;
    mix-blend-mode: multiply;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Text slightly wider */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
    /* Above slider and overlay */
}

.hero-text {
    background: rgba(0, 0, 0, 0.35);
    padding: 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-white);
    /* White text on dark/colored overlay */
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    /* Lighter white */
    margin-bottom: 48px;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Adjust secondary button for dark background */
.hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-actions .btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
    border-color: white;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
}

/* Services Slider Bar */
.services-slider {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 25px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.slider-track {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    min-width: max-content;
    justify-content: center;
}

.slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    min-width: 130px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.slider-item span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .slider-track {
        justify-content: flex-start;
    }
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* Why Choose Us */
.why-us {
    background-color: var(--color-light-gray);
}

.feature-card {
    border-top: none;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(78, 92, 150, 0.3);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-text);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
}

.highlight-card h3 {
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.highlight-card p,
.highlight-card li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.simple-list {
    list-style: none;
    margin-top: 15px;
}

.simple-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-list li:last-child {
    border: none;
}

/* Services */
.services {
    background-color: var(--color-light-gray);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-cards {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-body {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 700;
}

.card-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* About / Partnership */
.about {
    background-color: var(--color-light-gray);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: var(--color-text);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Animated Logo Watermark in Footer */
.footer-logo-watermark {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 400px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.footer-logo-watermark svg {
    width: 100%;
    height: auto;
}

/* Logo animation - paused by default */
.logo-animate path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.logo-animate.animate path {
    animation: drawLogo 2s ease-out forwards;
}

.logo-animate.animate .path-1 {
    animation-delay: 0s;
}

.logo-animate.animate .path-2 {
    animation-delay: 0.5s;
}

.logo-animate.animate .path-3 {
    animation-delay: 1s;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

.footer .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    /* Since logo is for white header, it should work on light gray footer too. */
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer-col p,
.footer-col a {
    color: var(--color-text-light);
    margin-bottom: 10px;
    display: block;
}

.social-link {
    font-weight: 600;
    color: #0077b5;
    /* LinkedIn Color */
}

/* Honeypot - hidden from humans */
.honeypot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
}

/* Industries We Serve */
.industries {
    background-color: var(--color-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: var(--color-light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}

.industry-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.industry-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
}

.industry-item span {
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form button {
    align-self: flex-start;
}

/* Workflow Section */
.workflow {
    background-color: var(--color-white);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 20px;
}

/* Connector Line (Desktop) */
@media (min-width: 900px) {
    .step::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #e0e0e0;
        z-index: 1;
    }

    .step:last-child::after {
        display: none;
    }
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 700;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2F3B65 0%, #4E5C96 100%);
    color: white;
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-content,
    .two-col,
    .footer .container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        display: flex;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

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