* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #0a0a1f;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7BF0BB;
}

.btn-book {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book:hover {
    background: #5ee0a5;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #0a0a1f;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Images/Pattern.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    animation: fadeIn 1s ease-in-out;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.btn-primary {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    background: #5ee0a5;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #7BF0BB;
    color: #7BF0BB;
}

.arrow {
    font-size: 20px;
}

/* Methodology Section */
.methodology {
    background: #ffffff;
    color: #0a0a1f;
    padding: 100px 0;
}

.methodology-header {
    margin-bottom: 60px;
}

.methodology-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin: 0;
}

.methodology-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.methodology-tagline {
    text-align: left;
    margin-left: auto;
    flex-shrink: 0;
}

.methodology-tagline p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    color: #3C3C3C;
    margin-bottom: 4px;
}

.methodology-tagline p:last-child {
    font-weight: 500;
    font-style: normal;
    margin-bottom: 0;
}

.methodology-tagline .highlight {
    color: #7BF0BB;
    font-weight: 700;
    font-style: italic;
}

.methodology-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    flex: 1;
}

.card-divider {
    width: 2px;
    background: #E0E6EF;
    height: 64px;
    align-self: center;
}

.card {
    background: transparent;
    flex: 1;
    text-align: left;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.row-break {
    display: none;
}

.card-icon {
    margin-bottom: 12px;
}

.method-icon {
    width: 29.33px;
    height: 26.45px;
    object-fit: contain;
    opacity: 1;
}

.card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    color: #161922;
    width: 88px;
    height: 20px;
    opacity: 1;
}

.card p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
    color: #647287;
}

/* Services Section */
.services {
    background: #F7F7F7;
    color: #0a0a1f;
    padding: 60px 0 100px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #666;
    margin-bottom: 16px;
}

.services-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 32px 0;
}

.tab-btn {
    font-family: 'Switzer', sans-serif;
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #0a0a1f;
}

.tab-btn.active {
    color: #0a0a1f;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #0a0a1f;
}

/* Enterprise Section */
.enterprise {
    background: #ffffff;
    color: #0a0a1f;
    padding: 100px 0;
}

.enterprise-label {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    color: #7BF0BB;
    margin-bottom: 16px;
}

.enterprise-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: left;
    margin-bottom: 16px;
}

.enterprise-subtitle {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0;
    text-align: left;
    color: #666;
    margin-bottom: 60px;
}

.enterprise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.enterprise-card {
    background: #f8f8f8;
    padding: 32px 24px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.enterprise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.enterprise-logo {
    margin-bottom: 24px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.enterprise-icon {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

.enterprise-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.enterprise-card p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0;
    color: #454F5E;
}

/* Core Capabilities Section */
.core-capabilities {
    background: #010027;
    color: #ffffff;
    padding: 100px 0;
}

.capabilities-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: left;
    margin-bottom: 60px;
}

.highlight-green {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #7BF0BB;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.capability-card {
    background: #F7F7F7;
    padding: 24px;
    border-radius: 0;
    border: 2px solid transparent;
    transition: all 0.3s;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.capability-card:hover {
    background: #F7F7F7;
    border-color: rgba(0, 255, 136, 0.3);
}

.capability-icon {
    margin-bottom: 24px;
    position: relative;
}

.capability-icon-img {
    width: 21.88px;
    height: 21.88px;
    object-fit: contain;
    position: relative;
    top: 3.06px;
    left: 3.06px;
}

.capability-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
    color: #161922;
}

.capability-card p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    color: #454F5E;
}

.capability-cta {
    background: #7BF0BB;
    color: #0a0a1f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
    border: 1px solid #7BF0BB;
}

.capability-cta:hover {
    background: #7BF0BB;
    border-color: #7BF0BB;
}

.capability-cta h3 {
    color: #0a0a1f;
    font-size: 24px;
}

.btn-book-dark {
    background: #0A0D14;
    color: #ffffff;
    border: none;
    width: 130px;
    height: 38px;
    padding: 12px;
    gap: 10px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-dark:hover {
    background: #1a1a2f;
}

/* Case Studies Section */
.case-studies {
    background: #ffffff;
    color: #0a0a1f;
    padding: 100px 0;
    text-align: center;
}

.case-studies-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 8px;
}

