﻿/* Full Screen Hero Section with Background Image */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full screen height */
    background: url('/mnt/data/photo_2026-01-21_17-19-16.jpg') center center no-repeat;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 120deg, rgba(0, 0, 0, 0.92) 35%, rgba(0, 0, 0, 0.75) 60%, rgba(241, 196, 15, 0.08) 100% ), url("/images/background.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


.hero-content {
    position: relative;
    z-index: 5;
}

/* Hero Section Title and Description */
.mt-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffb200; /* Yellow */
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-out;
}

.mt-hero-subtitle {
    font-size: 1.25rem;
    color: #ccc; /* Gray */
    margin-bottom: 30px;
    animation: fadeInUp 2s ease-out;
}

/* Carousel Section Styling */
.carousel-item {
    background: rgba(0, 0, 0, 0.6); /* Darken background for carousel */
    padding: 40px 20px;
    color: #fff;
    transition: transform 0.5s ease-out;
    border-radius: 15px;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffb200; /* Yellow */
    margin-bottom: 20px;
}

.carousel-description {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ddd; /* Gray */
}

.carousel-image {
    width: 100%;
    border-radius: 8px;
    max-height: 350px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Carousel controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #ffb200; /* Yellow */
}

.carousel-control-prev, .carousel-control-next {
    background-color: transparent;
    border: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section .col-lg-6 {
        margin-bottom: 20px;
    }

    .carousel-item {
        padding: 20px;
    }
}





/* Left content Section */
.mt-hero-title {
    font-size: 3.5rem; /* Increase font size */
    font-weight: 700;
    color: #ffb200; /* Bright yellow */
    margin-bottom: 30px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Adding text shadow */
    animation: fadeInUp 1s ease-out;
}

.mt-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #e1e1e1; /* Light gray for contrast */
    margin-bottom: 40px;
    line-height: 1.8; /* Increase line height for better readability */
    animation: fadeInUp 1.5s ease-out;
}

/* CTA Buttons */
.btn {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #ffb200, #ff8f00);
    border: none;
    color: white;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #ff8f00, #ffb200);
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    }

.btn-outline-light {
    border: 2px solid #ffb200;
    color: #ffb200;
    background: transparent;
}

    .btn-outline-light:hover {
        background-color: #ffb200;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    }

/* Fade-in effect for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Custom Style for Feature Cards */
.feature-section-heading {
    font-size: 2.5rem;
    color: #fe6e9a;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    
}

.feature-card-dark {
    background-color: #2d2d2d;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

    .feature-card-dark:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.feature-emoji {
    font-size: 50px;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fe6e9a;
    margin-bottom: 10px;
}

.feature-card-description {
    font-size: 1rem;
    color: #ddd;
}

.feature-card-hover:hover .feature-emoji {
    transform: rotate(15deg);
}

/* Cards with Icon Styling */
.feature-card .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card .feature-title {
    color: #fe6e9a;
}

.feature-card .feature-description {
    color: #fff;
}

/* Hover Effects for Feature Card */
.feature-card:hover {
    background-color: #3a3a3a;
}















/* ===============================
   INVESTORS
   =============================== */

/* Section Styling */
.investors-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 40%, rgba(45, 45, 45, 0.8) 100%), url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
}

    .investors-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/* Title Styling */
