:root {
    /* MDL color palette */
    --palette-teal: #93BFBB;
    --palette-sage: #B8BF7E;
    --palette-olive: #BCBF63;
    --palette-light: #D7D9A7;
    --palette-bg: #F2F2F2;
    --primary-black: #3d5654;
    --primary-red: #93BFBB;
    --primary-red-light: #B8BF7E;
    --light-gray: #F2F2F2;
    --medium-gray: #5a6c6b;
    --dark-gray: #2d3e40;
    --white: #ffffff;
    --gradient-red: linear-gradient(135deg, #93BFBB 0%, #BCBF63 100%);
    --gradient-gray: linear-gradient(135deg, #F2F2F2 0%, #D7D9A7 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(61, 86, 84, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--primary-black) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-gray);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(61, 86, 84, 0.5);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(147, 191, 187, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 191, 126, 0.12) 0%, transparent 50%);
}

.hero-placeholder-fallback {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gray);
}

.hero-placeholder-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
    padding: 1rem;
    text-align: center;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    color: var(--white);
}

.hero-section .hero-title .text-black {
    color: var(--white);
}

.hero-section .hero-title .text-red {
    color: var(--palette-light);
}

.text-red {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary-custom {
    background: var(--gradient-red);
    border: none;
    color: var(--white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-medium);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.hero-section .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--white);
}

.hero-section .btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-black);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    transform: rotate(45deg);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-gray);
}

.feature-item i {
    color: var(--primary-red);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.about-image .about-img {
    border-radius: 16px;
}

.about-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 320px;
    flex-direction: column;
    border-radius: 16px;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-heavy);
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: var(--gradient-red);
    color: var(--white);
}

.vision-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.vision-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Our Hiring Methodology – playful journey */
.methodology-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--palette-bg) 0%, var(--white) 50%, var(--palette-bg) 100%);
    overflow: hidden;
}

.methodology-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 160px;
}

.methodology-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.methodology-track__path {
    animation: methodology-dash 20s linear infinite;
}

@keyframes methodology-dash {
    to { stroke-dashoffset: -80; }
}

.methodology-step {
    position: relative;
    z-index: 1;
    flex: 0 0 calc(16.666% - 0.5rem);
    min-width: 140px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem 0.75rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(61, 86, 84, 0.12);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    perspective: 600px;
}

/* Playful slight tilts – each step has a tiny rotation */
.methodology-step--1 { transform: rotate(-1.5deg); }
.methodology-step--2 { transform: rotate(1deg); }
.methodology-step--3 { transform: rotate(-0.8deg); }
.methodology-step--4 { transform: rotate(1.2deg); }
.methodology-step--5 { transform: rotate(-1deg); }
.methodology-step--6 { transform: rotate(0.7deg); }

.methodology-step:hover {
    transform: translateY(-12px) scale(1.05) rotate(0deg) rotateY(5deg);
    box-shadow: 0 20px 48px rgba(61, 86, 84, 0.2);
}

.methodology-step:hover .methodology-step__icon {
    animation: methodology-icon-bounce 0.6s ease;
}

@keyframes methodology-icon-bounce {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.15); }
    70% { transform: scale(0.95); }
}

.methodology-step--alt {
    align-self: flex-end;
    margin-top: 2rem;
}

.methodology-step.wow {
    visibility: hidden;
}

.methodology-step.wow.animate__animated {
    visibility: visible;
}

.methodology-step__num {
    position: absolute;
    top: -10px;
    right: 14px;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: linear-gradient(135deg, var(--palette-teal), var(--palette-olive));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(147, 191, 187, 0.4);
}

.methodology-step__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.methodology-step__icon--teal {
    background: var(--palette-teal);
    box-shadow: 0 6px 16px rgba(147, 191, 187, 0.35);
}

.methodology-step__icon--sage {
    background: var(--palette-sage);
    box-shadow: 0 6px 16px rgba(184, 191, 126, 0.35);
}

.methodology-step__icon--olive {
    background: var(--palette-olive);
    box-shadow: 0 6px 16px rgba(188, 191, 99, 0.35);
}

.methodology-step__icon--light {
    background: var(--palette-light);
    color: var(--primary-black);
    box-shadow: 0 6px 16px rgba(215, 217, 167, 0.5);
}

.methodology-step__label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.25;
}

