.flexMain {
    display: flex;
    align-items: center
}

.flex1 {
    flex: 1
}

.flex2 {
    flex: 2
}

.flex3 {
    flex: 3
}

button.siteLink {
    margin-left: -5px;
    border: none;
    padding: 24px;
    display: inline-block;
    min-width: 115px;
    font-weight: 600;
}

.whiteLink {
    background: #fff;
}

.whiteLink:active {
    background: #000;
    color: #fff;
}

.blackLink {
    color: #fff;
    background: #232323;
    transition: all 300ms linear;
}

.blackLink:active {
    color: #000;
    background: #fff
}

#siteBrand {
    font-family: impact;
    letter-spacing: -1px;
    font-size: 32px;
    color: #252525;
    line-height: 1em;
}

#menuDrawer {
    background: #fff;
    position: fixed;
    height: 100vh;
    overflow: auto;
    z-index: 9999;
    /* Higher z-index */
    top: 0;
    left: 0;
    border-right: 1px solid #eaeaea;
    min-width: 25%;
    max-width: 320px;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 200ms linear;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    /* Add shadow for better visibility */
}


.drawMenu>#menuDrawer {
    transform: none;
}

.drawMenu>#mainNavigation {
    transform: translateX(25%);
}

.fa-times {
    cursor: pointer;
    padding: 10px;
    font-size: 1.5rem;
    color: #444;
}

a.nav-menu-item:hover {
    margin-left: 0;
    /* Remove previous margin */
    border-left: 10px solid black;
    padding-left: 22px;
    /* Compensate for border */
}

a.nav-menu-item {
    transition: border 200ms linear;
    text-decoration: none;
    display: block;
    padding: 18px;
    padding-left: 32px;
    border-bottom: 1px solid #eaeaea;
    font-weight: bold;
    color: #343434
}

select.noStyle {
    border: none;
    outline: none
}

.logo_sz {
    width: 180px;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.6em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}


:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
}


.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: bottom;
    z-index: -1;
    filter: brightness(0.5);
    transform: scale(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.content-wrapper {

    /* background: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.5s ease; */
}

.content-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.text-content {
    padding: 60px;
    color: white;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-custom {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-custom:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.6);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-custom:hover::before {
    left: 100%;
}

.image-content {
    height: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.image-content img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-item.active .image-content img {
    transform: scale(1);
}

.carousel-item:not(.active) .image-content img {
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.content-wrapper:hover~.carousel-control-prev,
.content-wrapper:hover~.carousel-control-next,
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.animated-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.carousel-item.active .animated-text {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .animated-text:nth-child(1) {
    transition-delay: 0.2s;
}

.carousel-item.active .animated-text:nth-child(2) {
    transition-delay: 0.4s;
}

.carousel-item.active .animated-text:nth-child(3) {
    transition-delay: 0.6s;
}

/* Floating elements animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .text-content {
        padding: 40px;
    }

    .text-content h2 {
        font-size: 2rem;
    }
}

.cc_st {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    top: -80px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .text-content {
        order: 2;
        padding: 30px;
    }

    .image-content {
        order: 1;
        height: 300px;
    }

    .hero-section {
        height: auto;
        /* padding: 80px 0; */
        height: 100% !important;
    }

    .cc_st {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9;
        top: 20px;
    }
}

.stylish-charge {
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00f0ff, #7bff00, #00f0ff);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: chargeGlow 5s ease-in-out infinite;
    font-family: 'Orbitron', sans-serif;
}

@keyframes chargeGlow {
    0% {
        background-position: 0%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.stylish-white {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: #ffffff;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 15px rgba(0, 255, 255, 0.3);
    animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes softPulse {
    0% {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.6),
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(0, 255, 255, 0.3);
    }

    50% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.9),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(0, 255, 255, 0.5);
    }

    100% {
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.6),
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(0, 255, 255, 0.3);
    }
}

/* Custom CSS for the unique section */
.make_us_unique_section {
    background-color: #f8f9fa;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.make_us_unique_title {
    position: relative;
    display: inline-block;
}

.make_us_unique_title .text-gradient {
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.make_us_unique_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 2px;
}

.make_us_unique_card {
    transition: all 0.4s ease;
    background-color: white;
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.make_us_unique_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

.make_us_unique_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.make_us_unique_card:hover::before {
    transform: scaleX(1);
}

.make_us_unique_icon {
    transition: all 0.3s ease;
}

.make_us_unique_card:hover .make_us_unique_icon {
    transform: rotate(15deg) scale(1.1);
}

.make_us_unique_card_title {
    font-size: 1.5rem;
    color: #2c3e50;
}

.make_us_unique_card_text {
    color: #7f8c8d;
    line-height: 1.6;
}

.make_us_unique_card_footer {
    transition: all 0.3s ease;
}

.make_us_unique_bg_circle {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 123, 213, 0.1) 0%, rgba(58, 123, 213, 0) 70%);
    top: -250px;
    right: -250px;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.make_us_unique_bg_wave {
    height: 150px;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%233a7bd5' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .make_us_unique_title {
        font-size: 2.5rem !important;
    }

    .make_us_unique_card {
        margin-bottom: 1.5rem;
    }
}

/* Custom CSS for Services & Repair Section */
.services_repair_section {
    padding: 6rem 0;
    background-color: #121212;
}

.services_repair_background {
    background-image: url('../images/rpaire_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.services_repair_overlay {
    background: linear-gradient(135deg, rgba(0, 45, 114, 0.58) 0%, rgba(0, 0, 0, 0.11) 100%);
}

.services_repair_title {
    position: relative;
    line-height: 1.2;
}

.services_repair_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 2px;
}

.services_repair_subtitle {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.services_repair_subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
}

.services_repair_intro {
    font-size: 1.1rem;
    max-width: 90%;
}

.services_repair_button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.services_repair_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
}

.services_repair_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.services_repair_button:hover::before {
    left: 100%;
}

.services_repair_steps_wrapper {
    padding: 20px;
}

.services_repair_step_card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services_repair_step_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #3a7bd5, #00d2ff);
    transition: height 0.4s ease;
}

.services_repair_step_card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.services_repair_step_card:hover::before {
    height: 100%;
}

.services_repair_step_number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.services_repair_step_card:hover .services_repair_step_number {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(58, 123, 213, 0.5);
}

.services_repair_step_title {
    font-size: 1.2rem;
}

.services_repair_step_text {
    font-size: 0.95rem;
}

/* Animated elements */
.services_repair_gear {
    top: 20%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.services_repair_dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    bottom: -50px;
    left: -50px;
    opacity: 0.5;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services_repair_section {
        padding: 4rem 0;
    }

    .services_repair_title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services_repair_title {
        font-size: 2rem;
    }

    .services_repair_subtitle {
        font-size: 1.2rem;
    }

    .services_repair_step_number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .services_repair_step_title {
        font-size: 1.1rem;
    }

    .services_repair_step_text {
        font-size: 0.9rem;
    }
}

/* Custom CSS for EV Models Section */
.ev_models_section {
    background-color: #f8f9fa;
    padding: 6rem 0;
    position: relative;
}

.ev_models_heading {
    position: relative;
    display: inline-block;
}

.ev_models_heading .text-gradient {
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ev_models_heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 2px;
}

.ev_models_subheading {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
}

.ev_models_filter_btn {
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}

.ev_models_filter_btn.active {
    background-color: #3a7bd5;
    color: white !important;
    border-color: #3a7bd5 !important;
}

.ev_models_filter_btn:not(.active):hover {
    background-color: rgba(58, 123, 213, 0.1);
}

