/* ===== CSS Variables & Reset ===== */
:root {
    /* Brand Colors - Navy Blue & Orange from Logo */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent-color: #ea580c;
    --accent-light: #fb923c;
    --accent-dark: #c2410c;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --accent-gradient: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
    --hero-gradient: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-accent: #eff6ff;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: white;
    --text-light: #94a3b8;

    /* Border & Dividers */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(234, 88, 12, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 1rem 2rem; */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-full {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-full:hover {
    transform: scale(1.05);
}

/* Keep logo smaller on mobile */
@media (max-width: 768px) {
    .logo-full {
        height: 60px;
    }
}

.logo-icon {
    height: 40px;
    width: 40px;
    object-fit: cover;
    object-position: right center;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    /* position: absolute; */
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ea580c 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #1e3a8a 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* .hero-container {
    position: relative;
    z-index: 1;
} */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}


/* RIGHT IMAGE STYLING */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease 0.6s backwards;
}

.hero-image img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
}

/* LEFT CONTENT WIDTH CONTROL */
.hero-content {
    flex: 1;
    max-width: 800px;
}


/* .hero-content {
    max-width: 800px;
} */

.hero-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* .hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease;
} */

.hero-title {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.telecalling-text {
    color: #1e90ff;
}

.field-ops-text {
    color: #ff6347;
}


.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
}

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

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

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideUp 0.8s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    /* Bright white */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for labels */
    margin-top: 0.25rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    /* Subtle white divider */
}

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

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent-color));
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


/* ========= TABLET VIEW (577px - 991px) ========= */
@media (min-width: 577px) and (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 0 2rem;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 600px;
        margin-bottom: 1.8rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2.5rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* ========= MOBILE VIEW (Max 576px) ========= */
@media (max-width: 576px) {

    /* Container padding - FULL WIDTH */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* HERO SECTION SPACING - FULL WIDTH */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: left;
        padding: 0 1rem;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* BADGE - More visible */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1.25rem;
        margin-top: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        line-height: 1.4;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
        flex-shrink: 0;
    }

    /* HEADLINE - Better readability */
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        letter-spacing: -0.015em;
        text-align: left;
        margin-bottom: 1.25rem;
        font-weight: 800;
    }

    .hero-title br {
        display: none;
    }

    .telecalling-text {
        display: inline-block;
    }

    .field-ops-text {
        display: inline-block;
    }

    .gradient-text {
        display: inline-block;
    }

    /* DESCRIPTION - More readable */
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
        text-align: left;
        color: var(--text-secondary);
        font-weight: 400;
    }

    /* CTA BUTTONS - Better touch targets */
    .hero-cta {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 2.5rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
    }

    /* STATS - Better layout and sizing */
    .hero-stats {
        display: flex;
        gap: 0.5rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 0.5rem 0.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
        line-height: 1.3;
        color: var(--text-muted);
        font-weight: 500;
    }

    .stat-divider {
        display: none;
    }

    /* RIGHT IMAGE - HIDDEN ON MOBILE */
    .hero-image {
        display: none !important;
    }

    .hero-image img {
        display: none !important;
    }

    /* Reduce orb sizes on mobile */
    .orb-1 {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        filter: blur(60px);
    }

    .orb-3 {
        width: 180px;
        height: 180px;
        filter: blur(60px);
    }

    /* Navigation adjustments */
    .nav-container {
        padding: 0.875rem 1.25rem;
    }

    .logo-full {
        height: 55px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }

    /* Body and HTML full width */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Section spacing on mobile - FULL WIDTH */
    section {
        padding: 3.5rem 0;
        width: 100%;
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* Ensure all sections have proper container width */
    .services .container,
    .gallery .container,
    .why-us .container,
    .timeline .container,
    .industries .container,
    .contact .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

/* ========= EXTRA SMALL DEVICES (Max 375px) ========= */
@media (max-width: 375px) {
    .hero {
        padding: 85px 0 45px;
    }

    .hero-container {
        padding: 0 0.875rem;
        gap: 2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: left;
    }

    .hero-description {
        font-size: 0.875rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

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

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-stats {
        padding: 0;
    }
}



/* ===== Gallery ===== */
.gallery {
    background: var(--bg-secondary);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.gallery-side {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
    /* Default to landscape aspect ratio */
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 420px;
}

.gallery-item.portrait {
    aspect-ratio: 9 / 16;
    width: clamp(180px, 18vw, 240px);
    max-width: none;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-base);
}

/* Gallery controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.gallery-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: grid;
    place-items: center;
    color: var(--text-primary);
    font-weight: 700;
}

.gallery-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.25);
    border: 1px solid rgba(30, 58, 138, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    width: 18px;
    background: var(--accent-color);
    border-color: rgba(234, 88, 12, 0.35);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(234, 88, 12, 0.85) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    padding: 1.5rem;
    z-index: 11;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Gallery Carousel */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
    }

    .gallery-side.left {
        grid-row: 1;
    }

    .gallery-center {
        grid-row: 2;
        width: 100%;
        justify-content: center;
    }

    .gallery-side.right {
        grid-row: 3;
    }

    .gallery-item.portrait {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 9 / 16;
    }

    /* Hide overlay on mobile - no title/description */
    .gallery-overlay {
        display: none !important;
    }

    /* Ensure images are clickable on mobile for preview */
    .gallery-item {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 auto;
    }
}

