/* ============================================================
   DEC – Delhi Electric Company | Main Stylesheet
   Premium Engineering Website | 2024
   ============================================================ */

/* ── Custom Properties ── */
:root {
    --navy: #0B1F3A;
    --navy-l: #123C73;
    --navy-d: #070F1D;
    --copper: #C67B38;
    --gold: #D89B47;
    --cream: #F6F8FC;
    --ink: #1E293B;
    --card-shadow: 0 4px 24px rgba(11, 31, 58, .08);
    --copper-glow: 0 0 40px rgba(198, 123, 56, .25);
    --transition-base: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Dark Mode ── */
[data-theme="dark"] {
    --cream: #0d1117;
    --ink: #e2e8f0;
}

[data-theme="dark"] body {
    background: var(--navy-d);
    color: #e2e8f0;
}

[data-theme="dark"] .bg-cream,
[data-theme="dark"] .section-light {
    background: #0d1117;
}

[data-theme="dark"] .card-white {
    background: #111827;
    border-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .text-ink {
    color: #e2e8f0;
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Loader ── */
#loader {
    transition: opacity .5s ease, visibility .5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-progress {
    animation: loaderProgress 1.8s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes loaderProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ── Custom Cursor ── */
#cursor {
    transform: translate(-50%, -50%);
}

#cursor-follower {
    transform: translate(-50%, -50%);
}

/* ── Smooth Scrollbar ── */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* ── Header / Navigation ── */
#site-header {
    transition: padding .4s ease;
}

#site-header.scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
}

#site-header.scrolled #nav-wrapper {
    background: rgba(7, 15, 29, .92);
    backdrop-filter: blur(24px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}

.nav-link.nav-active {
    color: white;
    background: rgba(255, 255, 255, .1);
}

.nav-link.nav-active .nav-underline {
    transform: scaleX(1);
}

#mobile-menu {
    animation: slideDown .2s ease;
}

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #070F1D 0%, #0B1F3A 50%, #123C73 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(198, 123, 56, .12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(18, 60, 115, .3) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7, 15, 29, .85) 0%, rgba(7, 15, 29, .5) 60%, rgba(7, 15, 29, .2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 123, 56, .15);
    border: 1px solid rgba(198, 123, 56, .3);
    padding: 8px 16px;
    border-radius: 100px;
    color: #D89B47;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(8px);
    animation: fadeInDown .8s ease .3s both;
}

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

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: white;
}

.hero-title .line {
    overflow: hidden;
    display: block;
}

.hero-title .line span {
    display: block;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
}

.hero-stat-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    transition: var(--transition-base);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(198, 123, 56, .3);
    transform: translateY(-2px);
}

.hero-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-suffix {
    color: var(--copper);
}

.hero-stat-label {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .5);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

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

/* ── Hero Swiper Styles ── */
.hero-swiper .slide-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper .swiper-slide-active .slide-element {
    opacity: 1;
    transform: translateY(0);
}

.hero-swiper .swiper-slide-active .hero-badge.slide-element {
    transition-delay: 0.4s;
}

.hero-swiper .swiper-slide-active h1.slide-element {
    transition-delay: 0.6s;
}

.hero-swiper .swiper-slide-active p.slide-element {
    transition-delay: 0.8s;
}

.hero-swiper .swiper-slide-active .hero-buttons.slide-element {
    transition-delay: 1.0s;
}

.hero-pagination {
    text-align: left !important;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-pagination {
        padding-left: 4rem;
    }
}

.hero-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.4s ease;
    margin: 0 4px !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--copper);
    width: 64px;
}

/* ── Trust / Stats Bar ── */
.trust-bar {
    background: white;
    border-top: 3px solid var(--copper);
    box-shadow: 0 4px 40px rgba(11, 31, 58, .08);
}

.trust-stat {
    border-right: 1px solid rgba(11, 31, 58, .08);
}

.trust-stat:last-child {
    border-right: none;
}

.counter-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.counter-suffix {
    color: var(--copper);
}

/* ── Section Styles ── */
.section-pad {
    padding: 96px 0;
}