.ev_models_card {
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px !important;
    overflow: hidden;
}

.ev_models_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ev_models_card_img {
    /* height: 220px; */
    background-color: #f1f3f5;
}

.ev_models_card_img img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.5s ease;
}

.ev_models_card:hover .ev_models_card_img img {
    transform: scale(1.05);
}

.ev_models_card_overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ev_models_card:hover .ev_models_card_overlay {
    opacity: 1;
}

.ev_models_card_badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px !important;
    z-index: 2;
    color: white;
}

.ev_models_card_title {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 700;
}

.ev_models_card_price {
    font-weight: 700;
    font-size: 0.9rem;
}

.ev_models_card_features li {
    font-size: 0.9rem;
    color: #495057;
}

.ev_models_card_btn {
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.ev_models_card_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.ev_models_card_btn:hover::before {
    left: 100%;
}

.ev_models_card_compare {
    transition: all 0.3s ease;
    font-weight: 600;
}

.ev_models_card_compare:hover {
    background-color: rgba(58, 123, 213, 0.1);
}

/* Animated background circles */
.ev_models_bg_circles {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.ev_models_bg_circle {
    background: radial-gradient(circle, rgba(58, 123, 213, 0.1) 0%, rgba(58, 123, 213, 0) 70%);
    animation: float 15s infinite linear;
}

.ev_models_bg_circle:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.ev_models_bg_circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.ev_models_bg_circle:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: 150px;
    left: 200px;
    animation-delay: 4s;
    animation-duration: 18s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Filter animation */
.ev_models_item {
    transition: all 0.5s ease;
}

.ev_models_item.hide {
    opacity: 0;
    transform: scale(0.9);
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ev_models_section {
        padding: 4rem 0;
    }

    .ev_models_card_img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .ev_models_heading {
        font-size: 2.5rem;
    }

    .ev_models_subheading {
        font-size: 1rem;
    }

    .ev_models_filter_btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .ev_models_card_title {
        font-size: 1.2rem;
    }

    .ev_models_card_features li {
        font-size: 0.85rem;
    }
}

/* Testimonials Section - Electric Style */
.testimonials_lightning_zone {
    background: linear-gradient(135deg, #f5f9ff 0%, #e3eeff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials_lightning_zone::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a8ff, #00ffaa, #00a8ff);
    background-size: 200% 200%;
    animation: electric_pulse 3s ease infinite;
}

.testimonials_power_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials_electric_title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #003366;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0066cc, #00ccaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials_spark_text {
    text-align: center;
    color: #556677;
    font-size: 1.2rem;
    margin-bottom: 50px;
    position: relative;
}

.testimonials_spark_text::after {
    content: "⚡";
    position: absolute;
    right: 48%;
    bottom: -25px;
    font-size: 1.5rem;
    animation: spark_jump 2s ease infinite;
}

.testimonials_current_flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.testimonial_bolt_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 120, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial_bolt_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 120, 255, 0.2);
}

.bolt_avatar_wrap {
    position: relative;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #00a8ff 0%, #00ffaa 100%);
}

.spark_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.voltage_badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #003366;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.charge_content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amp_rating {
    margin-bottom: 15px;
    color: #ffcc00;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.current_text {
    color: #445566;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.rider_name {
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

.battery_divider {
    height: 2px;
    background: linear-gradient(90deg, #00a8ff, #00ffaa);
    margin: 15px 0;
    opacity: 0.5;
}

.ride_stats {
    font-size: 0.8rem;
    color: #778899;
    display: flex;
    justify-content: space-between;
}

.testimonials_charge_cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.spark_button {
    background: linear-gradient(90deg, #0066cc, #00ccaa);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 120, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spark_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.6);
}

.spark_button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.spark_button:hover::after {
    left: 100%;
}

.energy_pulse {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.pulse_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00a8ff;
    opacity: 0.7;
}

.dot_1 {
    animation: pulse 1.5s infinite;
}

.dot_2 {
    animation: pulse 1.5s infinite 0.5s;
}

.dot_3 {
    animation: pulse 1.5s infinite 1s;
}

/* Animations */
@keyframes electric_pulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spark_jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials_electric_title {
        font-size: 2.2rem;
    }

    .testimonials_current_flow {
        grid-template-columns: 1fr;
    }
}

/* Why Choose EV Section - Electric Style */
.why_choose_ev_powergrid {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f8ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why_choose_ev_powergrid::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a8ff, #00ffaa, #00a8ff);
    background-size: 200% 200%;
    animation: electric_flow 3s linear infinite;
}

.why_choose_ev_containment {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why_choose_ev_sparktitle {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #0066cc, #00ccaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.why_choose_ev_sparktitle::after {
    content: "⚡";
    position: absolute;
    right: 48%;
    bottom: -25px;
    font-size: 1.8rem;
    animation: spark_jump 2s ease infinite;
}

.why_choose_ev_subcharge {
    text-align: center;
    color: #556677;
    font-size: 1.3rem;
    margin-bottom: 60px;
}

.why_choose_ev_circuitboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why_choose_ev_cell {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 120, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.why_choose_ev_cell:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 120, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.3);
}

.why_choose_ev_cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.03) 0%, rgba(0, 255, 170, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why_choose_ev_cell:hover::before {
    opacity: 1;
}

.why_choose_ev_iconwrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f4ff 100%);
    margin-bottom: 25px;
    position: relative;
}

.why_choose_ev_icon {
    width: 36px;
    height: 36px;
    fill: #0066cc;
    z-index: 2;
}

.why_choose_ev_iconpulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(0, 255, 170, 0.1) 100%);
    animation: pulse_ring 3s ease infinite;
    opacity: 0;
}

.why_choose_ev_cell:hover .why_choose_ev_iconpulse {
    opacity: 1;
}

.why_choose_ev_benefittitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why_choose_ev_cell:hover .why_choose_ev_benefittitle {
    color: #0066cc;
}

.why_choose_ev_benefittext {
    color: #556677;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.why_choose_ev_learnmore {
    display: flex;
    align-items: center;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.why_choose_ev_learnmore svg {
    fill: #0066cc;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.why_choose_ev_learnmore:hover {
    opacity: 1;
}

.why_choose_ev_learnmore:hover svg {
    transform: translateX(5px);
}

/* Animations */
@keyframes electric_flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes pulse_ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes spark_jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why_choose_ev_sparktitle {
        font-size: 2.2rem;
    }

    .why_choose_ev_subcharge {
        font-size: 1.1rem;
    }

    .why_choose_ev_circuitboard {
        grid-template-columns: 1fr;
    }

    .why_choose_ev_sparktitle::after {
        right: 45%;
    }
}

.cta_container {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px auto;
    border-radius: 20px;
}

.cta_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1920x1080/?electric-motorcycle') no-repeat center/cover;
    opacity: 0.2;
    z-index: -1;
    animation: cta_background_zoom 12s ease-in-out infinite;
}

@keyframes cta_background_zoom {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.cta_title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: cta_title_fade 1.2s ease-out;
    z-index: 1;
    transition: all ease-in-out 0.3s;
}

.cta_title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #22d3ee, #3b82f6);
    border-radius: 3px;
    transition: width 0.4s ease, background 0.4s ease;
}

.cta_title:hover::before {
    width: 180px;
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
}

.cta_container:hover .cta_title {
    color: #22d3ee;
    transform: translateY(-8px);
    transition: all 0.4s ease;
}

