/* HEXALL MOTORS - MODERN DESIGN WITH INTER FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #25b44a;
    --primary-dark: #1a8f3a;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --gradient-primary: linear-gradient(135deg, #25b44a 0%, #1a8f3a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

    .whatsapp-float img {
        width: 60px;
        height: 60px;
        position: relative;
        top: -52px;
    }

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

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* TYPOGRAPHY - GEVWORLD STYLE */
h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
}

.tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.tag.light {
    color: rgba(255, 255, 255, 0.8);
}

/* ANIMATIONS */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* HEADER */
.hdr-wrap-x1 {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.hdr-wrap-x1.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
}

.logo {
    width: 160px;
    transition: var(--transition);
}

.hdr-menu-x1 {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hdr-menu-x1 a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.hdr-menu-x1 a:hover {
    color: var(--primary);
}

.hdr-wrap-x1.scrolled .hdr-menu-x1 a {
    color: var(--dark);
}

.hdr-right-x1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-btn,
.red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-btn:hover,
.red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 180, 74, 0.35);
}

.hdr-toggle-x1 {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.hdr-wrap-x1.scrolled .hdr-toggle-x1 {
    color: var(--dark);
}

.menu-close-x1 {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.dropdown-x1 {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu-x1 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    width: 260px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.dropdown-x1:hover .dropdown-menu-x1 {
    display: flex;
}

.dropdown-item-x1 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown-item-x1:hover {
    background: rgba(37, 180, 74, 0.08);
}

.dropdown-item-x1 img {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.dropdown-item-x1 span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* HERO BANNER */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Safari fallback for correct viewport height */
    height: -webkit-fill-available;
    min-height: 580px;
    max-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #0000003d;
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 580px;
    z-index: 2;
    color: #fff;
}

.hero-slide-content .hero-tag {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-slide-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-slide-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-nav {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.hero-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.hero-bottom-nav {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.hero-bottom-nav span {
    cursor: pointer;
    transition: var(--transition);
}

.hero-bottom-nav span:hover {
    color: var(--primary);
}

.hero-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* SECTION HEAD */
.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    margin-top: 8px;
}

.section-head p {
    max-width: 600px;
    margin: 16px auto 0;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.products-grid {
    display: flex;
    gap: 16px;
    height: 520px;
}

.product-card {
    position: relative;
    flex: 1;
    min-width: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
}

.product-card.active {
    flex: 3.5;
}

.product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.product-card.active img,
.product-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    transition: opacity 0.5s ease;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-card.active .product-info {
    opacity: 1;
    transform: translateY(0);
}

.product-info h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    white-space: pre-line;
}

.product-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 2;
}

.product-card.active .product-arrow {
    opacity: 1;
    transform: scale(1);
}

.product-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.product-arrow:hover {
    background: var(--primary);
}

.product-arrow:hover i {
    color: #fff;
}

.product-arrow i {
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
}

/* JOURNEY SECTION */
.journey-section {
    background: var(--dark);
}

.journey-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
}

.journey-sticky {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.journey-img-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.journey-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.journey-year-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 56px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
}

.journey-scroll {
    width: 50%;
    padding: 80px 40px 80px 24px;
}

.journey-head {
    margin-bottom: 40px;
}

.journey-head h2 {
    font-size: 38px;
    color: #fff;
    margin-top: 8px;
}

.journey-head p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

.journey-timeline {
    position: relative;
    padding-left: 28px;
}

.journey-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.journey-card {
    position: relative;
    padding: 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}

.journey-card.active {
    background: rgba(37, 180, 74, 0.1);
    border-color: rgba(37, 180, 74, 0.25);
}

.journey-dot {
    position: absolute;
    left: -35px;
    top: 30px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: var(--transition);
}

.journey-card.active .journey-dot {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(37, 180, 74, 0.5);
}

.jc-year {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.journey-content h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.journey-content>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.journey-content ul {
    list-style: none;
}

.journey-content li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.journey-content li i {
    color: var(--primary);
    font-size: 10px;
}

/* WHY SECTION */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--gray-light) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-left h2 {
    font-size: 38px;
    margin-top: 8px;
}

.why-left>p {
    margin-top: 16px;
}

.why-numbers {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

.why-num-item {
    text-align: center;
}

.why-num-item .num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.why-num-item .label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 20px;
    color: #fff;
}

.why-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
}

/* OPPORTUNITY SECTION - IMPORTANT */
.opportunity-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark);
    overflow: hidden;
}

.opportunity-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(37, 180, 74, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(37, 180, 74, 0.1) 0%, transparent 50%);
}

.opportunity-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.opportunity-header h2 {
    font-size: 44px;
    color: #fff;
    margin-top: 8px;
}

.opportunity-header p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 16px auto 0;
}