/* ===== Lightbox Modal ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    text-align: center;
    color: white;
    max-width: 600px;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.lightbox-info p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10001;
    padding: 0;
    line-height: 1;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        padding: 1rem;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-info h3 {
        font-size: 1.25rem;
    }

    .lightbox-info p {
        font-size: 0.875rem;
    }
}

/* ===== Sections ===== */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}



/* ===== About Us ===== */
.about-us {
    padding: 80px 0;
}

.about-card {
    background: linear-gradient(135deg, #3c4a63, #7b5a5a);
    border-radius: 18px;
    padding: 50px;
    color: #ffffff;
}

.about-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
}

.about-badge {
    display: inline-block;
    background: #2f6df6;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}

.about-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 35px 0;
}

/* ===== Stats ===== */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-stat {
    padding: 10px 25px;
    position: relative;
    text-align: center;
}

/* Remove vertical separator for delivery card */
.about-stat:not(.delivery-card)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.stat-number-large {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label-large {
    font-size: 14px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
}

/* Delivery card layout: left number, right locations */
.delivery-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.delivery-left {
    text-align: left;
}

.delivery-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .delivery-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .delivery-right {
        text-align: left;
        margin-top: 12px;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .about-top {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .about-stat::after {
        display: none;
    }
}

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

    .about-card {
        padding: 30px 20px;
    }
}



/* ===== Certifications Section ===== */
.certifications {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
    align-items: end;
}

.cert-card {
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cert-card.portrait {
    grid-column: span 1;
}

.cert-card.landscape {
    grid-column: span 2;
}

.cert-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: var(--primary-light);
}

.cert-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.cert-card.portrait .cert-image-wrapper {
    aspect-ratio: 1 / 1.4;
}

.cert-card.landscape .cert-image-wrapper {
    aspect-ratio: 1.4 / 1;
}

.cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-card:hover .cert-image-wrapper img {
    transform: scale(1.15);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(30, 58, 138, 0.4),
            rgba(59, 130, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cert-card:hover .cert-overlay i {
    transform: translateY(0);
}

.cert-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
    pointer-events: none;
}

.cert-card:hover::after {
    left: 100%;
    transition: 0.6s;
}

/* Tablet View */
@media (max-width: 1024px) {
    .certifications {
        padding: 80px 0;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .cert-card.portrait,
    .cert-card.landscape {
        grid-column: span 1;
    }

    .cert-card.landscape .cert-image-wrapper {
        aspect-ratio: 1 / 1.4;
        /* Force same height on tablet grid */
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .certifications {
        padding: 60px 0;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cert-card.landscape .cert-image-wrapper {
        aspect-ratio: 1.4 / 1;
        /* Back to landscape on single column */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cert-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}




/* ===== Services ===== */
.services {
    background: var(--bg-secondary);
}

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

.service-card {
    position: relative;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

/* ===== Why Us ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-base);
}

.why-card:hover {
    background: var(--bg-accent);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.why-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Timeline ===== */
.timeline {
    background: var(--bg-tertiary);
}

.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-slow);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-tertiary), 0 0 0 6px rgba(234, 88, 12, 0.3);
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Industries ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.industry-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.industry-images {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.industry-images img {
    width: auto;
    height: auto;
    object-fit: contain;
    /* IMPORTANT for logos */
    border-radius: 6px;
    background: #fff;
    padding: 6px;
}


.finance-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #111;
}

/* Slider window */
.finance-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving strip */
.finance-logos {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: financeSlide 25s linear infinite;
}

/* Logo cards */
.finance-card img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(10%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover effect like enterprise sites */
.finance-card img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */
@keyframes financeSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.finance-slider:hover .finance-logos {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .finance-logos {
        gap: 40px;
    }

    .finance-card img {
        max-height: 40px;
    }
}




/* ===== Contact ===== */
.contact {
    background: white;
}

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

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 600;
}

.contact-form-container {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-full {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-tertiary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: #0e0d0d;
    margin: 0;
}

/* Compliance text style */
.footer-compliance {
    font-size: 13px;
    color: #9dd1ff;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Add subtle icon */
.footer-compliance::before {
    content: "✔";
    color: #4caf50;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Social Media Buttons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-social span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Icon Circle */
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    /* border-radius: 50%; */
    /* background-color: #ffffff; white background */
    color: #556b2f;
    /* olive green icon color */
    font-size: 18px;
    transition: all 0.3s ease;
    /* border: 1px solid #556b2f;  */
}

.social-icon:hover {
    background-color: #556b2f;
    /* olive green bg on hover */
    color: #ffffff;
    /* icon becomes white */
    transform: translateY(-2px);
}



/* ===== Responsive 768px breakpoint ===== */
@media (max-width: 768px) {
    .logo-icon {
        height: 35px;
        width: 35px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        gap: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 0.75rem 0;
        font-size: 1.05rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    /* Services section mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Why Us section mobile */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Industries section mobile */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Contact section mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Section padding adjustments */
    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-badge {
        font-size: 0.8rem;
    }
}