@keyframes cta_title_fade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta_description {
    color: #d1d5db;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.6;
    opacity: 0;
    animation: cta_description_slide 1.2s ease-out 0.3s forwards;
}

.cta_description:hover {
    color: #e5e7eb;
    transition: color 0.3s ease;
}

@keyframes cta_description_slide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta_button {
    background: transparent;
    color: #22d3ee;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border: 3px solid #22d3ee;
    border-radius: 50rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    animation: cta_button_fade 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.cta_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #22d3ee;
    transition: left 0.5s ease;
    z-index: -1;
}

.cta_button:hover::before {
    left: 0;
}

.cta_button:hover {
    color: #0f172a;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.6);
}

@keyframes cta_button_fade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta_particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
    animation: cta_particle_drift 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes cta_particle_drift {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.7;
    }

    50% {
        transform: translate(10px, -20px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cta_container {
        min-height: 400px;
        padding: 4rem 1.5rem;
    }

    .cta_title {
        font-size: 2.5rem;
    }

    .cta_description {
        font-size: 1.2rem;
    }

    .cta_button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta_title {
        font-size: 2rem;
    }

    .cta_description {
        font-size: 1rem;
    }
}

.footer_container {
    background-color: black;
    color: #f5f5f5;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer_wave {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23121212" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23121212" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23121212"/></svg>');
    background-size: cover;
}

.footer_content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer_logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #00e676;
}

.footer_logo-icon {
    margin-right: 10px;
    font-size: 32px;
    color: #ffc400;
    animation: footer_pulse 2s infinite;
}

@keyframes footer_pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.footer_description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #aaa;
}

.footer_social-icons {
    display: flex;
    gap: 15px;
}

.footer_social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f5f5f5;
    transition: all 0.3s ease;
}

.footer_social-link:hover {
    background-color: #00e676;
    color: #121212;
    transform: translateY(-5px);
}

.footer_links-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer_links-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00e676, #ffc400);
}

.footer_links-list {
    list-style: none;
    padding: 0;
}

.footer_link-item {
    margin-bottom: 12px;
}

.footer_link {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer_link:hover {
    color: #00e676;
    padding-left: 8px;
}

.footer_link-icon {
    margin-right: 10px;
    font-size: 14px;
    color: aqua;
}

.footer_newsletter-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer_newsletter-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00e676, #ffc400);
}

.footer_newsletter-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #aaa;
}

.footer_newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.footer_newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.footer_newsletter-input::placeholder {
    color: #ccc;
}

.footer_newsletter-button {
    padding: 0 20px;
    background: linear-gradient(135deg, #00e676, #00c853);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #121212;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer_newsletter-button:hover {
    background: linear-gradient(135deg, #00c853, #00e676);
    transform: scale(1.05);
}

.footer_contact-info {
    margin-top: 20px;
}

.footer_contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #aaa;
}

.footer_contact-icon {
    margin-right: 15px;
    font-size: 18px;
    color: aqua;
}

.footer_bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 14px;
}

.footer_payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer_payment-icon {
    font-size: 24px;
    color: #777;
    transition: all 0.3s ease;
}

.footer_payment-icon:hover {
    color: #00e676;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer_content {
        grid-template-columns: 1fr;
    }

    .footer_logo-section {
        align-items: center;
        text-align: center;
    }

    .footer_social-icons {
        justify-content: center;
    }
}


.slider_inside_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider_inside_card button {
    width: 45%;
    margin-top: 15px;
}

/* Hero Section - About Page */
.about_page_hero {
    background: linear-gradient(135deg, #000428, #004e92);
    color: #fff;
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
}

.hero_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero_content {
    flex: 1;
    z-index: 2;
}

.hero_title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero_subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero_desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero_cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero_cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.hero_image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.bike_animation {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.bike_animation:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Background Effects */
.about_page_hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero_container {
        flex-direction: column;
        text-align: center;
    }

    .hero_title {
        font-size: 3.5rem;
    }

    .hero_subtitle {
        font-size: 1.5rem;
    }

    .hero_desc {
        max-width: 100%;
    }
}

/* Our Story Section */
.our_story_section {
    background: #f8f9fa;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.our_story_container {
    max-width: 1200px;
    margin: 0 auto;
}

.our_story_title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.our_story_subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

/* Timeline Styling */
.our_story_timeline {
    position: relative;
    padding-left: 50px;
}

.our_story_timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #3a7bd5, #00d2ff);
}

.timeline_item {
    position: relative;
    margin-bottom: 3rem;
    transition: all 0.4s ease;
}

.timeline_year {
    position: absolute;
    left: -70px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3a7bd5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 4px rgba(58, 123, 213, 0.2);
    transition: all 0.3s ease;
}

.timeline_content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #3a7bd5;
}

.timeline_heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline_desc {
    color: #666;
    line-height: 1.6;
}

/* Hover Effects */
.timeline_item:hover .timeline_year {
    transform: scale(1.1);
    background: #00d2ff;
    box-shadow: 0 0 0 6px rgba(0, 210, 255, 0.3);
}

.timeline_item:hover .timeline_content {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .our_story_timeline {
        padding-left: 30px;
    }

    .timeline_year {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .our_story_title {
        font-size: 2.5rem;
    }
}

/* Features/Benefits Section */
.features_benefits_section {
    background: #fff;
    padding: 6rem 2rem;
}

.features_benefits_container {
    max-width: 1200px;
    margin: 0 auto;
}

.features_benefits_header {
    text-align: center;
    margin-bottom: 4rem;
}

.features_benefits_title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features_benefits_subtitle {
    font-size: 1.2rem;
    color: #666;
}

.features_benefits_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature_card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(58, 123, 213, 0.2);
}

.feature_icon i {
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.feature_title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature_desc {
    color: #666;
    line-height: 1.6;
}

/* Hover Effects */
.feature_card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.15);
    border-color: rgba(58, 123, 213, 0.2);
}