.opportunity-showcase {
    position: relative;
    z-index: 2;
}

.opp-main-stat {
    text-align: center;
    margin-bottom: 60px;
}

.opp-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 180, 74, 0.2) 0%, rgba(37, 180, 74, 0.05) 100%);
    border: 2px solid rgba(37, 180, 74, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.opp-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.opp-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.opp-growth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(37, 180, 74, 0.15);
    border-radius: 30px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.opp-growth i {
    font-size: 16px;
}

.opp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.opp-stat {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.opp-stat:hover {
    background: rgba(37, 180, 74, 0.1);
    border-color: rgba(37, 180, 74, 0.25);
    transform: translateY(-8px);
}

.opp-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: rgba(37, 180, 74, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opp-stat-icon i {
    font-size: 20px;
    color: var(--primary);
}

.opp-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.opp-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.opp-stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.opp-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1.5s ease;
}

.opp-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.opp-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.opp-highlight i {
    color: var(--primary);
    font-size: 18px;
}

/* INNOVATION SECTION */
.innovation-section {
    padding: 100px 0;
    background: #fff;
}

.innovation-visual {
    position: relative;
    margin-top: 40px;
}

.innovation-path {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 0;
}

.innovation-path svg {
    width: 100%;
    height: 100%;
}

.innovation-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.inno-item {
    flex: 1;
    text-align: center;
    padding: 0 8px;
}

.inno-dot {
    width: 16px;
    height: 16px;
    background: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 12px;
    transition: var(--transition);
}

.inno-item.active .inno-dot {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(37, 180, 74, 0.2);
}

.inno-year {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.inno-card {
    background: var(--gray-light);
    padding: 24px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.inno-item:hover .inno-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.inno-item.active .inno-card {
    background: var(--gradient-primary);
    color: #fff;
}

.inno-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.inno-item.active .inno-card i {
    color: #fff;
}

.inno-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.inno-card p {
    font-size: 12px;
    color: var(--gray);
}

.inno-item.active .inno-card p {
    color: rgba(255, 255, 255, 0.85);
}

.inno-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.innovation-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.metric {
    text-align: center;
}

.metric-val {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

/* TEAM SECTION */
.team-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    position: relative;
    height: 410px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-linkedin {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #0077b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.team-card:hover .team-linkedin {
    opacity: 1;
    transform: translateY(0);
}

.team-linkedin:hover {
    background: #005885;
    transform: scale(1.1) !important;
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
}

/* CERTIFICATIONS */
.certifications-section {
    padding: 100px 0;
    background: #fff;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.cert-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon i {
    font-size: 26px;
    color: #fff;
}

.cert-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 13px;
}

/* VISION SECTION */
.vision-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.vision-content h2 {
    font-size: 48px;
    margin-top: 8px;
}

.vision-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    font-size: 17px;
}

.vision-features {
    display: flex;
    gap: 24px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.vision-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.vision-feat i {
    color: var(--primary);
    font-size: 18px;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    max-width: 500px;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-top: 8px;
}

.contact-info>p {
    margin-top: 16px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: #fff;
}

.contact-card span {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-card a,
.contact-card p {
    color: var(--dark);
    font-size: 15px;
    text-decoration: none;
    margin: 0;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-card {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.contact-form-card>p {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 180, 74, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center #fff;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 180, 74, 0.3);
}

/* PIDILITE-STYLE FOOTER */
.footer-pidilite {
    background: #0a0a0a;
    color: #fff;
}

.footer-categories {
    background: var(--primary);
    padding: 0;
}

.footer-cat-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-cat-item:last-child {
    border-right: none;
}

.footer-cat-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

.footer-cat-item i {
    font-size: 22px;
}

.footer-main-content {
    padding: 60px 5% 50px;
}

.footer-main-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
    gap: 50px;
}

.footer-brand-section {
    max-width: 320px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-brand-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links-section {
    display: flex;
    gap: 40px;
}

.footer-link-col h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-link-col ul {
    list-style: none;
}

.footer-link-col li {
    margin-bottom: 12px;
}

.footer-link-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-section h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-box i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 14px;
}

.footer-contact-box p,
.footer-contact-box a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
}

.footer-contact-box a:hover {
    color: var(--primary);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 5%;
}

.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

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

/* SCROLL & BACK TO TOP */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    width: 0%;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 34px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-section {
        max-width: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .hdr-menu-x1 {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #fff;
        flex-direction: column;
        padding: 70px 30px;
        gap: 20px;
        transition: 0.4s;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: flex-start;
    }

    .hdr-menu-x1.active {
        right: 0;
    }

    .hdr-menu-x1 a {
        font-size: 16px;
        color: var(--dark);
    }

    .menu-close-x1 {
        display: block;
    }

    .hdr-toggle-x1 {
        display: block;
    }

    .red {
        display: none;
    }

    .journey-wrapper {
        flex-direction: column;
    }

    .journey-sticky {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 320px;
        padding: 50px 20px;
    }

    .journey-scroll {
        width: 100%;
        padding: 50px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-left {
        text-align: center;
    }

    .why-numbers {
        justify-content: center;
    }

    .opp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .innovation-timeline {
        flex-wrap: wrap;
        gap: 16px;
    }

    .inno-item {
        flex: 0 0 calc(33.33% - 12px);
    }

    .innovation-path {
        display: none;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-cat-inner {
        flex-wrap: wrap;
    }

    .footer-cat-item {
        flex: 1 1 33%;
        padding: 18px 20px;
    }

    .footer-links-section {
        gap: 30px;
    }

    /* Products Tablet Layout */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 20px;
    }

    .product-card {
        height: 320px;
        flex: none;
        width: 100%;
    }

    .product-card.active {
        grid-column: span 2;
        height: 380px;
    }

    .product-info {
        opacity: 1;
        transform: translateY(0);
        padding: 24px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-arrow {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .hero-slide-content h1 {
        font-size: 34px;
    }

    .hero-nav {
        right: 3%;
    }

    .products-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .product-card,
    .product-card.active {
        height: 280px;
        flex: none;
    }

    .product-info {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
    }

    .product-info h3 {
        font-size: 19px;
    }

    .journey-head h2 {
        font-size: 28px;
    }

    .opp-stats-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .opp-circle {
        width: 220px;
        height: 220px;
    }

    .opp-value {
        font-size: 32px;
    }

    .opp-highlights {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .inno-item {
        flex: 0 0 calc(50% - 8px);
    }

    .innovation-metrics {
        flex-direction: column;
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-cat-item {
        flex: 1 1 50%;
        font-size: 12px;
        padding: 16px 15px;
    }

    .footer-cat-item i {
        font-size: 18px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-section {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-link-col {
        flex: 1 1 45%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-slide-content h1 {
        font-size: 48px;
    }

    .hero-bottom-nav {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hdr-wrap-x1 {
        width: 94%;
        padding: 10px 18px;
        top: 10px;
    }

    .logo {
        width: 130px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .hero-slide-content h1 {
        font-size: 28px;
    }

    .hero-slide-content p {
        font-size: 15px;
    }

    .journey-img-box {
        height: 260px;
    }

    .journey-year-badge {
        font-size: 42px;
    }

    .why-numbers {
        flex-direction: column;
        gap: 16px;
    }

    .opp-circle {
        width: 180px;
        height: 180px;
    }

    .opp-value {
        font-size: 26px;
    }

    .inno-item {
        flex: 0 0 100%;
    }

    .vision-content h2 {
        font-size: 32px;
    }

    .vision-features {
        flex-direction: column;
        gap: 12px;
    }

    .cta-content {
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .footer-cat-item {
        flex: 1 1 100%;
    }

    .footer-cat-item span {
        display: none;
    }

    .footer-cat-item i {
        font-size: 20px;
    }

    .footer-link-col {
        flex: 1 1 100%;
    }

    .hero-slide-content h1 {
        font-size: 40px;
    }
}

/* ====== HEXALL BY THE NUMBERS - STATS SHOWCASE ====== */
.stats-showcase-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f1a12 50%, #0a0a0a 100%);
    overflow: hidden;
}

.stats-showcase-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(37, 180, 74, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 80%, rgba(37, 180, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-showcase-title {
    color: #fff !important;
    font-size: 42px;
    margin-top: 8px;
}

.stats-showcase-subtitle {
    color: rgba(255, 255, 255, 0.55) !important;
    max-width: 620px;
    margin: 16px auto 0;
}

.stats-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-showcase-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 40px 24px 32px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-showcase-card:hover .stats-card-border {
    opacity: 1;
}

.stats-showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 180, 74, 0.25);
    background: rgba(37, 180, 74, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 180, 74, 0.08);
}

.stats-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 14px;
}

.stats-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}

.stats-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.stats-showcase-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.stats-showcase-card>p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.stats-icon-bg {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 80px;
    color: rgba(37, 180, 74, 0.04);
    pointer-events: none;
    transition: all 0.4s ease;
}

.stats-showcase-card:hover .stats-icon-bg {
    color: rgba(37, 180, 74, 0.08);
    transform: scale(1.1);
}

.stats-icon-bg i {
    display: block;
}

/* Stats Bottom Bar */
.stats-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bottom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.stats-bottom-item i {
    font-size: 18px;
    color: var(--primary);
}

.stats-bottom-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
}

/* ====== OUR EV FUTURE VISION SECTION ====== */
.ev-future-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1210 50%, #0a0a0a 100%);
    overflow: hidden;
}

.ev-future-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(37, 180, 74, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(37, 180, 74, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ev-future-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ev-future-title {
    color: #fff !important;
    font-size: 42px;
    margin-top: 8px;
    line-height: 1.15;
}

.ev-future-desc {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 16px;
    margin-top: 18px;
    line-height: 1.75;
}

.ev-future-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 36px;
}

.ev-future-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.ev-future-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(37, 180, 74, 0.5);
}

/* Visual Ring Animation */
.ev-future-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 420px;
}

.ev-future-icon-box {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-future-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(37, 180, 74, 0.15);
}

.ev-future-ring-1 {
    width: 100%;
    height: 100%;
    animation: evRingSpin 20s linear infinite;
    border-style: dashed;
    border-color: rgba(37, 180, 74, 0.12);
}

.ev-future-ring-2 {
    width: 78%;
    height: 78%;
    animation: evRingSpin 15s linear infinite reverse;
    border-color: rgba(37, 180, 74, 0.2);
}

.ev-future-ring-3 {
    width: 56%;
    height: 56%;
    animation: evRingSpin 10s linear infinite;
    border-color: rgba(37, 180, 74, 0.28);
    background: radial-gradient(circle, rgba(37, 180, 74, 0.08) 0%, transparent 70%);
}

@keyframes evRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ev-future-center-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(37, 180, 74, 0.3), 0 0 80px rgba(37, 180, 74, 0.1);
}

.ev-future-center-icon i {
    font-size: 36px;
    color: #fff;
}

/* Floating Badges */
.ev-future-floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ev-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.ev-float-badge i {
    font-size: 16px;
    color: var(--primary);
}

.ev-float-badge-1 {
    top: 10%;
    right: 5%;
    animation: evFloat1 4s ease-in-out infinite;
}

.ev-float-badge-2 {
    bottom: 15%;
    left: 2%;
    animation: evFloat2 5s ease-in-out infinite;
}

.ev-float-badge-3 {
    bottom: 8%;
    right: 10%;
    animation: evFloat3 4.5s ease-in-out infinite;
}

@keyframes evFloat1 {

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

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

@keyframes evFloat2 {

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

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

@keyframes evFloat3 {

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

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

/* ====== RESPONSIVE FOR NEW SECTIONS ====== */
@media (max-width: 1024px) {
    .stats-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-future-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ev-future-visual {
        min-height: 340px;
    }

    .stats-bottom-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-showcase-section {
        padding: 80px 0;
    }

    .stats-showcase-title {
        font-size: 30px;
    }

    .stats-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-number {
        font-size: 42px;
    }

    .ev-future-section {
        padding: 80px 0;
    }

    .ev-future-title {
        font-size: 30px;
    }

    .ev-future-icon-box {
        width: 220px;
        height: 220px;
    }

    .ev-future-center-icon {
        width: 70px;
        height: 70px;
    }

    .ev-future-center-icon i {
        font-size: 28px;
    }

    .ev-future-visual {
        min-height: 300px;
    }

    .stats-bottom-bar {
        gap: 16px;
    }

    .stats-bottom-divider {
        display: none;
    }

    .stats-bottom-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-showcase-section {
        padding: 60px 0;
    }

    .stats-showcase-title {
        font-size: 26px;
    }

    .stats-showcase-card {
        padding: 28px 20px 24px;
    }

    .stats-number {
        font-size: 36px;
    }

    .ev-future-section {
        padding: 60px 0;
    }

    .ev-future-title {
        font-size: 24px;
    }

    .ev-future-icon-box {
        width: 180px;
        height: 180px;
    }

    .ev-future-center-icon {
        width: 60px;
        height: 60px;
    }

    .ev-future-center-icon i {
        font-size: 24px;
    }

    .ev-float-badge {
        padding: 8px 14px;
        font-size: 11px;
    }
}

















.services-banner {
    width: 100%;
    padding: 20px;
}

.banner-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    top: -10px;
}

.banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

/* Title */
.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    z-index: 2;
}

/* Breadcrumb box */
.breadcrumb-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 12px 25px;
    border-top-left-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.breadcrumb-box a {
    text-decoration: none;
    color: #777;
}

.breadcrumb-box strong {
    color: #7bc043;
}



.contact-section1 {
    padding: 100px 0;

}



.dom {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   TEAM PAGE — SPLIT LAYOUT SECTION
   ============================================ */

.tp-section {
    padding: 100px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.tp-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 180, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tp-header {
    text-align: center;
    margin-bottom: 70px;
}

.tp-header h2 {
    margin-top: 8px;
    font-size: 42px;
}

.tp-header p {
    max-width: 620px;
    margin: 16px auto 0;
    font-size: 16px;
}

/* --- TEAM ROW (SPLIT LAYOUT) --- */
.tp-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.tp-row:last-child {
    margin-bottom: 0;
}

.tp-row-reverse {
    flex-direction: row-reverse;
}

/* --- IMAGE SIDE --- */
.tp-img-wrap {
    position: relative;
    flex: 0 0 420px;
    width: 420px;
    height: 500px;
}

.tp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tp-row:hover .tp-img-wrap img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.tp-img-glow {
    position: absolute;
    bottom: -15px;
    left: 15px;
    right: 15px;
    height: 80%;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(25px);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.tp-row:hover .tp-img-glow {
    opacity: 0.35;
}

.tp-img-badge {
    position: absolute;
    top: 20px;
    right: -18px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(37, 180, 74, 0.35);
    transition: transform 0.4s ease;
}

.tp-row:hover .tp-img-badge {
    transform: rotate(8deg) scale(1.08);
}

.tp-img-badge i {
    font-size: 20px;
    color: #fff;
}

/* --- CONTENT SIDE --- */
.tp-content {
    flex: 1;
}

.tp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    padding: 6px 16px;
    background: rgba(37, 180, 74, 0.08);
    border-radius: 30px;
}

.tp-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.tp-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

/* --- STAT PILLS --- */
.tp-stats-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tp-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--gray-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.tp-stat-pill:hover {
    background: rgba(37, 180, 74, 0.1);
    color: var(--primary-dark);
}

.tp-stat-pill i {
    font-size: 14px;
    color: var(--primary);
}

/* --- SOCIAL LINKS --- */
.tp-social {
    display: flex;
    gap: 12px;
}

.tp-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tp-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.tp-social a:hover::before {
    opacity: 1;
}

.tp-social a:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 180, 74, 0.3);
}

.tp-social a i {
    position: relative;
    z-index: 1;
}

/* ============================================
   WAVE DIVIDER
   ============================================ */
.tp-wave-divider {
    background: #fff;
    line-height: 0;
    margin-top: -1px;
}

.tp-wave-divider svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ============================================
   TEAM CTA SECTION
   ============================================ */
.tp-cta-section {
    position: relative;
    background: var(--dark);
    padding: 100px 0;
    overflow: hidden;
}

.tp-cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tp-cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.tp-cta-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.tp-cta-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 8s ease-in-out infinite 2s;
}

.tp-cta-box {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.tp-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: rgba(37, 180, 74, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 180, 74, 0.2);
}

.tp-cta-icon i {
    font-size: 32px;
    color: var(--primary);
}

.tp-cta-box h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 16px;
}

.tp-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    line-height: 1.7;
}

.tp-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tp-cta-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.tp-cta-outline-btn:hover {
    border-color: var(--primary);
    background: rgba(37, 180, 74, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   TEAM PAGE — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tp-img-wrap {
        flex: 0 0 350px;
        width: 350px;
        height: 420px;
    }

    .tp-row {
        gap: 40px;
    }

    .tp-content h3 {
        font-size: 28px;
    }

    .tp-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .tp-section {
        padding: 70px 0 50px;
    }

    .tp-header {
        margin-bottom: 50px;
    }

    .tp-header h2 {
        font-size: 30px;
    }

    .tp-row,
    .tp-row-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .tp-img-wrap {
        flex: none;
        width: 100%;
        max-width: 420px;
        height: 400px;
        margin: 0 auto;
    }

    .tp-img-badge {
        right: 10px;
    }

    .tp-content {
        text-align: center;
    }

    .tp-content h3 {
        font-size: 26px;
    }

    .tp-stats-row {
        justify-content: center;
    }

    .tp-social {
        justify-content: center;
    }

    .tp-cta-box h2 {
        font-size: 30px;
    }

    .tp-cta-section {
        padding: 70px 0;
    }

    .tp-wave-divider svg {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .tp-section {
        padding: 50px 0 30px;
    }

    .tp-header h2 {
        font-size: 26px;
    }

    .tp-img-wrap {
        height: 340px;
    }

    .tp-content h3 {
        font-size: 24px;
    }

    .tp-stat-pill {
        font-size: 12px;
        padding: 8px 14px;
    }

    .tp-cta-box h2 {
        font-size: 26px;
    }

    .tp-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .tp-wave-divider svg {
        height: 60px;
    }
}


/* ============================================================
   PRODUCT PAGE — LLC-LOADER
   ============================================================ */

/* --- SECTION 1: PRODUCT HERO --- */
.pd-hero {
    padding: 100px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pd-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 180, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image frame */
.pd-hero-img {
    position: relative;
}

.pd-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--gray-light);
}

.pd-img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-img-frame:hover img {
    transform: scale(1.04);
}

.pd-img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 55%;
    height: 55%;
    border-radius: 24px;
    border: 3px solid var(--primary);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.pd-img-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.25;
    z-index: 3;
}

.pd-img-dot-1 {
    top: -8px;
    left: 40px;
}

.pd-img-dot-2 {
    bottom: 20px;
    right: -6px;
}

.pd-hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(37, 180, 74, 0.35);
    z-index: 4;
}

.pd-hero-badge i {
    font-size: 15px;
}

/* Content side */
.pd-hero-content h2 {
    font-size: 38px;
    line-height: 1.18;
    margin-top: 8px;
    margin-bottom: 18px;
}

.pd-hero-content>p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 28px;
}

/* Key points */
.pd-key-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
}

.pd-kp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--gray-light);
    border-radius: 14px;
    transition: var(--transition);
}

.pd-kp-item:hover {
    background: rgba(37, 180, 74, 0.08);
    transform: translateX(6px);
}

.pd-kp-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-kp-icon i {
    font-size: 18px;
    color: #fff;
}

.pd-kp-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.pd-kp-item span {
    font-size: 13px;
    color: var(--gray);
}

/* Buttons */
.pd-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pd-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    border: 1.5px solid #dfe3e8;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.pd-ghost-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* --- SECTION 2: PRODUCT OVERVIEW --- */
.pd-overview {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

.pd-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.pd-overview-left h2 {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 36px;
}

.pd-overview-left p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 16px;
}

/* Spec card */
.pd-spec-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.pd-spec-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    background: var(--gradient-primary);
    color: #fff;
}

.pd-spec-header i {
    font-size: 20px;
}

.pd-spec-header h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.pd-spec-list {
    padding: 8px 0;
}

.pd-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pd-spec-row:last-child {
    border-bottom: none;
}

.pd-spec-row:hover {
    background: rgba(37, 180, 74, 0.04);
}

.pd-spec-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.pd-spec-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

/* --- SECTION 3: FEATURES & APPLICATIONS --- */
.pd-features {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.pd-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(37, 180, 74, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(37, 180, 74, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.pd-features-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.pd-features-header h2 {
    font-size: 40px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 14px;
}

.pd-features-header p {
    color: rgba(255, 255, 255, 0.55);
    max-width: 620px;
    margin: 0 auto;
}

.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.pd-feat-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-feat-card:hover {
    background: rgba(37, 180, 74, 0.1);
    border-color: rgba(37, 180, 74, 0.25);
    transform: translateY(-8px);
}

.pd-feat-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 180, 74, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.pd-feat-card:hover .pd-feat-icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(37, 180, 74, 0.3);
}

.pd-feat-icon i {
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.pd-feat-card:hover .pd-feat-icon i {
    color: #fff;
}

.pd-feat-card h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.pd-feat-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* --- SECTION 4: CTA --- */
.pd-cta {
    padding: 100px 0;
    background: #fff;
}

.pd-cta-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.pd-cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.65) 100%);
}

.pd-cta-inner {
    position: relative;
    z-index: 2;
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.pd-cta-text h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
}

.pd-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    line-height: 1.7;
}