@media (max-width: 992px) {
    .methodology-track {
        display: none;
    }
    .methodology-flow {
        flex-direction: column;
        align-items: center;
        gap: 0;
        min-height: 0;
    }
    .methodology-step,
    .methodology-step--alt,
    .methodology-step--1,
    .methodology-step--2,
    .methodology-step--3,
    .methodology-step--4,
    .methodology-step--5,
    .methodology-step--6 {
        flex: 0 0 auto;
        max-width: 280px;
        width: 100%;
        align-self: center;
        margin-bottom: 0;
        margin-top: 1rem;
        transform: none !important;
    }
    .methodology-step:hover {
        transform: translateY(-8px) scale(1.02) !important;
    }
}

@media (max-width: 576px) {
    .methodology-step {
        min-width: 100%;
        max-width: 100%;
    }
    .methodology-step__icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 191, 187, 0.25);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Service Portfolio – hexagon icons */
.portfolio-section {
    padding: 5rem 0;
    background: var(--white);
}

.portfolio-title {
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    min-width: 140px;
    transition: transform 0.25s ease;
}

.portfolio-item.wow {
    visibility: hidden;
}

.portfolio-item.wow.animate__animated {
    visibility: visible;
}

.portfolio-item:hover {
    transform: translateY(-4px);
}

.portfolio-hex {
    width: 100px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.portfolio-hex--teal {
    background: var(--palette-teal);
}

.portfolio-hex--sage {
    background: var(--palette-sage);
}

.portfolio-hex--olive {
    background: var(--palette-olive);
}

.portfolio-hex--light {
    background: var(--palette-light);
    color: var(--primary-black);
}

.portfolio-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.3;
    max-width: 160px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        gap: 2rem 1rem;
    }
    .portfolio-item {
        min-width: 120px;
    }
    .portfolio-hex {
        width: 84px;
        height: 97px;
        font-size: 1.65rem;
    }
    .portfolio-label {
        font-size: 0.85rem;
        max-width: 130px;
    }
}

/* Verticals Section – Bento grid */
.verticals-section {
    padding: 6rem 0;
    background: var(--palette-bg);
}

.verticals-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
    grid-auto-flow: dense;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.vertical-tile {
    --tile-bg: var(--palette-light);
    background: var(--tile-bg);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-light);
}

.vertical-tile i {
    font-size: 1.75rem;
    opacity: 0.95;
}

.vertical-tile.wow {
    visibility: hidden;
}

.vertical-tile.wow.animate__animated {
    visibility: visible;
}

.vertical-tile:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

.vertical-tile--large {
    grid-column: span 1;
    grid-row: span 2;
    font-size: 1rem;
}

.vertical-tile--large i {
    font-size: 2.25rem;
}

.vertical-tile--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .verticals-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 90px;
    }
    .vertical-tile--wide {
        grid-column: span 1;
    }
    .vertical-tile--large {
        grid-row: span 1;
    }
    .vertical-tile {
        font-size: 0.8rem;
    }
    .vertical-tile i {
        font-size: 1.5rem;
    }
}

/* Strength Section – Timeline / connected nodes */
.strength-section {
    padding: 6rem 0;
    background: var(--primary-black);
    color: var(--white);
}

.strength-title {
    color: var(--white);
}

.strength-accent {
    color: var(--palette-light);
}

.strength-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.strength-timeline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.strength-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    transition: transform 0.25s ease;
}

.strength-node:hover {
    transform: translateY(-4px);
}

.strength-node__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--palette-teal) 0%, var(--palette-olive) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(147, 191, 187, 0.35);
}

.strength-node__label {
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
}

.strength-connector {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(215, 217, 167, 0.5), rgba(215, 217, 167, 0.2));
    flex-shrink: 0;
    margin: 0 0.25rem;
}

@media (max-width: 992px) {
    .strength-timeline {
        gap: 2rem 1rem;
    }
    .strength-connector {
        display: none;
    }
    .strength-node {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 576px) {
    .strength-timeline {
        gap: 1.75rem;
    }
    .strength-node {
        flex: 0 0 calc(50% - 0.5rem);
    }
    .strength-node__icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }
    .strength-node__label {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(147, 191, 187, 0.25);
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(147, 191, 187, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 250px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-section,
    .services-section,
    .methodology-section,
    .portfolio-section,
    .verticals-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .vision-section,
    .strength-section {
        padding: 4rem 0;
    }
}