.feature_card:hover .feature_icon {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.feature_card:hover .feature_icon i {
    transform: scale(1.2) rotate(10deg);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.icon_animation {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features_benefits_title {
        font-size: 2.5rem;
    }
}

.mv_section {
    background: linear-gradient(135deg, #081c4d 0%, #1e3fad 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mv_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mv_mission_block,
.mv_vision_block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 5rem 3rem;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.mv_mission_block {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff6bcb, #ffb86c) 1;
}

.mv_vision_block {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #6bc1ff, #68ff98) 1;
}

.mv_mission_block:hover,
.mv_vision_block:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mv_header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.mv_icon_circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6bcb, #ffb86c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 107, 203, 0.5);
}

.mv_vision_block .mv_icon_circle {
    background: linear-gradient(135deg, #6bc1ff, #68ff98);
    box-shadow: 0 0 20px rgba(107, 193, 255, 0.5);
}

.mv_icon_circle i {
    font-size: 28px;
    color: #fff;
}

.mv_title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff6bcb, #ffb86c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 107, 203, 0.5);
}

/* Override specifically for vision block */
.mv_vision_block .mv_title {
    background: linear-gradient(45deg, #6bc1ff, #68ff98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(107, 193, 255, 0.5);
}


.mv_text {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Core Values Styling */
.mv_core_values,
.mv_goals_timeline {
    padding-top: 2rem;
    position: relative;
}

.mv_values_title,
.mv_goals_title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.mv_values_title::after,
.mv_goals_title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #ff6bcb, #ffb86c);
    border-radius: 5px;
}

.mv_vision_block .mv_values_title::after,
.mv_vision_block .mv_goals_title::after {
    background: linear-gradient(90deg, #6bc1ff, #68ff98);
}

.mv_values_list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.mv_values_list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mv_values_list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.mv_values_list i {
    color: #ff6bcb;
    font-size: 1.2rem;
}

/* Goals Progress Circles */
.mv_goal_item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mv_goal_progress {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv_goal_progress svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.mv_goal_progress circle {
    fill: none;
    stroke: #eee;
    stroke-width: 8;
}

.mv_goal_progress .mv_progress_circle {
    stroke: url(#progressGradient);
    stroke-dasharray: 251.2;
    stroke-dashoffset: calc(251.2 - (251.2 * var(--progress)) / 100);
    transition: stroke-dashoffset 1.5s ease;
}

.mv_goal_number {
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.mv_goal_text {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Background Particles */
.mv_particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.mv_particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: anieffect 10s infinite linear;
}

@keyframes anieffect {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mv_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv_title {
        font-size: 2rem;
    }

    .mv_icon_circle {
        width: 50px;
        height: 50px;
    }

    .mv_icon_circle i {
        font-size: 20px;
    }
}

.contact_hero_wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, #0e5571 0%, #000 100%);
    overflow: hidden;
}

/* Background decorative elements */
.contact_hero_decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4v4H4V4H0V2h4V-2h2v4h4v2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Hero image container with parallax effect */
.contact_hero_image_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.3;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

/* Hero image */
.contact_hero_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero content container */
.contact_hero_content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

/* Hero title with gradient text */
.contact_hero_title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #dbeafe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Hero subtitle */
.contact_hero_subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero button with hover animation */
.contact_hero_button {
    padding: 14px 40px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact_hero_button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact_hero_wrapper {
        min-height: 500px;
    }

    .contact_hero_title {
        font-size: 2.5rem;
    }

    .contact_hero_subtitle {
        font-size: 1.1rem;
    }

    .contact_hero_content {
        padding: 80px 15px;
    }
}

@media (max-width: 480px) {
    .contact_hero_title {
        font-size: 2rem;
    }

    .contact_hero_button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Contact Details Section - Modern Style */
.contact_page_details_section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact_page_details_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/3364143/pattern-light.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.contact_page_details_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.contact_page_details_header {
    text-align: center;
    margin-bottom: 70px;
}

.contact_page_details_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact_page_details_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    border-radius: 2px;
}

.contact_page_details_subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Cards Grid */
.contact_page_details_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

/* Contact Card - Modern Style */
.contact_page_details_card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact_page_details_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #387dd6 0%, #02cefd 100%);
}

.contact_page_details_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact_page_details_icon-container {
    width: 80px;
    height: 80px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.contact_page_details_card:hover .contact_page_details_icon-container {
    background: linear-gradient(135deg, #387dd6 0%, #02cefd 100%);
    transform: scale(1.1);
}

.contact_page_details_icon {
    font-size: 2rem;
    color: #4361ee;
    transition: all 0.3s;
}

.contact_page_details_card:hover .contact_page_details_icon {
    color: white;
    transform: scale(1.1);
}

.contact_page_details_card_title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
    text-align: center;
}

.contact_page_details_info {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
}

.contact_page_details_info a {
    color: #4361ee;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
}

.contact_page_details_info a:hover {
    color: #3a56d4;
    text-decoration: underline;
}

.contact_page_details_button {
    display: block;
    width: max-content;
    margin: 0 auto;
    padding: 12px 30px;
    background: linear-gradient(135deg, #387dd6 0%, #02cefd 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.contact_page_details_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
    background: linear-gradient(135deg, #3a56d4 0%, #3f37c9 100%);
}

/* Map Section - Modern Style */
.contact_page_details_map-section {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact_page_details_map-header {
    padding: 20px;
    background: linear-gradient(135deg, #387dd6 0%, #02cefd 100%);
    color: white;
    display: flex;
    align-items: center;
}

.contact_page_details_map-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.contact_page_details_map-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact_page_details_map-container {
    height: 100%;
    position: relative;
}

.contact_page_details_map {
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating Contact Bubble */
.contact_page_details_floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.contact_page_details_floating-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.contact_page_details_floating-button:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(67, 97, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact_page_details_title {
        font-size: 2.4rem;
    }

    .contact_page_details_subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact_page_details_section {
        padding: 70px 20px;
    }

    .contact_page_details_title {
        font-size: 2rem;
    }

    .contact_page_details_grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .contact_page_details_map-container {
        height: 300px;
    }

    .contact_page_details_floating {
        bottom: 20px;
        right: 20px;
    }

    .contact_page_details_floating-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@keyframes TX9_FT350_gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Gradient Border Wrapper */
.TX9_FT350_img-border {
    position: relative;
    display: inline-block;
    padding: 6px;
    /* border thickness */
    border-radius: 20px;
    animation: TX9_FT350_electric-pulse4 2s infinite;
}

/* Image */
.TX9_FT350_img {
    display: block;
    border-radius: 16px;
    background: transparent;
}

/* YOUR gradient animation */
.TX9_FT350_gradient-bg {
    background: linear-gradient(270deg, #0d1b2a, #00ff7f, #26c6da, #1e3a8a);
    background-size: 600% 600%;
    animation: TX9_FT350_gradient 10s ease infinite;
}

@keyframes TX9_FT350_electric-pulse {

    0%,
    100% {
        box-shadow: 0 0 10px #00ff7f, 0 0 20px #26c6da, 0 0 30px #00ff7f;
    }

    50% {
        box-shadow: 0 0 15px #1e3a8a, 0 0 25px #1e3a8a, 0 0 40px #26c6da;
    }
}

/* Gradient movement */
@keyframes TX9_FT350_gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Electric pulse converted from box → border glow */
@keyframes TX9_FT350_electric-pulse4 {

    0%,
    100% {
        filter:
            drop-shadow(0 0 8px #00ff7f) drop-shadow(0 0 20px #26c6da) drop-shadow(0 0 30px #00ff7f);
    }

    50% {
        filter:
            drop-shadow(0 0 10px #1e3a8a) drop-shadow(0 0 25px #1e3a8a) drop-shadow(0 0 40px #26c6da);
    }
}


.TX9_FT350_electric-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.TX9_FT350_electric-hover:hover {
    transform: scale(1.06) translateY(-5px);
    animation: TX9_FT350_electric-pulse4 1.6s infinite;
}

.TX9_FT350_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.TX9_FT350_modal-content {
    background: linear-gradient(145deg, #0d1b2a, #1e3a8a);
    border: 2px solid #00ff7f;
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 85%;
    position: relative;
    animation: TX9_FT350_slide-in 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 50%;
}

@keyframes TX9_FT350_slide-in {
    from {
        opacity: 0;
        transform: translateY(-150px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.TX9_FT350_modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
    cursor: pointer;
    color: #00ff7f;
    transition: color 0.3s ease, transform 0.3s ease;
}

.TX9_FT350_modal-close:hover {
    color: #26c6da;
    transform: rotate(180deg);
}

.TX9_FT350_carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.TX9_FT350_carousel img {
    scroll-snap-align: start;
    flex: 0 0 28%;
    margin-right: 1rem;
    border-radius: 0.75rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 435px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* .TX9_FT350_carousel img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ff7f;
} */

.TX9_FT350_feature-card {
    background: linear-gradient(145deg, #1e3a8a, #0d1b2a);
    border: 1px solid #00ff7f;
    border-radius: 1.25rem;
    transition: all 0.4s ease;
    height: 100%;
}

.TX9_FT350_feature-card p {
    color: white;
}

.TX9_FT350_feature-card:hover {
    background: linear-gradient(145deg, #0d1b2a, #1e3a8a);
    border-color: #26c6da;
    transform: translateY(-8px);
}

::-webkit-scrollbar {
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0d1b2a;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #00ff7f;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #26c6da;
}

.TX9_FT350_text-glow {
    text-shadow: 0 0 8px #00ff7f, 0 0 16px #26c6da;
}

.TX9_FT350_icon-glow {
    filter: drop-shadow(0 0 8px #00ff7f);
}

/* Custom Bootstrap overrides to match Tailwind design */
.btn-green-400 {
    background-color: #00ff7f;
    color: #111827;
    border: none;
}

.btn-green-400:hover {
    background-color: #00e66b;
    color: #111827;
}

.btn-teal-500 {
    background-color: #26c6da;
    color: #111827;
    border: none;
}

.btn-teal-500:hover {
    background-color: #20b2c5;
    color: #111827;
}

.btn-blue-500 {
    background-color: #3b82f6;
    color: #111827;
    border: none;
}

.btn-blue-500:hover {
    background-color: #2a6ee5;
    color: #111827;
}

/* .bg-gray-900 {
            background-color: #111827;
        } */
.bg-gray-950 {
    background-color: #0d1b2a;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-green-300 {
    color: #86efac;
}

.text-green-400 {
    color: #00ff7f;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-semibold {
    font-weight: 600;
}

.font-extrabold {
    font-weight: 800;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-relaxed {
    line-height: 1.625;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

@keyframes book_demo_popup_gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.book_demo_popup_gradient-bg {
    background: linear-gradient(270deg, #0d1b2a, #00ff7f, #26c6da, #1e3a8a);
    background-size: 800% 800%;
    animation: book_demo_popup_gradient 12s ease infinite;
}

@keyframes book_demo_popup_glow {

    0%,
    100% {
        box-shadow: 0 0 10px #00ff7f, 0 0 20px #26c6da;
    }

    50% {
        box-shadow: 0 0 15px #1e3a8a, 0 0 30px #26c6da;
    }
}

.book_demo_popup_glow-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book_demo_popup_glow-hover:hover {
    transform: scale(1.05) translateY(-3px);
    animation: book_demo_popup_glow 1.5s infinite;
}

.book_demo_popup_modal {
    background: rgba(13, 27, 42, 0.97);
}

.book_demo_popup_modal-content {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e3a8a 100%);
    border: 2px solid #00ff7f;
    border-radius: 1.25rem;
    padding: 1.5rem;
    max-width: 500px;
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
    animation: book_demo_popup_fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes book_demo_popup_fade-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.book_demo_popup_modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.1), transparent 70%);
    pointer-events: none;
}

.book_demo_popup_modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.5rem;
    color: #00ff7f;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.book_demo_popup_modal-close:hover {
    color: #26c6da;
    transform: rotate(90deg);
}

.book_demo_popup_input {
    background: #0d1b2a;
    border: 1px solid #26c6da;
    color: #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    height: 2.25rem;
    transition: all 0.3s ease;
}

.book_demo_popup_input::placeholder {
    color: #94f0a3;
    opacity: 1;
}

.book_demo_popup_input:focus {
    background: #0d1b2a;
    border-color: #00ff7f;
    box-shadow: 0 0 10px #00ff7f;
    color: #e5e7eb;
}

.book_demo_popup_radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: #0d1b2a;
    border: 1px solid #26c6da;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book_demo_popup_radio input {
    margin-right: 0.5rem;
    accent-color: #00ff7f;
}

.book_demo_popup_radio:hover,
.book_demo_popup_radio input:checked+span {
    background: linear-gradient(135deg, #0d1b2a, #1e3a8a);
    border-color: #00ff7f;
    box-shadow: 0 0 10px #00ff7f;
}

.book_demo_popup_radio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book_demo_popup_radio:hover::after,
.book_demo_popup_radio input:checked+span::after {
    opacity: 1;
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d1b2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #00ff7f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #26c6da;
}

.book_demo_popup_text-glow {
    text-shadow: 0 0 8px #00ff7f, 0 0 16px #26c6da;
}

.book_demo_popup_icon-glow {
    filter: drop-shadow(0 0 8px #00ff7f);
}

/* Bootstrap overrides */
.btn-green-400 {
    background: linear-gradient(90deg, #00ff7f, #26c6da);
    color: #0d1b2a;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-green-400:hover {
    background: linear-gradient(90deg, #00e66b, #20b2c5);
    color: #0d1b2a;
}

.bg-gray-950 {
    background: #0d1b2a;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-green-300 {
    color: #86efac;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-semibold {
    font-weight: 600;
}

.font-extrabold {
    font-weight: 800;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Flatpickr custom styles */
.flatpickr-calendar {
    background: #0d1b2a;
    border: 1px solid #26c6da;
    border-radius: 0.5rem;
    color: #e5e7eb;
    font-size: 0.875rem;
}

.flatpickr-day.selected,
.flatpickr-day:hover {
    background: #00ff7f;
    border-color: #00ff7f;
    color: #0d1b2a;
}

.flatpickr-day {
    color: #e5e7eb;
}

.flatpickr-monthDropdown-months,
.flatpickr-current-month span.cur-month {
    color: #e5e7eb;
    font-size: 0.875rem;
}

.flatpickr-weekdays {
    background: linear-gradient(135deg, #0d1b2a, #1e3a8a);
}

.flatpickr-weekday {
    color: #e5e7eb;
    font-size: 0.75rem;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #00ff7f;
}

.become_dealer_hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.become_dealer_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.become_dealer_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.become_dealer_subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.become_dealer_cta {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.become_dealer_cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.become_dealer_cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.become_dealer_cta:hover:before {
    left: 100%;
}

.become_dealer_scroll_arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Floating elements animation */
.become_dealer_floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.become_dealer_floating:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: float_dealer 15s linear infinite;
}

.become_dealer_floating:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation: float_dealer 20s linear infinite reverse;
}

.become_dealer_floating:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation: float_dealer 12s linear infinite;
}

@keyframes float_dealer {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .become_dealer_title {
        font-size: 2.5rem;
    }

    .become_dealer_subtitle {
        font-size: 1.2rem;
    }

    .become_dealer_hero {
        background-attachment: scroll;
    }
}

.ev_dealer_section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ev_dealer_section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 70%);
    z-index: 0;
}

.ev_dealer_section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    z-index: 0;
}

.ev_dealer_header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.ev_dealer_title {
    font-size: 3.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.03em;
}

/* .ev_dealer_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 7px;
    background: linear-gradient(90deg, #14b8a6, #3b82f6);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(20, 184, 166, 0.3);
    animation: pulse 2s ease-in-out infinite;
} */

.ev_dealer_subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.ev_dealer_cards {
    position: relative;
    z-index: 1;
}

.ev_dealer_card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.ev_dealer_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #14b8a6;
}

.ev_dealer_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    transform: rotate(45deg);
}

.ev_dealer_card:hover::before {
    opacity: 1;
}

.ev_dealer_icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.7rem;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ev_dealer_card:hover .ev_dealer_icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.ev_dealer_card_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e40af;
}

.ev_dealer_card_text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.ev_dealer_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #14b8a6, #22d3ee);
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transform: rotate(-8deg);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev_dealer_card:hover .ev_dealer_badge {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(20, 184, 166, 0.4);
}

.ev_dealer_floating_icon {
    position: absolute;
    width: 90px;
    z-index: 0;
    opacity: 0.12;
    filter: blur(1.5px);
}

.ev_dealer_floating_icon:nth-child(1) {
    top: 8%;
    left: 2%;
    animation: floatEV1 12s ease-in-out infinite;
}

.ev_dealer_floating_icon:nth-child(2) {
    bottom: 8%;
    right: 2%;
    animation: floatEV2 14s ease-in-out infinite;
}

@keyframes floatEV1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(25px, -25px) rotate(8deg);
        opacity: 0.18;
    }
}

@keyframes floatEV2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-25px, 25px) rotate(-8deg);
        opacity: 0.18;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 1;
    }

    50% {
        transform: scaleX(1.1);
        opacity: 0.7;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ev_dealer_title {
        font-size: 2.8rem;
    }

    .ev_dealer_icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .ev_dealer_card_title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .ev_dealer_section {
        padding: 60px 0;
    }

    .ev_dealer_title {
        font-size: 2.2rem;
    }

    .ev_dealer_subtitle {
        font-size: 1.1rem;
    }

    .ev_dealer_floating_icon {
        display: none;
    }

    .ev_dealer_card {
        padding: 25px;
    }
}

.ev_dealer_form_section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ev_dealer_form_section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.25), transparent 70%);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

.ev_dealer_form_section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
    z-index: 0;
    animation: pulseGlow 10s ease-in-out infinite;
}

.ev_dealer_form_container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ev_dealer_form_container:hover {
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
    border: 3px solid #14b8a6;
    transform: scale(1.02);
}

.ev_dealer_form_header {
    text-align: center;
    margin-bottom: 50px;
}

.ev_dealer_form_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #14b8a6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ev_dealer_form_title::after {
   content: '';
  position: absolute;
  bottom: -12px;
  left: 33%;
  transform: translateX(-40%);
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
  animation: neonPulse 2.5s ease-in-out infinite;
  transform: translateX(-40%);
}

.ev_dealer_form_subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.8;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.ev_dealer_form_group {
    margin-bottom: 30px;
    position: relative;
}

.ev_dealer_form_group label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.05em;
}

.ev_dealer_form_group input,
textarea,
.ev_dealer_form_group select {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    color: #4b5563;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.ev_dealer_form_group input:focus,
.ev_dealer_form_group select:focus {
    outline: none;
    border-color: #14b8a6;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.4);
}

.ev_dealer_form_group input:valid,
.ev_dealer_form_group select:valid {
    border-color: #14b8a6;
    background: #ffffff;
}

.ev_dealer_form_group .form-icon {
    position: absolute;
    top: 50px;
    right: 20px;
    color: #14b8a6;
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ev_dealer_form_group input:focus+.form-icon,
.ev_dealer_form_group select:focus+.form-icon {
    transform: scale(1.2) rotate(5deg);
    color: #3b82f6;
}

.ev_dealer_form_button {
    background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 12px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ev_dealer_form_button:hover {
    background: linear-gradient(135deg, #0d9488, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.5);
}

.ev_dealer_form_button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.ev_dealer_form_button:hover::before {
    width: 400px;
    height: 400px;
}

.ev_dealer_floating_icon {
    position: absolute;
    width: 100px;
    z-index: 0;
    opacity: 0.08;
    filter: blur(2px);
}

.ev_dealer_floating_icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: orbitEV1 10s ease-in-out infinite;
}

.ev_dealer_floating_icon:nth-child(2) {
    bottom: 10%;
    right: 5%;
    animation: orbitEV2 12s ease-in-out infinite;
}

@keyframes orbitEV1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.08;
    }

    50% {
        transform: translate(30px, -30px) rotate(12deg);
        opacity: 0.15;
    }
}

@keyframes orbitEV2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.08;
    }

    50% {
        transform: translate(-30px, 30px) rotate(-12deg);
        opacity: 0.15;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.25;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
        transform: scaleX(1);
    }

    50% {
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.6);
        transform: scaleX(1.15);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ev_dealer_form_title {
        font-size: 2.6rem;
    }

    .ev_dealer_form_container {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .ev_dealer_form_section {
        padding: 70px 0;
    }

    .ev_dealer_form_title {
        font-size: 2.2rem;
    }

    .ev_dealer_form_subtitle {
        font-size: 1rem;
    }

    .ev_dealer_floating_icon {
        display: none;
    }

    .ev_dealer_form_container {
        padding: 25px;
    }

    .ev_dealer_form_button {
        font-size: 1rem;
        padding: 12px;
    }
}

.ev_dealer_section p {
    font-family: 'Orbitron', sans-serif !important;
}

.login_page {
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7)), url('../images/background-350-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login_page__card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.login_page__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.login_page__header {
    padding: 40px 30px 20px;
    text-align: center;
    position: relative;
}

.login_page__logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.login_page__title {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 2rem;
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.login_page__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.login_page__body {
    padding: 0 30px 30px;
}

.login_page__form_group {
    margin-bottom: 25px;
    position: relative;
}

.login_page__input {
    border-radius: 12px;
    padding: 15px 20px 15px 50px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s;
    height: 50px;
}

.login_page__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login_page__input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(58, 123, 213, 0.25);
    color: white;
}

.login_page__input_icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.login_page__password_toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.login_page__password_toggle:hover {
    color: white;
}

.login_page__btn {
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    height: 50px;
}

.login_page__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #00c8f5, #3571c7);
}

.login_page__footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.login_page__link {
    color: #00d2ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.login_page__link:hover {
    color: #3a7bd5;
    text-decoration: none;
}

.login_page__divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.login_page__divider::before,
.login_page__divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login_page__divider::before {
    margin-right: 15px;
}

.login_page__divider::after {
    margin-left: 15px;
}

.login_page__social_btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 50px;
}

.login_page__social_btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.login_page__social_btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.login_page__remember {
    color: rgba(255, 255, 255, 0.8);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
}

@media (max-width: 576px) {
    .login_page__card {
        max-width: 100%;
        border-radius: 15px;
    }

    .login_page__header {
        padding: 30px 20px 15px;
    }

    .login_page__body {
        padding: 0 20px 20px;
    }
}

.signup_page {
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7)), url('../images/background-350-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.signup_page__card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.signup_page__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.signup_page__header {
    padding: 40px 30px 20px;
    text-align: center;
    position: relative;
}

.signup_page__logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.signup_page__title {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 2rem;
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.signup_page__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.signup_page__body {
    padding: 0 30px 30px;
}

.signup_page__form_group {
    margin-bottom: 20px;
    position: relative;
}

.signup_page__input {
    border-radius: 12px;
    padding: 15px 20px 15px 50px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s;
    height: 50px;
}

.signup_page__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.signup_page__input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(58, 123, 213, 0.25);
    color: white;
}

.signup_page__input_icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.signup_page__password_toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.signup_page__password_toggle:hover {
    color: white;
}

.signup_page__btn {
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    height: 50px;
}

.signup_page__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #00c8f5, #3571c7);
}

.signup_page__footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.signup_page__link {
    color: #00d2ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.signup_page__link:hover {
    color: #3a7bd5;
    text-decoration: none;
}

.signup_page__divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.signup_page__divider::before,
.signup_page__divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.signup_page__divider::before {
    margin-right: 15px;
}

.signup_page__divider::after {
    margin-left: 15px;
}

.signup_page__terms {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 20px;
}

.signup_page__checkbox_label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
}

.signup_page__name_fields {
    display: flex;
    gap: 15px;
}

.signup_page__name_fields .signup_page__form_group {
    flex: 1;
}

@media (max-width: 576px) {
    .signup_page__card {
        max-width: 100%;
        border-radius: 15px;
    }

    .signup_page__header {
        padding: 30px 20px 15px;
    }

    .signup_page__body {
        padding: 0 20px 20px;
    }

    .signup_page__name_fields {
        flex-direction: column;
        gap: 20px;
    }
}

.slider_feature_list h2 {
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #00ffcc, #00cc99);
    padding: 10px;
    border-radius: 8px;
}

.slider_list_group_item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    transition: transform 0.1s ease, background 0.1s ease;
}

.slider_list_group_item:hover {
    background: rgba(0, 255, 204, 0.15);
    transform: translateX(10px);
}

.slider_list_group_item i {
    color: #00ffcc;
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.slider_list_group_item span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.3);
}

.slider_list_group_item:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .slider_feature_list {
        margin: 20px;
        padding: 20px;
    }

    .slider_feature_list h2 {
        font-size: 1.5rem;
    }

    .slider_list_group_item span {
        font-size: 1rem;
    }
}