.section-pad-lg {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--copper);
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.section-subtitle {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
}

/* ── Group Cards (Our Group section) ── */
.group-card {
    background: white;
    border: 1px solid rgba(11, 31, 58, .08);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
    cursor: pointer;
}



.group-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.group-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.group-card-content {
    position: relative;
    z-index: 1;
    padding: 32px;
}

.group-card:hover .group-card-icon {
    background: rgba(255, 255, 255, .15) !important;
    box-shadow: 0 0 20px rgba(198, 123, 56, .4);
}

/* ── Service Cards ── */
.service-card {
    background: white;
    border: 1px solid rgba(11, 31, 58, .06);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--gold));
    transform: scaleX(0);
    transition: transform .3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(11, 31, 58, .12);
    border-color: rgba(198, 123, 56, .2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover .service-icon {
    background: var(--copper) !important;
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: white !important;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 123, 56, .1);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.service-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(198, 123, 56, .25);
    transform: scale(0);
    animation: rippleAnim .6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── Industry Cards ── */
.industry-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 280px;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.industry-card:hover img {
    transform: scale(1.12);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 29, .85) 0%, rgba(7, 15, 29, .2) 60%, transparent 100%);
    transition: var(--transition-base);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(7, 15, 29, .92) 0%, rgba(11, 31, 58, .5) 60%, rgba(11, 31, 58, .1) 100%);
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.industry-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: white;
}

.industry-tag {
    display: inline-block;
    background: rgba(198, 123, 56, .8);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

/* ── Project Cards ── */
.project-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 58, .08);
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(11, 31, 58, .15);
}

.project-card-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 31, 58, .8);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
}

.status-completed {
    background: rgba(34, 197, 94, .15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .3);
}

.status-ongoing {
    background: rgba(198, 123, 56, .15);
    color: var(--copper);
    border: 1px solid rgba(198, 123, 56, .3);
}

.project-card-body {
    padding: 24px;
}

.project-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 31, 58, .06);
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.project-meta-item svg {
    color: var(--copper);
}

/* ── Why Choose Us ── */
.why-card {
    background: white;
    border: 1px solid rgba(11, 31, 58, .06);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 31, 58, .1);
    border-color: rgba(198, 123, 56, .2);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(198, 123, 56, .1) 0%, rgba(216, 155, 71, .1) 100%);
    display: flex;
    align-items: center;
    justify-center;
    margin-bottom: 16px;
}

/* ── Client Logo Slider ── */
.logo-strip {
    overflow: hidden;
    background: white;
    border-top: 1px solid rgba(11, 31, 58, .06);
    border-bottom: 1px solid rgba(11, 31, 58, .06);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: logoScroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(11, 31, 58, .06);
}

.logo-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #94a3b8;
    transition: color .3s ease;
    letter-spacing: -.01em;
}

.logo-item:hover span {
    color: var(--navy);
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

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

/* ── Testimonials ── */
.testimonial-card {
    background: white;
    border: 1px solid rgba(11, 31, 58, .08);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: var(--transition-base);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 80px;
    line-height: 1;
    color: rgba(198, 123, 56, .15);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    box-shadow: 0 24px 48px rgba(11, 31, 58, .1);
    border-color: rgba(198, 123, 56, .2);
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-text {
    color: #475569;
    line-height: 1.75;
    font-style: italic;
    margin: 16px 0;
    font-family: 'Inter', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 31, 58, .06);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.author-title {
    color: #94a3b8;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

/* ── Map / Global Section ── */
.global-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.global-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-pin {
    cursor: pointer;
    transition: var(--transition-base);
}

.map-pin:hover .pin-dot {
    transform: scale(1.5);
}

.map-pin:hover .pin-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(-4px);
}

.pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--copper);
    border: 3px solid white;
    box-shadow: 0 0 0 4px rgba(198, 123, 56, .3);
    transition: transform .3s ease;
    position: relative;
    z-index: 1;
}

.pin-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(198, 123, 56, .2);
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {

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

    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.pin-popup {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 10;
}

.pin-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* ── CTA Band ── */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(198, 123, 56, .08);
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(198, 123, 56, .05);
}

