:root {
    --primary-custom: #f18f10;
}

.banner-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;

        --toyota-blue: var(--primary-custom);
        --toyota-light-blue: #e1ebf5;
    
}

.banner-content__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-custom);
}

.banner-content__subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.banner-stats {
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.banner-content__buttons {
    margin-top: 2rem;
}

/* Primary button styles */
.btn-primary {
    background: var(--primary-custom) !important;
    color: white !important;
    border-color: var(--primary-custom) !important;
}

.btn-primary:hover {
    background: --primary-custom !important;
    border-color: --primary-custom !important;
}

/* Outline button styles */
.btn-outline-primary {
    color: var(--primary-custom) !important;
    border-color: var(--primary-custom) !important;
}

.btn-outline-primary:hover {
    background: var(--primary-custom) !important;
    color: white !important;
}

.banner-thumb img {
    max-height: 400px;
    width: auto;
    max-width: 120%;
    position: absolute;
    right: -80px; /* Adjust this to control how far it goes into the white section */
    top: 0;
    transform: translateY(-10%);
    z-index: 3;
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .banner-content__title {
        font-size: 2.5rem;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-stats {
        justify-content: center;
    }
}
#typewriter-title {
    color: var(--primary-custom);
}

#typewriter-title::after {
    content: '|';
    animation: blink 0.7s infinite;
    color: var(--primary-custom);
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* feature Custom Styles */
.feature-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-5px);
}

.rotate-icon {
    transition: transform 0.5s ease;
}
.feature-card:hover .rotate-icon {
    transform: rotate(15deg);
}

.parallax-img-container {
    overflow: hidden;
    border-radius: 1rem;
}

.floating-elements {
    position: relative;
}
.floating-icon {
    position: absolute;
    z-index: 10;
}
.floating-icon:nth-child(1) {
    top: 20%;
    right: 10%;
}
.floating-icon:nth-child(2) {
    bottom: 25%;
    left: 15%;
}

/* Tilt.js fallback */
[data-tilt] {
    transition: transform 0.5s ease;
}
[data-tilt]:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* vehicle style */
.vehicle-showcase-section {
    position: relative;
    overflow: hidden;
}

.vehicle-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.vehicle-media {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.vehicle-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.vehicle-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.vehicle-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vehicle-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vehicle-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
}

.vehicle-card:hover .vehicle-overlay {
    opacity: 0.9;
}

.vehicle-card:hover .vehicle-content {
    transform: translateY(0);
}

.vehicle-link:hover {
    color: var(--bs-primary);
}

.vehicle-link:hover svg {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .vehicle-image {
        height: 250px;
    }
    
    .vehicle-content {
        padding: 15px;
    }
    
    .vehicle-title {
        font-size: 1.25rem;
    }
}

/* testminotial section */
.testimonial-section {
    overflow: hidden;
}

.testimonial-shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.testimonial-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(var(--bs-warning-rgb), 0.05);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -50px;
    right: 20%;
    animation: float 12s infinite ease-in-out reverse;
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    margin: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.quote-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    top: -15px;
    left: -10px;
    color: var(--bs-primary);
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.author-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Thumbnail carousel */
.testimonial-thumb-carousel .thumb-item {
    padding: 0;
    margin: 0 5px;
}

.testimonial-thumb-carousel .thumb-inner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-thumb-carousel .thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-thumb-carousel .slick-center .thumb-inner {
    border-color: var(--primary-custom, #f18f10) !important;
    box-shadow: 0 0 0 4px rgba(241,143,16,0.15);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .testimonial-card {
        margin: 5px;
        padding: 20px !important;
    }
    
    .testimonial-message {
        font-size: 1rem;
    }
    
    .author-image img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-thumb-carousel img {
        width: 50px;
        height: 50px;
    }
}
/* mobile app section */
.mobile-app-section {
    padding: 120px 0;
    position: relative;
}

.app-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.app-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--bs-primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--bs-warning);
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--bs-success);
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

/* App features list */
.app-features-list {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-custom);
}

.feature-text {
    flex: 1;
}

/* App mockup */
.app-mockup-wrapper {
    position: relative;
    max-width: 100%;
    text-align: center;
}

.app-mockup {
    max-width: 80%;
    position: relative;
    z-index: 2;
}

.animate-float {
    animation: floatAnimation 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 3;
    bottom: 20%;
    right: 10%;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .mobile-app-section {
        padding: 80px 0;
    }
    
    .app-mockup {
        max-width: 60%;
        margin-bottom: 2rem;
    }
    
    .app-content {
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .app-mockup {
        max-width: 80%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
}

.video-mask {
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 2; */
    pointer-events: none;
}

.banner-section > .video-mask {
    z-index: 2;
}

.banner-section > *:not(.video-mask) {
    position: relative;
    z-index: 3;
}

.text-primary {
    color: var(--primary-custom) !important;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-primary {
    background: var(--primary-custom) !important;
}

.header.scrolled .nav-link:not(.active) {
    color: #000 !important;
}

.header .nav-link,
.header.scrolled .nav-link {
    color: #000 !important;
}

.header .nav-link.active,
.header.scrolled .nav-link.active {
    color: var(--primary-custom) !important;
}

.custom--dropdown__selected {
    color: var(--primary-custom) !important;
}
.header .nav-link,
.header.scrolled .nav-link {
    color: #000 !important;
}
.header .nav-link.active,
.header.scrolled .nav-link.active {
    color: var(--primary-custom) !important;
}
.logo-default {
    display: block;
}
.logo-scrolled {
    display: none;
}
.header.scrolled .logo-default {
    display: none;
}
.header.scrolled .logo-scrolled {
    display: block;
}
    .nav-link.inactive-scrolled {
        color: black !important;
    }
    
    /* For the dropdown items in the navbar */
    .custom--dropdown__selected.inactive-scrolled {
        color: black !important;
    }
    
    /* Ensure the navbar has a background when scrolled */
    .header.scrolled {
        background-color: white; /* or any color you prefer */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }