﻿html {
    scroll-behavior: smooth;
}



.car-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    direction: ltr !important; /* ✅ Added line */
}

#movingCar {
    position: absolute;
    width: 80px;
    transition: transform 0.1s linear;
    transform-origin: center center;
    z-index: 20;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

#smokeContainer {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
    direction: ltr !important; /* ✅ Added line */
}

.smoke {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.6) 0%, transparent 70%);
    opacity: 0.6;
    border-radius: 50%;
    animation: smokeFade 1.5s forwards ease-out;
}


@keyframes smokeFade {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.main-sidebar {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* vertical center */
    align-items: center !important; /* horizontal center */
    height: 100% !important; /* ensure full height */
}

.main-menu-container {
    display: flex !important;
    justify-content: center !important; /* horizontal center */
    align-items: center !important; /* vertical center */
    height: 100% !important;
}

    .main-menu-container.nav {
        align-items: center !important;
    }

.main-menu .side-menu__item {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 10px !important;
    border-radius: 5px !important;
}

.footer {
    margin: 0;
    padding: 0;
}

    .footer p {
        text-align: center;
    }

.left-image {
    background-image: url('../../assets/images/homeBG.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full viewport height */
    border-radius: 15px;
    box-sizing: border-box;
}

.site-main-div {
    background: url('../../assets/images/homeBG.jpg') center center / cover no-repeat;
    min-height: 552px;
    margin-top: 50px !important;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* full width */
    box-sizing: border-box;
}

.site-content-div {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.1);
    width: 70%; /* desktop default */
    max-width: 900px; /* limit width on large screens */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.site-content-div-inside {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .site-content-div {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .site-content-div {
        width: 95%;
        padding: 15px;
    }

    .site-main-div {
        padding: 50px 10px;
    }
}

@media (max-width: 576px) {
    .site-content-div {
        width: 100%;
        padding: 10px;
    }

    .site-main-div {
        padding: 30px 30px;
    }
}


.site-main-div-subscribe {
    min-height: 552px;
    margin-top: 50px !important;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* full width */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .site-content-div {
        width: 95%;
        padding: 15px;
    }

    .site-main-div-subscribe {
        padding: 50px 10px;
    }
}

@media (max-width: 576px) {
    .site-content-div {
        width: 100%;
        padding: 10px;
    }

    .site-main-div-subscribe {
        padding: 30px 30px;
    }
}

.site-subscribe-div {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.1);
    width: 90%; /* desktop default */
    max-width: 1200px; /* limit width on large screens */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.site-subscribe-div-inside {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .site-subscribe-div {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .site-subscribe-div {
        width: 95%;
        padding: 15px;
    }

    .site-main-div {
        padding: 50px 10px;
    }
}

@media (max-width: 576px) {
    .site-subscribe-div {
        width: 100%;
        padding: 10px;
    }

    .site-main-div {
        padding: 30px 30px;
    }
}

.pricing-div {
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.font-button-large {
    font-size: 16px !important;
}

.font-large {
    font-size: 18px !important;
}

.font-medium {
    font-size: 16px !important;
}

.footer-wrapper {
    position: relative;
    width: 100%;
}
/* SVG height matches your desired curve size */
.footer-svg {
    display: block;
    width: 100%;
    height: 350px;
}

/* place overlay where you want inside the SVG area */
/* adjust 'top' to position the overlay vertically inside the curve */
.footer-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 110px; /* <-- tweak this so content sits inside the curved area */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* allow clicks on buttons/dropdowns */
    z-index: 2;
    padding-top: 175px !important;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
}

.feature-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

    .feature-gallery img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

        .feature-gallery img:hover {
            transform: scale(2.2);
            opacity: 1;
            z-index: 5;
        }


.container-content-div {
    overflow: hidden;
    width: 70%; /* desktop default */
    max-width: 900px; /* limit width on large screens */
    padding: 20px;
    box-sizing: border-box;
}

.otp-input {
    text-align: center;
    font-size: 22px;
    margin: 5px;
    border-radius: 8px;
}

/* Mobile (small screens) */
@media (max-width: 576px) {
    .otp-input {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 992px) {
    .otp-input {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

/* Desktops (large screens) */
@media (min-width: 993px) {
    .otp-input {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


.modern-dashed-border {
    border-bottom: 1.5px dashed rgba(0, 0, 0, 0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
   
}

    .modern-dashed-border:hover {
        border-color: rgba(0, 0, 0, 0.6);
    }

.terms-container ol {
    counter-reset: item;
    margin: 0 0 0 20px; /* left margin for LTR */
    padding-left: 20px;
}

/* RTL adjustments */
.terms-container[dir="rtl"] ol {
    margin: 0 20px 0 0; /* right margin instead of left */
    padding-right: 20px; /* push numbers inside */
}

/* OL list items */
.terms-container ol > li {
    display: block;
    position: relative;
    text-align: @(If(CultureHelper.GetCulture() = "en-US", "right", "left"));
}

/* OL numbers */
.terms-container[dir="ltr"] ol > li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    position: absolute;
    left: -2em;
}

.terms-container[dir="rtl"] ol > li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    position: absolute;
    right: -2em;
}

/* UL bullets */
.terms-container ul {
    list-style-type: disc !important;
    margin-left: 25px;
    margin-right: 0;
    padding-left: 20px;
}

.terms-container[dir="rtl"] ul {
    margin-left: 0;
    margin-right: 25px;
    padding-right: 20px;
}

.modern-dashed-border-full {
    border: 1.5px dashed rgba(0, 0, 0, 0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
}

    .modern-dashed-border-full:hover {
        border-color: rgba(0, 0, 0, 0.6);
    }

.modern-dashed-border-white {
    border-bottom: 1.5px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
}

    .modern-dashed-border-white:hover {
        border-color: rgba(255, 255, 255, 0.6);
    }

.subscribe-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    /* Radial gradient */
    background: radial-gradient( ellipse at calc(50% + 150px) 50%, /* start at card's middle-right (adjust 150px as needed) */
    rgba(88, 88, 88, 0.25) 0%, /* strong blue at center */
    rgba(88, 88, 88, 0.15) 25%, /* mid fade */
    rgba(88, 88, 88, 0) 50%, /* lighter fade */
    rgba(255, 255, 255, 0) 100% /* transparent at edges */
    );
}

@keyframes fadeEffect {
    0%, 100% {
        opacity: 1; /* Fully visible */
    }

    50% {
        opacity: 0.3; /* 70% transparent */
    }
}

.cloud-background {
    position: relative;
    overflow: hidden; /* keeps stars inside the box */
    height: 100%;
    width: 100%;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: twinkle 1.5s infinite;
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}


.animated-border {
    position: relative; /* parent must be relative */
    border: none; /* hide the original border */
    border-radius: 5px;
}

    .animated-border::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2.5px dashed rgba(220, 53, 69, 0.5);
        border-radius: 5px;
        pointer-events: none; /* doesn’t block input */
        box-sizing: border-box;
        animation: dash-rotate 1s linear infinite;
    }

.animated-border {
    border: 2.5px dashed rgba(220, 53, 69, 0.5);
    transition: border-color 0.3s ease;
    border-radius: 5px;
}