.about_page_team-contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 50%, #f8f9fa 50%);
    position: relative;
}

.about_page_team-section {
    padding-bottom: 80px;
}

.about_page_section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about_page_section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
}

.about_page_section-title span {
    color: #bb9147;
}

.about_page_section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.about_page_team-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.about_page_team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #10b8f2;
}

.about_page_team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2b91e0;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.about_page_team-card:hover .about_page_team-img {
    transform: scale(1.05);
    border-color: #10b8f2;
}

.about_page_team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.about_page_team-position {
    font-size: 1rem;
    color: darkblue;
    font-weight: 500;
    margin-bottom: 15px;
}

.about_page_team-bio {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about_page_social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about_page_social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #2a4365;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about_page_social-links a:hover {
    background: #f9d423;
    color: white;
    transform: translateY(-3px);
}

.about_page_contact-cta {
    background: linear-gradient(135deg, #2a4365 0%, #0d1b2a 100%);
    border-radius: 15px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.about_page_contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 212, 35, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.abd_container-fluid {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Left Sidebar - Filters */
.abd_sidebar {
    width: 320px;
    background: linear-gradient(180deg, #1a5276 0%, #154360 100%);
    color: white;
    padding: 25px 20px;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    position: sticky;
    top: 65px;
    height: 100vh;
    z-index: 10;
}

.abd_logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.abd_logo-icon {
    font-size: 32px;
    color: #28b463;
}

.abd_logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.abd_tagline {
    font-size: 14px;
    color: #d5f4e6;
    margin-top: 3px;
}

.abd_sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 15px 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.abd_sidebar-title i {
    color: #28b463;
}

.abd_filter-group {
    margin-bottom: 25px;
}

.abd_filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #d5f4e6;
}

.abd_filter-select,
.abd_search-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.abd_filter-select:focus,
.abd_search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 180, 99, 0.3);
}

.abd_range-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.abd_range-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #2e86c1;
    border-radius: 3px;
    outline: none;
}

