:root {
    --primary: #0A4D68;
    --secondary: #088395;
    --accent: #F97316;
    --dark: #05161A;
    --light: #F8FAFC;
    --gray: #64748B;
    --success: #10B981;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.logo-accent {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 0;
    padding: 3.5rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A4D68 0%, #088395 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(8, 131, 149, 0.2) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-text .highlight {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease 0.6s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Syne', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 6rem 3rem 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 6rem 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services-overview,
.services-detail {
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Services Page Grid ─────────────────────────────────── */
.svc-grid-section {
    max-width: 1400px;
    margin: 0 auto;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svc-card {
    background: white;
    border-radius: 16px;
    padding: 2.4rem 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f2f5;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.4rem;
    flex-shrink: 0;
}

.svc-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.svc-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    flex: 1;
}

.svc-list li {
    color: var(--gray);
    font-size: 0.88rem;
    padding: 0.38rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.svc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid #f0f2f5;
    padding-top: 1.2rem;
    margin-top: auto;
}

.svc-tags span {
    background: #f1f5f9;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* ── Engagement Models ──────────────────────────────────── */
.engagement-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin: 0 auto;
}

.engagement-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f2f5;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.engagement-card--featured {
    border-color: var(--secondary);
    box-shadow: 0 6px 28px rgba(37, 99, 235, 0.13);
}

.eng-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.eng-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.2rem;
}

.engagement-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.engagement-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.eng-ideal {
    font-size: 0.8rem !important;
    color: var(--secondary) !important;
    font-style: italic;
    margin-top: 0.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Service Detail Pages */
.service-detail-item {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.service-detail-item.reverse {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    padding: 4rem 3rem;
    margin-left: -3rem;
    margin-right: -3rem;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.service-intro {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-box {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.feature-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

.tech-stack {
    margin-top: 2.5rem;
}

.tech-stack h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badges span {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Process Timeline */
.process-section {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(8, 131, 149, 0.1);
    font-family: 'Syne', sans-serif;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.why-text p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.large-stat {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.large-stat-number {
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.large-stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.large-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mini-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mini-stat i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.mini-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Syne', sans-serif;
}

.mini-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

/* ========== Photo Carousel ========== */
.photo-carousel-section {
    padding: 5rem 2rem;
    background: #f6f9fc;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.carousel-slide.active img {
    transform: scale(1.04);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 3rem;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.82) 0%, transparent 100%);
    color: #fff;
}

.caption-tag {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.carousel-caption p {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    max-width: 560px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.24);
}

.carousel-prev { left: 1.2rem; }
.carousel-next { right: 1.2rem; }

.carousel-dots {
    position: absolute;
    bottom: 1.2rem;
    right: 1.8rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Clients Section */
.clients-section {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.client-logo {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover .logo-placeholder {
    opacity: 1;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    display: block;
}

.logo-placeholder span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-stat {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.client-stat i {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.client-stat h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.client-stat p {
    color: var(--gray);
}

/* ─── Case Studies Page ─────────────────────────────────────────────────── */

/* Impact Overview Bar */
.impact-overview {
    background: var(--dark);
    padding: 3rem;
}
.impact-overview-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.impact-stat {
    text-align: center;
    padding: 1.5rem 3.5rem;
    flex: 1;
    min-width: 150px;
}
.impact-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.impact-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.impact-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* Industry Coverage */
.industry-coverage {
    padding: 5rem 3rem;
    background: #f8fafc;
}
.industry-coverage .section-header {
    margin-bottom: 2.5rem;
}
.industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.industry-pill {
    background: white;
    border: 1.5px solid #e5e7eb;
    color: var(--secondary);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.industry-pill:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.industry-pill i {
    font-size: 0.9rem;
    color: var(--accent);
}
.industry-pill:hover i {
    color: white;
}

/* Case Studies Section */
.casestudies-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.casestudy-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}
.casestudy-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}

/* Accent colour bars per industry */
.cs-accent-bar {
    height: 6px;
    width: 100%;
}
.cs-fintech   { background: linear-gradient(90deg, #0f4c81, #1e88e5); }
.cs-retail    { background: linear-gradient(90deg, #e65100, #ff8f00); }
.cs-health    { background: linear-gradient(90deg, #1b5e20, #43a047); }
.cs-logistics { background: linear-gradient(90deg, #4a148c, #7b1fa2); }

.cs-body {
    padding: 3rem;
}

/* Tags row */
.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}
.cs-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray);
    background: #f4f6f8;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.cs-tag-industry {
    background: #e8f0fe;
    color: var(--secondary);
}

/* Case study heading */
.cs-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 0.7rem;
}
.cs-client {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cs-client i {
    color: var(--accent);
}

/* KPI Impact bar */
.cs-impact-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}
.cs-impact-item {
    padding: 1.8rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.cs-impact-item:last-child {
    border-right: none;
}
.cs-impact-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.cs-impact-lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* Section headings inside case study */
.cs-section {
    margin-bottom: 2rem;
}
.cs-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}
.cs-section p {
    color: var(--gray);
    line-height: 1.85;
    font-size: 1rem;
}
.cs-outcomes {
    list-style: none;
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.cs-outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.6;
}
.cs-outcomes li i {
    color: #22c55e;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Quote block */
.cs-quote {
    position: relative;
    background: #f8fafc;
    border-left: 4px solid var(--accent);
    border-radius: 0 10px 10px 0;
    padding: 1.8rem 2rem;
    margin: 2rem 0;
}
.cs-quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.cs-quote p {
    color: var(--dark);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}
.cs-quote-attr {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* Technology row */
.cs-tech-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
}
.cs-tech-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    margin-right: 0.3rem;
}
.cs-tech-badge {
    background: #f1f5f9;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* Projects (legacy - keep for reference) */
.projects-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.project-detail {
    margin-bottom: 5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.project-header {
    padding: 3rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tag {
    background: white;
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.project-client {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.project-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.project-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.project-section h3 i {
    color: var(--accent);
}

.project-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.solution-features {
    list-style: none;
    margin-top: 1.5rem;
}

.solution-features li {
    padding: 0.8rem 0;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-features li i {
    color: var(--success);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.tech-stack-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tech-category {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tech-category h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.tech-category p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-card.highlighted {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.metric-card.highlighted .metric-number,
.metric-card.highlighted .metric-label {
    color: white;
}

.metric-card.highlighted i {
    color: var(--accent);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metric-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* About Page */
.company-story {
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.story-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-large {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.stat-large .stat-number {
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-large .stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Mission Vision */
.mission-vision {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    max-width: 1400px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.mv-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values */
.values-section {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Global Offices */
.global-presence {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.office-flag {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.office-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.office-location {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-details {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 2;
}

.office-details i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* Certifications */
.certifications-section {
    max-width: 1400px;
    margin: 0 auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cert-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Leadership */
.leadership-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.leader-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.leader-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-info-main>p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.method-details p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.social-media-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-link-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: var(--accent);
}

.social-link-large i {
    font-size: 1.5rem;
}

.contact-form-main {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-main h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.form-description {
    color: var(--gray);
    margin-bottom: 1rem;
}

.form-required-note {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    background: #fafcff;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit-full {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.form-success {
    display: none;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.form-success.visible {
    display: block;
}

.form-success i {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 0.75rem;
    display: block;
}

.form-success h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.form-success p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Global Offices Contact */
.global-offices-contact {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.offices-grid-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.office-card-contact:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.office-card-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.office-address {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.office-contact-details {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.office-contact-details p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.office-contact-details i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* FAQ */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    color: var(--accent);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ── Contact Quick Bar ─────────────────────────────────── */
.contact-quickbar {
    background: var(--dark);
    padding: 0;
}

.quick-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.quick-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 2rem;
    transition: background 0.3s ease;
}

.quick-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.quick-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.quick-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.quick-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.quick-value {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.quick-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 0.8rem 0;
}

/* ── Method note ───────────────────────────────────────── */
.method-note {
    font-size: 0.82rem !important;
    color: var(--secondary) !important;
    font-style: italic;
    margin-top: 0.3rem;
}

/* ── Google Maps Section ───────────────────────────────── */
.map-section {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.95) contrast(1.02);
}

.map-overlay-card {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    background: white;
    padding: 2.2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    min-width: 300px;
    max-width: 340px;
    z-index: 10;
}

.map-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #f97316);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.2rem;
}

.map-overlay-card h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.map-overlay-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.map-directions-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
}

/* ── 2-column offices ──────────────────────────────────── */
.offices-grid-two {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* ── 1-column office (India only) ──────────────────────── */
.offices-grid-one {
    grid-template-columns: 1fr !important;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.office-cin {
    font-size: 0.78rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

.office-note {
    font-size: 0.8rem !important;
    color: var(--secondary) !important;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-content .cta-buttons {
    justify-content: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: var(--accent);
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .why-content,
    .story-content,
    .contact-grid-main {
        grid-template-columns: 1fr;
    }

    .project-content-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ── 900px ── */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-content .footer-section:first-child {
        grid-column: 1 / -1;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .photo-carousel-section .section-header {
        margin-bottom: 2rem;
    }
}

/* ── 768px ── */
@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Typography */
    .logo-img { height: 32px; }

    .hero-text h1   { font-size: 2.5rem; }
    .hero-text p    { font-size: 1.05rem; }
    .page-header h1 { font-size: 2.2rem; }
    .section-title  { font-size: 1.8rem; }
    .stat-number    { font-size: 2.2rem; }

    /* Page header */
    .page-header {
        padding: 4.5rem 1.5rem 3rem;
    }

    /* Sections */
    section {
        padding: 4rem 1.5rem;
    }

    .nav-container,
    .hero-content,
    .page-header-content {
        padding: 0 1.5rem;
    }

    /* Hero stats: 2×2 compact */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    /* Grids → 1 column */
    .services-grid,
    .values-grid,
    .certifications-grid,
    .footer-content,
    .form-row,
    .faq-grid,
    .why-features,
    .stats-grid,
    .offices-grid-two,
    .svc-grid,
    .engagement-grid,
    .story-stats {
        grid-template-columns: 1fr;
    }

    /* Why section */
    .why-content {
        grid-template-columns: 1fr;
    }

    .large-stat-number {
        font-size: 3.5rem;
    }

    .large-stat-label {
        font-size: 1.2rem;
    }

    /* Carousel */
    .carousel-slide  { aspect-ratio: 4 / 3; }
    .carousel-caption { padding: 1.5rem; }
    .carousel-caption p { font-size: 0.9rem; }
    .carousel-btn    { width: 38px; height: 38px; font-size: 0.85rem; }

    /* Quick contact bar */
    .contact-quickbar .quick-bar-inner {
        flex-direction: column;
    }

    .quick-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .quick-item {
        padding: 1.2rem 1.5rem;
    }

    /* Contact info column */
    .contact-info-main h2 {
        font-size: 1.8rem;
    }

    .contact-form-main {
        padding: 2rem 1.5rem;
    }

    .contact-form-main h3 {
        font-size: 1.6rem;
    }

    .contact-method {
        padding: 1.2rem;
        gap: 1rem;
    }

    .contact-method:hover {
        transform: none;
    }

    .method-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .faq-item {
        padding: 1.8rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }

    .social-links-large {
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* Map */
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .map-container {
        height: 300px;
    }

    .map-overlay-card {
        position: static;
        transform: none;
        max-width: 100%;
        min-width: unset;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

    /* CTA */
    .cta-section {
        padding: 3.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1.5rem 2rem;
    }

    /* Services page */
    .service-detail-item.reverse {
        padding: 3rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    /* Case studies */
    .cs-impact-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-title {
        font-size: 1.4rem;
    }

    .impact-divider {
        display: none;
    }

    .impact-stat {
        padding: 1.5rem;
    }

    .casestudies-section {
        padding: 3rem 1.5rem;
    }

    .cs-body {
        padding: 2rem 1.5rem;
    }

    /* FAQ */
    .faq-item summary {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    /* Process */
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {
    /* Typography */
    .hero-text h1   { font-size: 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .section-title  { font-size: 1.5rem; }
    .stat-number    { font-size: 1.8rem; }

    .large-stat-number  { font-size: 2.8rem; }
    .large-stat         { padding: 2rem 1.5rem; }

    .cta-content h2 { font-size: 1.7rem; }

    /* Buttons: stack vertically */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Hero stats: keep 2 cols but tighter */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
    }

    /* Process: single col */
    .process-timeline {
        grid-template-columns: 1fr;
    }

    /* Footer: full single col */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    footer {
        padding: 2.5rem 1.2rem 1.5rem;
    }

    /* Sections */
    section {
        padding: 3rem 1.2rem;
    }

    .page-header {
        padding: 4rem 1.2rem 2.5rem;
    }

    /* Cards padding */
    .service-card,
    .svc-card,
    .value-card,
    .process-step {
        padding: 1.8rem;
    }

    /* Carousel */
    .carousel-slide   { aspect-ratio: 1 / 1; }
    .carousel-caption { padding: 1rem 1.2rem; }
    .caption-tag      { display: none; }
    .carousel-caption p { font-size: 0.82rem; }

    /* Contact quickbar */
    .quick-value { font-size: 0.82rem; }
    .quick-item  { padding: 1rem 1.2rem; gap: 0.8rem; }
    .quick-icon  { width: 36px; height: 36px; font-size: 0.95rem; }

    /* Contact info & form */
    .contact-info-main h2  { font-size: 1.5rem; }
    .contact-form-main     { padding: 1.5rem 1.2rem; }
    .contact-form-main h3  { font-size: 1.4rem; }
    .faq-item              { padding: 1.4rem; }
    .faq-item h3           { font-size: 1rem; }
    .office-card-contact   { padding: 1.8rem; }

    /* Map overlay */
    .map-overlay-card {
        padding: 1.5rem;
    }
}