.pd-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.pd-cta-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.pd-cta-phone:hover {
    background: rgba(37, 180, 74, 0.15);
    border-color: rgba(37, 180, 74, 0.3);
}

.pd-cta-phone i {
    font-size: 20px;
    color: var(--primary);
}

.pd-cta-phone span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pd-cta-phone strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}


/* ============================================================
   PRODUCT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .pd-hero-grid {
        gap: 40px;
    }

    .pd-hero-content h2 {
        font-size: 32px;
    }

    .pd-overview-grid {
        gap: 36px;
    }

    .pd-overview-left h2 {
        font-size: 32px;
    }

    .pd-features-header h2 {
        font-size: 34px;
    }

    .pd-cta-inner {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .pd-hero {
        padding: 70px 0 50px;
    }

    .pd-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pd-img-frame img {
        height: 320px;
    }

    .pd-hero-content h2 {
        font-size: 28px;
    }

    .pd-overview {
        padding: 70px 0;
    }

    .pd-overview-grid {
        grid-template-columns: 1fr;
    }

    .pd-overview-left h2 {
        font-size: 28px;
    }

    .pd-spec-card {
        position: static;
    }

    .pd-features {
        padding: 70px 0;
    }

    .pd-features-header h2 {
        font-size: 28px;
    }

    .pd-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-cta {
        padding: 70px 0;
    }

    .pd-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .pd-cta-text h2 {
        font-size: 28px;
    }

    .pd-cta-actions {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .pd-hero {
        padding: 50px 0 30px;
    }

    .pd-hero-content h2 {
        font-size: 24px;
    }

    .pd-img-frame img {
        height: 260px;
    }

    .pd-hero-btns {
        flex-direction: column;
    }

    .pd-overview {
        padding: 50px 0;
    }

    .pd-overview-left h2 {
        font-size: 24px;
    }

    .pd-features {
        padding: 50px 0;
    }

    .pd-features-header h2 {
        font-size: 24px;
    }

    .pd-features-grid {
        grid-template-columns: 1fr;
    }

    .pd-feat-card {
        padding: 28px 22px;
    }

    .pd-cta {
        padding: 50px 0;
    }

    .pd-cta-text h2 {
        font-size: 24px;
    }

    .pd-cta-inner {
        padding: 30px 20px;
    }
}


/* ============================================================
   JOURNEY PAGE — TIMELINE
   ============================================================ */