.abd_range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #28b463;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.abd_range-value {
    color: white;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

.abd_checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.abd_checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s;
}

.abd_checkbox-label:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.abd_checkbox-label input {
    accent-color: #28b463;
}

.abd_filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.abd_btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.abd_btn-primary {
    background-color: #28b463;
    color: white;
}

.abd_btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.abd_btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.abd_btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Right Content Area - Bike Listings */
.abd_content {
    flex: 1;
    padding: 25px 30px;
    background-color: #f8f9fa;
    overflow-y: auto;
}

.abd_content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.abd_page-title {
    font-size: 28px;
    color: #1a5276;
    font-weight: 800;
}

.abd_results-count {
    color: #666;
    font-size: 16px;
}

.abd_bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.abd_bike-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.abd_bike-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(40, 180, 99, 0.15);
}

.abd_ev-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28b463;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.abd_bike-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.abd_bike-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.abd_bike-card:hover .abd_bike-image img {
    transform: scale(1.08);
}

.abd_bike-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.abd_bike-brand {
    font-size: 14px;
    color: #2e86c1;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.abd_bike-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a5276;
    line-height: 1.3;
}

.abd_bike-price {
    font-size: 20px;
    color: #28b463;
    font-weight: 800;
    margin-bottom: 15px;
}

