:root {
    /* Futuristic Premium Light Theme */
    --primary: #FF9F43;
    /* Vibrant Orange */
    --primary-gradient: linear-gradient(135deg, #FF9F43 0%, #ee5253 100%);
    --secondary: #54a0ff;
    /* Electric Blue Accent */

    --background: #fdfdfd;
    --bg-mesh: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    --bg-mesh-light:
        radial-gradient(at 40% 20%, rgba(255, 159, 67, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(84, 160, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(238, 82, 83, 0.1) 0px, transparent 50%);

    --text-main: #2d3436;
    --text-muted: #636e72;

    --glass-surface: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 60px rgba(255, 159, 67, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 159, 67, 0.4);

    --radius-small: 20px;
    --radius-large: 40px;

    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    --font-heading: 'outfit', sans-serif;
    /* Geometric Modern */
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f8faff;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 40% 20%, rgba(255, 159, 67, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(84, 160, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(238, 82, 83, 0.1) 0px, transparent 50%);
    background-size: 140% 140%;
    z-index: -1;
    animation: meshLoop 15s ease-in-out infinite alternate;
}

@keyframes meshLoop {
    0% {
        background-position: 0% 0%;
        transform: scale(1);
    }

    100% {
        background-position: 100% 100%;
        transform: scale(1.1);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
}

/* Glass Buttons */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 20px rgba(238, 82, 83, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(238, 82, 83, 0.5);
}

/* Navigation - Floating Glass */
#main-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
    transform: scale(1.1);
}

#main-nav.scrolled {
    width: 95%;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.95);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-main);
}

/* Hero styles centralized below */

/* Card Styles - Neo-Glass */
.service-card,
.team-member,
.project-card,
.testimonial-card {
    background: var(--glass-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-small);
    padding: 40px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.service-card:hover,
.team-member:hover,
.project-card:hover,
.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
    border-color: rgba(255, 159, 67, 0.3);
}

/* Icons styling */
.icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Section Padding */
.section-padding {
    padding: 120px 0;
}


/* ... Old styles removed ... */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--primary);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 50px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Old Navigation Removed */

/* Old btn-primary removed */

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 14px 35px;
    border-radius: var(--radius-large);
    font-weight: 700;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

.btn-join {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-large);
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: #fff;
}

/* Navbar Container Alignment */
#main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    text-shadow: none;
}

.hero p {
    font-size: 1.35rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-btns .btn-secondary {
    color: #fff;
    border-color: #fff;
}

.hero-btns .btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 4px;
    animation: scroll 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Services */
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.service-card {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: var(--radius-large);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    background: #ffffff;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--glass);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-card p {
    color: var(--text-muted);
}

/* About Section */
.bg-dark {
    /* Transparent with glass contour */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Rounded corners & spacing */
    border-radius: 50px;
    margin: 40px auto;
    max-width: 1400px;
    /* Limit width slightly to show contour space */
    width: 95%;
}

/* Subtitle wrapper for flex alignment */
.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0;
    /* Remove bottom margin as wrapper handles gap */
    flex: 1;
    /* Take remaining space */
}

.text-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.text-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Side About Image */
.about-img-side {
    width: 250px;
    height: 350px;
    /* Portrait orientation as per original file dimensions */
    object-fit: cover;
    border-radius: var(--radius-small);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    /* Prevent shrinking */
}

@media (max-width: 768px) {
    .text-block {
        flex-direction: column;
    }

    .about-img-side {
        width: 100%;
        height: auto;
        max-height: 300px;
        order: -1;
        /* Show image above text on mobile */
    }
}

/* Old .about-img class removed */

.mission-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-large);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
}

.mission-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-highlight {
    margin: 30px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-size: 0.9rem;
}

.mission-slogan {
    font-style: italic;
    font-weight: 600;
}

.certificates {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
}

.cert-badge i {
    font-size: 2rem;
    color: var(--primary);
}

/* Team Section */
/* Team Section - Redesigned for Text Only */
.team-member {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 159, 67, 0.3);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 700;
}

.role {
    font-size: 0.95rem;
    background: rgba(255, 159, 67, 0.1);
    color: #e58e26;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.join-us-card {
    background: var(--bg-light);
    border: 2px dashed var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.join-us-card .icon-box {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    background: transparent;
    box-shadow: none;
}

/* Projects / References */
.project-card {
    background: var(--bg-card);
    border-radius: var(--radius-large);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-img-container {
    width: 100%;
    height: 300px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-overlay i {
    transform: scale(1);
}

.project-card h4 {
    padding: 25px;
    text-align: center;
    font-size: 1.1rem;
    border-top: 1px solid var(--glass-border);
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: var(--radius-large);
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
    font-family: serif;
}

.quote-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-info {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.client-info h5 {
    font-weight: 700;
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}


/* Contact */
.contact-box {
    background: var(--bg-card);
    border-radius: var(--radius-large);
    display: flex;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract decoration */
.contact-info::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

.contact-form {
    flex: 1;
    padding: 60px;
    background: rgba(255, 255, 255, 0.95);
}

.info-items {
    margin-top: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 30px;
}

.info-item.align-start {
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 25px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.w-100 {
    width: 100%;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    background: #ffffff;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-5px);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    #main-nav {
        width: 95%;
        /* Prevent overflowing */
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: 3.2rem;
        color: #ffffff;
        text-shadow: none;
        margin-top: 20px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .flex-center {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .contact-box {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        padding: 40px;
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        /* Adjusted for smaller nav */
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: center;
        gap: 25px;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        color: #2d3436;
        font-size: 1.5rem;
        background: transparent;
        width: 40px;
        /* Smaller touch target */
        height: 40px;
        border-radius: 5px;
        box-shadow: none;
        /* Removed shadow on button */
        cursor: pointer;
        position: relative;
    }

    .contact-info::after {
        display: none;
    }

    /* Force grids to be more responsive */
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    #main-nav {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 0.98);
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 25px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-box,
    .bg-dark {
        padding: 30px 20px !important;
        width: 100% !important;
        margin: 20px 0 !important;
        border-radius: 20px;
    }

    /* Make grids single column on mobile */
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .about-img-side {
        width: 100%;
        height: 250px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}