/* ── News Cards ── */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 58, .06);
    transition: var(--transition-base);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, .1);
}

.news-card-image {
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-category {
    display: inline-block;
    background: rgba(198, 123, 56, .1);
    color: var(--copper);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

/* ── About Page ── */
.timeline-item {
    position: relative;
    padding-left: 48px;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 24px;
    bottom: 0;
    width: 1px;
    background: rgba(198, 123, 56, .2);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(198, 123, 56, .1);
}

.timeline-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--copper);
}

/* ── Contact Form ── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid rgba(11, 31, 58, .1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    transition: var(--transition-base);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--copper);
    background: white;
    box-shadow: 0 0 0 4px rgba(198, 123, 56, .1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--copper);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 14px;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a0622c;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(198, 123, 56, .35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--copper);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 2px solid var(--copper);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--copper);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 123, 56, .3);
}

.magnetic-btn {
    position: relative;
    overflow: hidden;
}

/* ── Filter Pills ── */
.filter-pill {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: 1.5px solid rgba(11, 31, 58, .12);
    color: #64748b;
    background: white;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ── Page Banner (inner pages) ── */
.page-banner {
    background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 50%, var(--navy-l) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: white;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--copper);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, .3);
}

/* ── Utilities ── */
.gradient-text {
    background: linear-gradient(135deg, var(--copper), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-navy-pattern {
    background-color: var(--navy);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(11, 31, 58, .12);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.divider-copper {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--gold));
    border-radius: 2px;
}

/* ── Swiper Custom ── */
.swiper-pagination-bullet {
    background: rgba(198, 123, 56, .4) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--copper) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--copper) !important;
}

/* ── Card White ── */
.card-white {
    background: white;
    border: 1px solid rgba(11, 31, 58, .06);
    border-radius: 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .section-pad {
        padding: 72px 0;
    }

    .section-pad-lg {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 60px);
    }
}

@media (max-width: 480px) {
    .section-pad {
        padding: 48px 0;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   PREMIUM INDUSTRIES SECTION (3D Glassmorphism)
   ============================================================ */
.industry-premium-section {
    background: radial-gradient(circle at top left, #10253f, #081018, #04070c);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.industry-premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.industry-premium-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(.22, .61, .36, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transform-style: preserve-3d;
    cursor: pointer;
    /* Height handled via Tailwind h-[420px] and h-[520px] */
}

.industry-premium-card .card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1), filter 0.5s ease;
    filter: brightness(1); /* Show original image without darkening */
    z-index: 1;
}

.industry-premium-card .card-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(4, 7, 12, 0.9) 0%, rgba(4, 7, 12, 0.2) 60%, transparent 100%); */
    z-index: 2;
    transition: opacity 0.5s ease;
}

.industry-premium-card .card-glass-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.08); */
    /* backdrop-filter: blur(18px); */
    /* -webkit-backdrop-filter: blur(18px); */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 3;
    transition: all 0.5s ease;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
}

/* Shine animation overlay on glass panel */
.industry-premium-card .card-glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.industry-premium-card:hover .card-glass-panel::after {
    left: 200%;
}

.industry-premium-card:hover {
    transform: translateY(-12px) rotateX(4deg) rotateY(3deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.industry-premium-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 140, 0, 0.5);
    border-radius: 24px;
    z-index: 10;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 140, 0, 0.2);
}

.industry-premium-card:hover .card-bg-image {
    transform: scale(1.12);
    filter: brightness(1); /* Keep original brightness on hover */
}

/* Overlay hover state removed to prevent any darkening */
.industry-premium-card .explore-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
    background: #FF8C00;
    color: white;
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    items-center: center;
    gap: 8px;
    margin-top: 16px;
}

.industry-premium-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

.industry-premium-card .explore-btn:hover {
    background: black;
}

.industry-premium-card:hover .explore-btn svg {
    transform: translateX(4px);
}

.industry-premium-card .explore-btn svg {
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .md-featured-panel {
        width: 50% !important;
        height: 100% !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-right: none !important;
        border-radius: 0 !important;
    }
}