.abd_bike-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 13px;
    color: #666;
    flex-grow: 1;
}

.abd_bike-specs li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.abd_view-detail {
    background: linear-gradient(to right, #2e86c1, #1a5276);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.abd_view-detail:hover {
    background: linear-gradient(to right, #28b463, #1e8449);
    box-shadow: 0 4px 12px rgba(40, 180, 99, 0.3);
}

/* Bike Detail Page */
.abd_detail-container {
    display: none;
    padding: 20px 0;
}

.abd_back-button {
    background-color: #2e86c1;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.abd_back-button:hover {
    background-color: #1a5276;
}

.abd_detail-header {
    background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.abd_detail-title {
    font-size: 32px;
    color: white;
    margin-bottom: 5px;
}

.abd_detail-price {
    font-size: 26px;
    color: #d5f4e6;
    font-weight: 800;
}

.abd_detail-image {
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.abd_detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abd_detail-section {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #28b463;
}

.abd_section-title {
    font-size: 22px;
    color: #1a5276;
    margin-bottom: 15px;
    font-weight: 700;
}

.abd_specs-table {
    width: 100%;
    border-collapse: collapse;
}

.abd_specs-table tr {
    border-bottom: 1px solid #eaeaea;
}

.abd_specs-table td {
    padding: 12px 8px;
}

.abd_specs-label {
    font-weight: 700;
    color: #1a5276;
    width: 40%;
}

.abd_specs-value {
    color: #333;
}

.abd_features-list {
    list-style: none;
    padding: 0;
}

.abd_features-list li {
    padding: 10px 0;
    color: #333;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.abd_features-list li:last-child {
    border-bottom: none;
}

.abd_features-list i {
    color: #28b463;
}

.abd_charging-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.abd_charging-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eaeaea;
}

.abd_charging-value {
    font-size: 24px;
    font-weight: 800;
    color: #28b463;
}

.abd_charging-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.abd_battery-visual {
    height: 30px;
    background-color: #e8f6f3;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}

.abd_battery-fill {
    height: 100%;
    background: linear-gradient(to right, #28b463, #82e0aa);
    border-radius: 15px;
    transition: width 1s;
}

.abd_battery-text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    color: #1a5276;
}

/* Mobile Menu Toggle */
.abd_mobile-toggle {
    display: none;
    /* position: absolute; */
    /* top: 100px;
            left: 20px;
            z-index: 100; */
    background-color: #1a5276;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .abd_container-fluid {
        flex-direction: column;
    }

    .abd_sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: -100%;
        transition: left 0.3s ease;
        z-index: 10009;
    }

    .abd_sidebar.active {
        left: 0;
    }

    .abd_mobile-toggle {
        display: block;
    }

    .abd_content {
        padding-top: 80px;
    }

    .abd_detail-image {
        height: 300px;
    }

    .abd_detail-title {
        font-size: 28px;
    }

    .abd_detail-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .abd_bike-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .abd_content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .abd_detail-image {
        height: 250px;
    }

    .abd_charging-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .abd_bike-grid {
        grid-template-columns: 1fr;
    }

    .abd_content {
        padding: 20px 15px;
        padding-top: 80px;
    }

    .abd_page-title {
        font-size: 24px;
    }
}

/* No Results Styling */
.abd_no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.abd_no-results-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.abd_no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a5276;
}

.abd_no-results p {
    font-size: 16px;
    margin-bottom: 25px;
}

.book_service_btn {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.book_service_btn:hover {
    background: #333;
}

.book_service_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.book_service_modal_content {
    background: white;
    width: 90%;
    max-width: 650px;
    margin: 100px auto;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.book_service_modal_header {
    background: #1a73e8;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book_service_modal_title {
    font-size: 22px;
    margin: 0;
}

.book_service_close_btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.book_service_modal_body {
    padding: 25px;
}

.book_service_form_group {
    margin-bottom: 20px;
}

.book_service_form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.book_service_form_group input,
.book_service_form_group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.book_service_form_group input:focus,
.book_service_form_group select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.book_service_submit_btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.book_service_submit_btn:hover {
    background: #333;
}

.book_service_required {
    color: #ff0000;
}

.share_exp_btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    margin: 20px;
}

.share_exp_btn:hover {
    background: #0d62d9;
}

.share_exp_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.share_exp_modal_content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 100px auto;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.share_exp_modal_header {
    background: #1a73e8;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share_exp_modal_title {
    font-size: 22px;
    margin: 0;
}

.share_exp_close_btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.share_exp_modal_body {
    padding: 25px;
}

.share_exp_form_group {
    margin-bottom: 20px;
}

.share_exp_form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.share_exp_form_group input,
.share_exp_form_group select,
.share_exp_form_group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.share_exp_form_group textarea {
    min-height: 120px;
    resize: vertical;
}

.share_exp_form_group input:focus,
.share_exp_form_group select:focus,
.share_exp_form_group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
}

.share_exp_details_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 500px) {
    .share_exp_details_grid {
        grid-template-columns: 1fr;
    }
}

