/* ----------------------------- */
/* ---------- BODY ------------- */
/* ----------------------------- */

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #060E22;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ----------------------------- */
/* -------HEADER SECTION ------- */
/* ----------------------------- */

.header-bg {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 8px;

}




/* Glass Navigation Box */
.nav-wrapper {
    max-width: 1000px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Navbar Links */
.nav-link {
    font-size: 19px;
    font-weight: 500;
    color: #f5f5f5 !important;
}

.nav-link:hover {
    color: #00adff !important;
}

/* Logo size */
.logo-img {
    height: 30px;
}

/* Toggler */
.navbar-toggler-icon {
    filter: invert(1);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .nav-wrapper {
        padding: 16px 20px;
    }

    .header-margin {
        margin-top: 0 !important;
        /* same as mt-4 */
    }

    .navbar-nav {
        margin-top: 15px;
        text-align: left;
    }

    .nav-item {
        margin-bottom: 8px;
    }

 
}

/* ----------------------------- */
/* -------HEADER SECTION ------- */
/* ----------------------------- */

.hero-section {
 background: url('../images/abstract_lines.png') no-repeat center/cover;
    color: white;
    min-height: 95vh;
    background-size: cover;
    background-position: center;
}

.middle-center {
    margin-top: 8rem;
}

/* Title Styling */
.hero-title {
    margin-top: 12rem;
    font-size: 52px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, #42A0FF 0%, #6de68d 50%, #6CE0A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    display: inline-block;
    font-size: 62px;
    /* Slightly bigger than main title */
}

.hero-title span {
    color: #3CE0A0;
}

.hero-subtext {
    font-size: 21px;
    opacity: 0.9;
}

/* RIGHT IMAGE (Only Dashboard Now) */
.hero-images {
    min-height: 450px;
}

.hero-dashboard-img {
    position: absolute;
    top: 22%;
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-images {
        min-height: 320px;
    }

    .hero-dashboard-img {
        width: 100%;
        right: 0;
        top: 28%;
    }

    /* Title Styling */
    .hero-title {
        margin-top: 0px;

    }

}

/* BUS IMAGE DEFAULT (Large Screens) */
.hero-bus-img {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30%;
    max-width: 600px;
}

/* EXTRA LARGE (between 1600px–1900px) */
@media (max-width: 1900px) {
    .hero-bus-img {
        top: 45%;
        width: 30%;
    }
}

/* LARGE LAPTOP (1300px–1600px) */
@media (max-width: 1600px) {
    .hero-bus-img {
        top: 49%;
        width: 30%;
    }

    .hero-section {
        min-height: 75vh;
    }

    .middle-center {
        margin-top: 7rem;
    }
}

/* MEDIUM DESKTOP / SMALL LAPTOP (1100px–1300px) */
@media (max-width: 1300px) {
    .hero-bus-img {
        top: 50%;
        width: 30%;
    }

    .hero-title {
        margin-top: 9rem;
    }

    .hero-section {
        min-height: 95vh;
    }

    .middle-center {
        margin-top: 6rem;
    }

}

/* TABLET LANDSCAPE */
@media (max-width: 1024px) {
    .hero-bus-img {
       top: 86%;
        width: 49%;
    }

    .hero-title {
        margin-top: 0px;

    }

}

@media (min-width: 670px) and (max-width: 1024px) {
    .middle-center {
        margin-top: 17rem;
    }
}

/* TABLET PORTRAIT + MOBILE */
@media (max-width: 700px) {
    .hero-bus-img {
        position: relative;
        top: -50px;
        ;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }
}

/* TEXT FADE-IN ANIMATION (premium EV style) */
.text-animate {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

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

/* BUS ANIMATION (unchanged) */
.bus-animate {
    animation: busFloat 4s ease-in-out infinite;
}

@keyframes busFloat {
    0% {
        transform: translateY(0);
    }

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

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

/* ----------------------------- */
/* DIGITAL TWIN SYSTEMS SECTION  */
/* ----------------------------- */

.section-subtitle {
    font-size: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;
background: linear-gradient(90deg, #3DAAFF -1.26%, #70EA83 80.89%);
    /* Gradient Text */
    /* background: linear-gradient(90deg, #3DAAFF -2.26%, #70EA83 127.89%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.section-title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* RESPONSIVE GRID CONTAINER */
.dt-responsive-grid {
    display: grid;
    gap: 20px;
    position: relative;
}

/* MOBILE: 1 column (1 card per row) */
.dt-responsive-grid {
    grid-template-columns: 1fr;
}

/* Center Card Wrapper */
.center-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .section-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .dt-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .center-card-wrapper {
        grid-column: span 2;
        padding: 20px 0;
    }
}

/* Desktop: 3x3 grid with center */
@media (min-width: 992px) {
    .section-subtitle {
        font-size: 21px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .dt-responsive-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Position cards in 3x3 grid */
    .dt-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .dt-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .dt-card:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }

    .dt-card:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .dt-card:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }

    .dt-card:nth-child(7) {
        grid-column: 1;
        grid-row: 3;
    }

    .dt-card:nth-child(8) {
        grid-column: 2;
        grid-row: 3;
    }

    .dt-card:nth-child(9) {
        grid-column: 3;
        grid-row: 3;
    }

    .center-card-wrapper {
        grid-column: 2;
        grid-row: 2;
        padding: 0;
    }
}

.dt-card h5 {
    color: white;
    font-size: 22px;
    margin: 8px 0 15px;
    font-weight: 500;
}

.dt-card p {
    color: #b7c0cd;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}



/* CENTER EVOX CARD */
.center-card {
    width: 120px;
    height: 120px;
    background: #0B152B;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #304C76;
    position: relative;
    transition: all 0.3s ease;
}

.center-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(79, 164, 204, 0.6) !important;
}

.evox-icon {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(60, 224, 168, 0.5));
}

/* Desktop Connector Lines */
@media (min-width: 992px) {

    /* Horizontal lines from center */
    .center-card::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -155px;
        width: 155px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(60, 224, 168, 0.3));
    }

    .center-card::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -155px;
        width: 155px;
        height: 1px;
        background: linear-gradient(90deg, rgba(60, 224, 168, 0.3), transparent);
    }

    /* Vertical lines from top row to center */
    .dt-card:nth-child(2)::after {
        content: "";
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 45px;
        background: linear-gradient(180deg, rgba(60, 224, 168, 0.3), transparent);
    }

    /* Vertical lines from center to bottom row */
    .dt-card:nth-child(4)::before,
    .dt-card:nth-child(6)::before {
        content: "";
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 45px;
        background: linear-gradient(0deg, rgba(60, 224, 168, 0.3), transparent);
    }

    .dt-card:nth-child(7)::before,
    .dt-card:nth-child(8)::before,
    .dt-card:nth-child(9)::before {
        content: "";
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 45px;
        background: linear-gradient(0deg, rgba(60, 224, 168, 0.3), transparent);
    }
}