/* --- INTRO --- */
.jy-intro {
    padding: 80px 0 20px;
    background: #fff;
}

.jy-intro-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.jy-intro-inner h2 {
    font-size: 42px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.jy-intro-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* --- TIMELINE SECTION --- */
.jy-timeline-section {
    padding: 60px 0 100px;
    background: #fff;
    position: relative;
}

.jy-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Vertical spine */
.jy-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(37, 180, 74, 0.15) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

/* --- TIMELINE ITEM --- */
.jy-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 60px;
}

.jy-item:last-child {
    margin-bottom: 0;
}

/* Left-aligned card */
.jy-left {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

/* Right-aligned card */
.jy-right {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

/* --- CONNECTOR DOT --- */
.jy-connector {
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    z-index: 3;
}

.jy-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #fff, 0 0 0 9px rgba(37, 180, 74, 0.2), 0 8px 24px rgba(37, 180, 74, 0.25);
    transition: transform 0.4s ease;
}

.jy-item:hover .jy-dot {
    transform: scale(1.12);
}

.jy-dot i {
    font-size: 18px;
    color: #fff;
}

.jy-dot-future {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    box-shadow: 0 0 0 6px #fff, 0 0 0 9px rgba(37, 180, 74, 0.3), 0 0 20px rgba(37, 180, 74, 0.2);
}

.jy-dot-future i {
    color: var(--primary);
}

/* --- MILESTONE CARD --- */
.jy-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
}