.share_exp_rating {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.share_exp_rating_star {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.share_exp_rating_star:hover,
.share_exp_rating_star.active {
    color: #ffc107;
}

.share_exp_rating_text {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.share_exp_submit_btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share_exp_submit_btn:hover {
    background: #0d62d9;
}

.share_exp_required {
    color: #ff0000;
}

.share_exp_note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.distance_unit {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.share_exp_form_group .input-container {
    position: relative;
}

.con_fs_container {
    max-width: 620px;
    /* margin: 60px auto; */
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.con_fs_header {
    background: linear-gradient(135deg, #00c853, #009624);
    padding: 20px 30px;
    text-align: center;
    color: white;
}

.con_fs_header h2 {
    /* font-size: 2.6rem; */
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.con_fs_header p {
    font-size: 1.15rem;
    margin-top: 12px;
    opacity: 0.95;
}

.con_fs_header .con_fs_bolt {
    font-size: 4rem;
    margin-bottom: 20px;
}

.con_fs_body {
    padding: 50px 40px;
}

.con_fs_label {
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.con_fs_input,
.con_fs_select {
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s;
}

.con_fs_input:focus,
.con_fs_select:focus {
    border-color: #00c853;
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.15);
    outline: none;
}

.con_fs_textarea {
    min-height: 140px;
    resize: vertical;
}

.con_fs_submit {
    background: linear-gradient(135deg, #00c853, #009624);
    border: none;
    border-radius: 50px;
    padding: 16px 60px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s;
}

.con_fs_submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 200, 83, 0.35);
}

@media (max-width: 576px) {
    .con_fs_body {
        padding: 40px 25px;
    }

    .con_fs_header h2 {
        font-size: 2.2rem;
    }
}

.evb_wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(45deg, #00081d, #001524, #000b1a);
    position: relative;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Main animated background */
.evb_background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Glowing center elements */
.evb_center-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 60vmin;
    height: 60vmin;
    z-index: 2;
    pointer-events: none;
}

.evb_core-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vmin;
    height: 20vmin;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, rgba(0, 247, 255, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: evb_pulse 4s infinite ease-in-out;
}

.evb_energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vmin;
    height: 20vmin;
    border: 2px solid rgba(0, 247, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.2);
    animation: evb_rotate 20s linear infinite;
}

.evb_energy-ring::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00f7ff;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px #00f7ff;
}

.evb_ring-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55vmin;
    height: 55vmin;
    border-radius: 50%;
}

.evb_ring-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00f7ff;
    border-radius: 50%;
    transform-origin: 27.5vmin;
    filter: blur(1px);
}

/* Floating bike silhouette */
.evb_bike-silhouette {
    position: absolute;
    top: 70%;
    left: 85%;
    transform: translate(-50%, -50%);
    width: 40vmin;
    height: 25vmin;
    /* z-index: -3; */
    filter: drop-shadow(0 0 10px rgba(0, 247, 255, 0.5));
    opacity: 0.8;
}

.evb_bike-frame {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.evb_bike-wheel {
    position: absolute;
    width: 12vmin;
    height: 12vmin;
    border: 2px solid rgba(0, 247, 255, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: evb_wheel-spin 3s linear infinite;
}

.evb_bike-wheel.front {
    left: 5%;
}

.evb_bike-wheel.rear {
    right: 5%;
}

.evb_bike-wheel::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 50%;
    animation: evb_wheel-spin 1.5s linear infinite reverse;
}

.evb_bike-wheel::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f7ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #00f7ff;
}

/* Energy trails */
.evb_energy-trail {
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    border-radius: 2px;
    filter: blur(1px);
    opacity: 0.7;
    z-index: 2;
}

/* Floating UI panels */
.evb_ui-panel {
    position: absolute;
    background: rgba(0, 20, 40, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.evb_ui-panel:hover {
    border-color: rgba(0, 247, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 247, 255, 0.1);
    transform: translateY(-5px);
}

.evb_panel-top-left {
    top: 10%;
    left: 5%;
    width: 300px;
}

.evb_panel-top-right {
    top: 10%;
    right: 5%;
    width: 300px;
}

.evb_panel-bottom {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 400px;
    text-align: center;
}

.evb_panel-title {
    color: #00f7ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.evb_panel-text {
    color: #a0e6ff;
    font-size: 1rem;
    line-height: 1.5;
}

.evb_tech-spec {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.evb_spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.evb_spec-label {
    color: #88d4ff;
    font-size: 0.9rem;
}

.evb_spec-value {
    color: #00f7ff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Animated data stream */
.evb_data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00f7ff, transparent);
    z-index: 2;
    filter: blur(1px);
    opacity: 0;
}

/* Decorative elements */
.evb_glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: evb_float 8s infinite ease-in-out;
}

.evb_circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.3), transparent);
    z-index: 1;
    filter: blur(1px);
}

/* Animations */
@keyframes evb_pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes evb_rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes evb_wheel-spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes evb_float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -10px);
    }

    50% {
        transform: translate(-5px, 5px);
    }

    75% {
        transform: translate(-10px, -5px);
    }
}

@keyframes evb_data-stream {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .evb_ui-panel {
        padding: 15px;
        width: 90% !important;
        left: 5% !important;
        right: 5% !important;
        position: relative;
        margin: 10px auto;
    }

    .evb_panel-top-left,
    .evb_panel-top-right {
        top: auto;
        left: 5%;
        right: 5%;
    }

    .evb_panel-top-right {
        top: 20%;
    }

    .evb_panel-bottom {
        bottom: 5%;
        min-width: 90%;
    }

    .evb_bike-silhouette {
        width: 60vmin;
        height: 35vmin;
    }

    .evb_wrapper {
        height: 125vh;
    }
}