.case-studies-subtitle {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.case-study-card {
    background: #ffffff;
    text-align: left;
    transition: transform 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-dot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #ff6b6b;
    border-radius: 50%;
}

.case-study-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 12px;
}

.case-study-card p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #647287;
}

.btn-explore {
    background: #0a0a1f;
    color: #ffffff;
    border: none;
    width: 161px;
    height: 38px;
    padding: 12px;
    gap: 10px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-explore:hover {
    background: #1a1a2f;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}

/* Tech Stack Section */
.tech-stack {
    background: #ffffff;
    color: #0a0a1f;
    padding: 80px 0 100px;
    border-top: 1px solid #E0E0E0;
}

.tech-stack-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 60px;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    align-items: center;
}

.tech-item {
    width: 115px;
    height: 101.49px;
    background: #F7F7F7;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 10px;
    transition: all 0.3s;
}

.tech-item:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.tech-icon {
    max-width: 60px;
    max-height: 50px;
    object-fit: contain;
}

.tech-item p {
    font-size: 12px;
    color: #0a0a1f;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* Impact Section */
.impact {
    background: #F7F7F7;
    color: #0a0a1f;
    padding: 100px 0;
}

.impact-label {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #666;
    margin-bottom: 16px;
}

.impact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 60px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.stat-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: left;
}

.stat-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
    color: #0a0a1f;
    text-align: left;
}

.stat-card p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0;
    color: #454F5E;
}

.trusted-section {
    text-align: center;
}

.trusted-label {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #0A0D14;
    margin-bottom: 32px;
}

.trusted-logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trusted-logos-track {
    display: flex;
    gap: 48px;
    animation: scroll 20s linear infinite;
}

.trusted-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 120px;
}

.trusted-logo-img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

/* Google Cloud Partner Section */
.google-partner {
    background: #ffffff;
    padding: 120px 0;
}

.google-partner-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.google-partner-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #0a0a1f;
    margin: 0 0 32px 0;
}

.google-logo {
    max-width: 280px;
    height: auto;
}

.google-partner-text {
    flex: 0 0 495px;
    padding-top: 8px;
    text-align: left;
    margin-left: auto;
}

.google-partner-text p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0;
    color: #3C3C3C;
    margin: 0 0 24px 0;
    opacity: 1;
    text-align: left;
}

.google-partner-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    color: #0a0a1f;
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.4s ease-out 0.15s both;
}

.btn-book-meeting {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-meeting:hover {
    background: #5ee0a5;
}

.btn-view-projects {
    background: transparent;
    color: #0a0a1f;
    border: 1px solid #0a0a1f;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-view-projects:hover {
    background: #0a0a1f;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #010027;
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copyright a {
    color: #F8FAFC;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon-img {
    width: 24px;
    height: 23.85px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7BF0BB;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #7BF0BB;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #0a0a1f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-book {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .methodology-header {
        flex-direction: column;
        gap: 24px;
    }

    .methodology-header h2 {
        font-size: 32px;
    }

    .methodology-tagline {
        text-align: left;
    }

    .methodology-tagline p {
        font-size: 14px;
    }

    .methodology-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card-divider {
        display: none;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .services-title {
        font-size: 36px;
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
    }

    .enterprise-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .enterprise-title {
        font-size: 36px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-title {
        font-size: 36px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-studies-title {
        font-size: 36px;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-stack-title {
        font-size: 32px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .impact-title {
        font-size: 36px;
    }

    .trusted-logos {
        gap: 32px;
    }

    .cta-title {
        font-size: 42px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .google-partner-content {
        flex-direction: column;
        gap: 40px;
    }

    .google-partner-left {
        align-items: flex-start;
    }

    .partner-heading {
        font-size: 28px;
    }

    .google-logo {
        max-width: 200px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }

    .methodology-header h2,
    .services-title {
        font-size: 32px;
    }

    .card h3 {
        font-size: 20px;
    }

    .enterprise-cards {
        grid-template-columns: 1fr;
    }

    .enterprise-title,
    .capabilities-title {
        font-size: 28px;
    }

    .case-studies-title,
    .tech-stack-title {
        font-size: 28px;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .impact-title,
    .cta-title {
        font-size: 32px;
    }

    .stat-card h3 {
        font-size: 42px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