/* Tablet Size Adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    .dt-card {
        min-height: 200px;
        padding: 28px 24px;
    }

    .center-card {
        width: 140px;
        height: 140px;
    }

    .evox-icon {
        width: 60px;
    }
}

/* Desktop Size Adjustments */
@media (min-width: 992px) {
    .dt-card {
        min-height: 220px;
        padding: 30px;
    }

    .center-card {
        width: 160px;
        height: 160px;
    }

    .evox-icon {
        width: 70px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .dt-card {
        min-height: 221px;
        padding: 17px 17px;
    }

    .center-card {
        width: 170px;
        height: 170px;
    }

    .evox-icon {
        width: 75px;
    }
}

/* Mobile Size Adjustments */
@media (max-width: 767.98px) {
    .section-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .dt-card {
        min-height: 160px;
        padding: 20px 16px;
    }
    .center-card {
        width: 100px;
        height: 100px;
    }

    .evox-icon {
        width: 45px;
    }

    .dt-responsive-grid {
        gap: 15px;
    }
}

/* 0B152B */
.dt-card {
    background: linear-gradient(180deg, #11233D 0.23%, #0B152B 31.03%);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid #304C76;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 180px;
    height: 100%;
}


/* DESKTOP ICON STYLE (updated to match screenshot) */
.dt-icon {
    width: 58px;
    height: 58px;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 18px;

    /* NEW — Exact background like screenshot */
    background: linear-gradient(135deg,
            rgba(60, 224, 168, 0.22) 0%,
            /* soft green highlight top-left */
            rgba(15, 30, 55, 1) 18%,
            /* deep navy body */
            rgba(8, 18, 35, 1) 100%
            /* darker bottom-right */
        );

    /* NEW — clean border to match image */
    border: 1px solid rgba(60, 224, 168, 0.15);
    filter: drop-shadow(0 0 0px rgba(60, 224, 168, 0.35));
}

/* MOBILE — ICON SIZE 50px */
@media (max-width: 767.98px) {
    .dt-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
        border-radius: 16px;
    }
}

/* INITIAL STATE */
.fade-up,
.fade-in,
.fade-scale {
    opacity: 0;
    transform: scale(0.85);
    /* only scale */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    transform: scale(1);
}

.fade-scale {
    transform: scale(0.7);
}

/* ACTIVE SCROLL ANIMATION */
.animate {
    opacity: 1 !important;
    transform: scale(1) !important;
    /* only scale */
}

/* Hover Animation (move up only) */
.dt-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dt-card:hover {

    border-color: #4fa4cc !important;
    transform: translateY(-5px) !important;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(60, 224, 168, 0.3);
}


/* Center EVOX Pulse Animation */
.center-card img {
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.92;
    }

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


/* ----------------------------- */
/* QUOTE SECTION   */
/* ----------------------------- */
.quote-section {
    height: 280px;
    position: relative;
    color: white;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Faded EVOX Background Text */
.quote-section::after {
    content: "EVOX";
    position: absolute;
    font-size: 250px;
    font-weight: 800;
    /* font-family: 'Playfair Display', serif; */
    color: rgba(255, 255, 255, 0.03);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: 12px;
}

/* Quote Text */
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 5;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Text Glow Effect */
.quote-text::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(60, 224, 168, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    z-index: -1;
}

/* Quote Animation - initial state */
.quote-animate {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 1.2s ease-out;
}

/* When visible */
.quote-animate.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Optional Glow Effect (enable if you want) */
.quote-glow {
    text-shadow: 0 0 12px rgba(0, 255, 200, 0.5),
        0 0 24px rgba(0, 255, 200, 0.35);
}

/* ----------------------------- */
/* INSIGHTS SECTION - CARDS      */
/* ----------------------------- */
/* List styling */
.insight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    /* text stays clean left aligned */
}
.protect-img {
    -webkit-user-drag: none;
    user-drag: none;
}


.insight-list li {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
    line-height: 35px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}



.icon {
    width: 11px;
    height: 11px;
    margin-top: 2px;
}

.insights-section {
    color: white;
    background: transparent;
}


/* Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.insight-card {
    border: 1px solid #304C76;
    border-radius: 18px;
    background: linear-gradient(180deg, #11233D 0.23%, #0B152B 31.03%);
    /* background: rgba(255, 255, 255, 0.02); */
    backdrop-filter: blur(8px);
    padding: 30px 25px;
    margin: 20px auto;
    width: 90%;
    max-width: 1100px;
    transition: all 0.3s ease;

    /* 👉 NEW HEIGHT INCREASE */
    min-height: 420px;
    /* adjust number if you want more height */
}