.jy-card::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transform: rotate(45deg);
    z-index: -1;
}

.jy-left .jy-card::before {
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.jy-right .jy-card::before {
    left: -10px;
    border-right: none;
    border-top: none;
}

.jy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 180, 74, 0.2);
}

/* Year badge */
.jy-year-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.jy-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.jy-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Highlights list */
.jy-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jy-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.jy-highlights li:last-child {
    margin-bottom: 0;
}

.jy-highlights li i {
    font-size: 11px;
    color: var(--primary);
    flex-shrink: 0;
}

/* --- CARD WITH IMAGE --- */
.jy-card-img {
    padding: 0;
    overflow: hidden;
}

.jy-card-img .jy-card-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.jy-card-body {
    padding: 28px 32px 32px;
}

/* --- FUTURE CARD --- */
.jy-card-future {
    background: linear-gradient(135deg, #0a0a0a 0%, #141428 100%);
    border-color: rgba(37, 180, 74, 0.2);
}

.jy-card-future .jy-year-tag {
    background: rgba(37, 180, 74, 0.2);
    color: var(--primary);
}

.jy-card-future h4 {
    color: #fff;
}

.jy-card-future p {
    color: rgba(255, 255, 255, 0.55);
}

.jy-card-future .jy-highlights li {
    color: rgba(255, 255, 255, 0.5);
}

.jy-card-future::before {
    background: #0a0a0a;
    border-color: rgba(37, 180, 74, 0.2);
}

/* ============================================================
   JOURNEY PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .jy-intro-inner h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .jy-intro {
        padding: 60px 0 10px;
    }

    .jy-intro-inner h2 {
        font-size: 30px;
    }

    .jy-timeline-section {
        padding: 40px 0 70px;
    }

    /* Collapse to single column */
    .jy-spine {
        left: 26px;
    }

    .jy-left,
    .jy-right {
        padding-left: 72px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .jy-connector {
        left: 26px;
    }

    .jy-dot {
        width: 44px;
        height: 44px;
    }

    .jy-dot i {
        font-size: 15px;
    }

    .jy-card::before {
        display: none;
    }

    .jy-card {
        padding: 24px;
    }

    .jy-card h4 {
        font-size: 18px;
    }

    .jy-item {
        margin-bottom: 40px;
    }

    .jy-card-body {
        padding: 20px 24px 24px;
    }
}

@media (max-width: 480px) {
    .jy-intro-inner h2 {
        font-size: 26px;
    }

    .jy-spine {
        left: 20px;
    }

    .jy-left,
    .jy-right {
        padding-left: 58px;
    }

    .jy-connector {
        left: 20px;
    }

    .jy-dot {
        width: 38px;
        height: 38px;
    }

    .jy-dot i {
        font-size: 13px;
    }

    .jy-card {
        padding: 20px;
    }

    .jy-card h4 {
        font-size: 17px;
    }

    .jy-card-img .jy-card-photo {
        height: 160px;
    }
}

/* PREMIUM JOURNEY SECTION */
.premium-journey {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.pj-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    height: 80vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pj-left {
    flex: 1;
    background: var(--gradient-primary);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pj-left::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pj-info {
    position: relative;
    z-index: 2;
}

.pj-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pj-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.pj-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.pj-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.pj-scroll-hint i {
    animation: pj-bounce 2s infinite;
}

@keyframes pj-bounce {

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

    50% {
        transform: translateY(5px);
    }
}

.pj-right {
    flex: 1.2;
    position: relative;
    background: #fff;
}

.pj-scroll-container {
    height: 100%;
    overflow-y: auto;
    padding: 60px;
    position: relative;
    scroll-behavior: smooth;
}

.pj-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.pj-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.pj-scroll-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.pj-track {
    position: absolute;
    left: 82px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.pj-card {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
    z-index: 2;
}

.pj-card:last-child {
    margin-bottom: 0;
}

.pj-dot {
    position: absolute;
    left: 17px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(37, 180, 74, 0.15);
    transition: all 0.3s ease;
}

.pj-card:hover .pj-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(37, 180, 74, 0.2);
}

.pj-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: inline-block;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 12px;
}

.pj-content {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.pj-card:hover .pj-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.pj-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pj-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .pj-wrapper {
        flex-direction: column;
        height: auto;
        max-height: 85vh;
    }

    .pj-left {
        flex: none;
        padding: 40px;
    }

    .pj-right {
        flex: none;
        height: 50vh;
    }

    .pj-title {
        font-size: 32px;
    }

    .pj-scroll-container {
        padding: 40px 24px;
    }

    .pj-track {
        left: 46px;
        top: 40px;
        bottom: 40px;
    }
}

@media (max-width: 767px) {
    .premium-journey {
        padding: 40px 15px;
    }

    .pj-wrapper {
        max-height: none;
        height: auto;
    }

    .pj-right {
        height: 400px;
    }

    .pj-scroll-container {
        padding: 30px 20px;
    }

    .pj-track {
        left: 42px;
        top: 30px;
        bottom: 30px;
    }
}

/* JOURNEY INTRO SECTION */
.jy-intro {
    padding: 100px 0 60px;
    background: #fff;
    text-align: center;
}

.jy-intro-inner {
    max-width: 800px;
    margin: 0 auto;
}

.jy-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 180, 74, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.jy-intro h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.jy-intro p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* JOURNEY ACHIEVEMENTS SECTION */
.jy-achievements {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.jy-ach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.jy-ach-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.jy-ach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.jy-ach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(37, 180, 74, 0.1) 0%, rgba(26, 143, 58, 0.1) 100%);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.jy-ach-card:hover .jy-ach-icon {
    background: var(--gradient-primary);
    color: #fff;
}

.jy-ach-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1;
}

.jy-ach-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .jy-intro h2 {
        font-size: 36px;
    }

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

@media (max-width: 767px) {
    .jy-intro {
        padding: 60px 0 40px;
    }

    .jy-intro h2 {
        font-size: 28px;
    }

    .jy-intro p {
        font-size: 16px;
    }

    .jy-achievements {
        padding: 40px 0 60px;
    }

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

/* CINEMATIC STORY TIMELINE */
.story-timeline-wrapper {
    position: relative;
    background: #000;
}

.story-item {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.story-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.story-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.5s ease-out;
}

.story-item:hover .story-bg {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.story-overlay.right-fade {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.story-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
}

.story-container.right-align {
    justify-content: flex-end;
}

.story-content {
    max-width: 550px;
    padding: 60px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.story-year {
    display: block;
    font-size: 100px;
    font-weight: 900;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    margin-bottom: -15px;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}

.story-item:hover .story-year {
    color: rgba(37, 180, 74, 0.1);
    -webkit-text-stroke: 1px var(--primary);
}

.story-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.story-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .story-content {
        padding: 40px;
        max-width: 100%;
    }

    .story-overlay,
    .story-overlay.right-fade {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.3) 100%);
    }

    .story-item {
        align-items: flex-end;
    }

    .story-container.right-align {
        justify-content: flex-start;
    }

    .story-container {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .story-year {
        font-size: 70px;
    }

    .story-title {
        font-size: 32px;
    }

    .story-desc {
        font-size: 16px;
    }

    .story-content {
        padding: 30px;
    }
}




.hero-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}