.investors-eyebrow {
    font-size: 1rem;
    color: #f1c40f; /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.investors-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f; /* Yellow for title */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

    .investors-section h3:hover {
        color: #f39c12;
    }

/* Button Styling */
.btn-accent {
    background-color: #f1c40f;
    color: #121212;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-accent:hover,
    .btn-accent:focus {
        background-color: #f39c12;
        color: #fff;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
    }

.btn-secondary {
    background-color: #444;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-secondary:hover,
    .btn-secondary:focus {
        background-color: #666;
        color: #fff;
    }

/* Micro-line Styling */
.text-soft {
    color: #ccc; /* Light gray for text */
}

small {
    font-size: 0.875rem;
    color: #bbb; /* Muted text for conditions */
}

/* Responsive Design */
@media (max-width: 992px) {
    .investors-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .investors-section h3 {
            font-size: 1.8rem;
        }

    .btn-accent {
        padding: 15px 20px;
    }

    .btn-secondary {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .btn-accent, .btn-secondary {
        width: 100%;
        margin-top: 10px;
    }

    .investors-section h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

/* ===============================
   LAUNCH TIMELINE
   =============================== */

/* Timeline Section Styling */
.launch-timeline-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #2d2d2d;
    color: white;
}

/* Title Styling */
.launch-timeline-eyebrow {
    font-size: 1rem;
    color: #f1c40f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.launch-timeline-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 30px;
}

/* Timeline Item Styling */
.timeline-item {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

    .timeline-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    }

/* Timeline Icon Styling */
.timeline-icon {
    font-size: 3rem;
    color: #f1c40f;
    margin-bottom: 15px;
}

/* Text Styling */
h6 {
    font-size: 1.2rem;
    font-weight: 600;
}

.text-soft {
    color: #ccc;
}

small {
    font-size: 0.875rem;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .launch-timeline-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .timeline-item {
        padding: 30px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        width: 100%;
    }
}



/* ==============================
   MotorTrader - Launch Offers
   Prefix: mt-offers
   ============================== */

.mt-offers {
    position: relative;
    background: radial-gradient(1200px 600px at 20% 10%, rgba(243, 156, 18, 0.12), transparent 60%), radial-gradient(900px 500px at 90% 30%, rgba(241, 196, 15, 0.10), transparent 55%), linear-gradient(180deg, #0f0f0f 0%, #121212 60%, #0f0f0f 100%);
    color: #fff;
    overflow: hidden;
}

.mt-offers--pad {
    padding: 90px 0;
}

.mt-offers__eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.25);
    padding: 8px 14px;
    border-radius: 999px;
}

.mt-offers__title {
    margin-top: 14px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #f1c40f;
    text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.mt-offers__subtitle {
    margin: 12px auto 0;
    max-width: 820px;
    color: #cfcfcf;
    font-size: 1.05rem;
}

/* Card */
.mt-offers__card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    padding: 28px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .mt-offers__card:hover {
        transform: translateY(-10px);
        border-color: rgba(243,156,18,0.35);
        box-shadow: 0 24px 70px rgba(0,0,0,0.55);
    }

.mt-offers__cardTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.mt-offers__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.6rem;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.25);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

.mt-offers__badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #121212;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(243,156,18,0.25);
}

.mt-offers__cardTitle {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
}

.mt-offers__cardText {
    color: #d8d8d8;
    margin: 0 0 14px;
    line-height: 1.7;
}

    .mt-offers__cardText strong {
        color: #f1c40f;
        font-weight: 800;
    }

.mt-offers__fine {
    color: #a9a9a9;
    font-size: 0.9rem;
    margin: 0 0 18px;
}

/* Buttons */
.mt-offers__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mt-offers__btn--primary {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #121212;
    box-shadow: 0 14px 30px rgba(243,156,18,0.25);
    border: 1px solid rgba(243,156,18,0.35);
}

    .mt-offers__btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(243,156,18,0.35);
    }

.mt-offers__btn--ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
}

    .mt-offers__btn--ghost:hover {
        transform: translateY(-2px);
        border-color: rgba(243,156,18,0.35);
        box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    }

/* Strip */
.mt-offers__strip {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
}

.mt-offers__stripText {
    color: #d7d7d7;
}

    .mt-offers__stripText strong {
        color: #f1c40f;
    }

.mt-offers__stripBtn {
    white-space: nowrap;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 16px;
    border-radius: 999px;
    color: #121212;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border: 1px solid rgba(243,156,18,0.35);
    box-shadow: 0 14px 30px rgba(243,156,18,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .mt-offers__stripBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(243,156,18,0.33);
    }

/* Responsive */
@media (max-width: 768px) {
    .mt-offers--pad {
        padding: 70px 0;
    }

    .mt-offers__strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .mt-offers__stripBtn {
        width: 100%;
    }
}