.insight-card:hover {
    border-color: #4fa4cc !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(60, 224, 168, 0.3);
}

/* Remove margin from last card */
.insight-card:last-child {
    margin-bottom: 0;
}

/* List styling */
.insight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}


/* Images */
.bus-img,
.dash-img {
    max-width: 85%;
    filter: drop-shadow(0px 10px 35px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.bus-img:hover,
.dash-img:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

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

    .insight-list li {
        font-size: 15px;
    }

    .bus-img,
    .dash-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .insight-list li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .insight-list li::before {
        top: 5px;
    }
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------- */
/* EXPECTED OUTCOMES SECTION     */
/* ----------------------------- */

.outcomes-section {
    color: #fff;
    font-family: "Inter", "SF Pro Display", sans-serif;
}

/* Card */
.outcome-card {
    background: linear-gradient(180deg, #11233D 0.23%, #0B152B 31.03%);
    /* background: rgba(255, 255, 255, 0.04); */
    border: 1px solid #304C76;
    border-radius: 14px;
    padding: 22px 22px;
    transition: 0.3s ease;
    min-height: 90px;
    /* keeps uniform height */
}

/* Hover */
.outcome-card:hover {
    border-color: #4fa4cc !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(60, 224, 168, 0.3);
}

/* Icon */
.outcome-icon img {
    width: 40px;
    height: 40px;
    margin-right: 14px;
    object-fit: contain;
}

/* Text */
.outcome-text {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    text-align: left;
}


.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------- */
/* CONTACT-SECTION SECTION     */
/* ----------------------------- */

.contact-section {
    padding: 100px 0;
    color: #fff;
}

/* Top Subtitle */
.contact-subtitle {
    font-size: 18px;
    color: #3CE0A8;
    margin-bottom: 10px;
}

/* Main Title */
.contact-title {
    font-size: 42px;
    font-weight: 700;
}

/* Description */
.contact-text {
    font-size: 20px;
    font-weight: 400;
    color: #dbe4ee;
    margin-bottom: 35px;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #304C76;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

/* Button Hover */
.contact-btn:hover {
    border-color: #3dabff;
    box-shadow: 0 0 15px rgba(60, 224, 168, 0.4);
    color: #3dabff;
}

/* ----------------------------- */
/* MOCKUP SECTION     */
/* ----------------------------- */

.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.9s ease-out;
}

.fade-scale.show {
    opacity: 1;
    transform: scale(1);
}

/* thin horizontal divider below (glowy line as in screenshot) */
.mockup-divider {
    width: 86%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(60, 224, 168, 0.16), rgba(255, 255, 255, 0.04));
    box-shadow: 0 2px 10px rgba(6, 12, 20, 0.6);
    border-radius: 2px;
    opacity: 0.9;
}

/* ----------------------------- */
/* FOOTER SECTION */
/* ----------------------------- */

.footer-section {
    position: relative;
    overflow: hidden;
}

/* Watermark image */
.footer-watermark {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    opacity: 0.9;
    padding: 0px 35px;
    pointer-events: none;
    z-index: 0;
}

/* Bring footer content above overlay */
.footer-section .container {
    position: relative;
    z-index: 2;
}

/* EVOX logo */
.footer-evox-logo {
    height: 32px;
}

/* -------------------------------- */
/* ROUND SOCIAL ICONS (Matches IMG) */
/* -------------------------------- */

.social-round {
    width: 35px;
    height: 35px;
    background: #ffffff;
    /* white circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-round i {
    font-size: 18px;
    color: #0B152B;
    /* dark navy */
    transition: 0.3s ease;
    margin-top: 2px;
}

/* Hover Brand Colors */
.social-round:hover i.fa-instagram {
    color: #E1306C;
    /* Instagram Pink */
}

.social-round:hover i.fa-facebook {
    color: #1877F2;
    /* Facebook Blue */
}

.social-round:hover i.fa-linkedin {
    color: #0A66C2;
    /* LinkedIn Blue */
}

/* Twitter (X) Hover Color */
/* Option 1: X Brand Black (official) */
.social-round:hover i.fa-x-twitter {
    color: #1DA1F2;
}


/* Slight scale on hover */
.social-round:hover {
    transform: scale(1.08);
}

/* Footer links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 400;
    transition: 0.3s;
}

.footer-links a:hover {
  color: #00adff !important;
}

/* Contact List */
.contact-list li {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.contact-list i {
    font-size: 18px;
    color: #ffffff;
    width: 25px;
    /* alignment fix */
}
/* Default: Desktop center alignment */
.contact-block {
    text-align: center;
}

/* Mobile: Align left */
@media (max-width: 767px) {
    .contact-block {
        text-align: left;
        justify-content: flex-start !important;
    }
}
