/*====================================
    GENERAL
====================================*/

body{

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

    background:#ffffff;

}

.text-orange{

    color:#FF7A00;

}

/*====================================
    NAVBAR
====================================*/

.custom-navbar{

    transition:.4s;

    padding:18px 0;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    box-shadow:0 5px 25px rgba(0,0,0,.05);

}

.custom-navbar.scrolled{

    padding:10px 0;

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.navbar-brand h4{

    font-weight:700;

}

.nav-link{

    font-weight:500;

    color:#222 !important;

    margin-left:18px;

    transition:.3s;

    position:relative;

}

.nav-link:hover{

    color:#FF7A00 !important;

}

.nav-link.active{

    color:#FF7A00 !important;

}

.nav-link::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:#FF7A00;

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.btn-warning{

    background:#FF7A00;

    border:none;

    color:#fff;

}

.btn-warning:hover{

    background:#ef6d00;

    color:#fff;

    transform:translateY(-2px);

}

.btn-dark:hover{

    transform:translateY(-2px);

}

@media(max-width:991px){

.nav-link{

    margin-left:0;

    padding:12px 0;

}

.btn{

    width:100%;

    margin-top:10px;

}

}

/*=========================================
HOME HERO
=========================================*/

.hero-section{

    background:linear-gradient(135deg,#f8fbff,#eef6ff);

    position:relative;

}

.hero-phone{

    max-height:700px;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

.hero-circle{

    position:absolute;

    border-radius:50%;

    opacity:.15;

}

.hero-circle-1{

    width:450px;

    height:450px;

    background:#FF7A00;

    top:-120px;

    right:-120px;

}

.hero-circle-2{

    width:300px;

    height:300px;

    background:#0d6efd;

    bottom:-80px;

    left:-80px;

}

.hero-circle-3{

    width:150px;

    height:150px;

    background:#28a745;

    top:40%;

    right:12%;

}

.hero-feature{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:18px;

    border-radius:16px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.hero-feature i{

    color:#FF7A00;

    font-size:28px;

    margin-bottom:10px;

}

.floating-card{

    position:absolute;

    background:#fff;

    padding:15px 25px;

    border-radius:40px;

    font-weight:600;

}

.floating-card-1{

    top:10%;

    left:0;

}

.floating-card-2{

    bottom:30%;

    right:0;

}

.floating-card-3{

    bottom:5%;

    left:15%;

}

.counter-box{

    padding:30px;

    border-radius:20px;

    transition:.3s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.counter-box:hover{

    transform:translateY(-8px);

}

.scroll-down{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:28px;

    height:48px;

    border:2px solid #FF7A00;

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:'';

    width:6px;

    height:6px;

    background:#FF7A00;

    border-radius:50%;

    position:absolute;

    top:8px;

    left:50%;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:28px;

}

}


/*==================================================
FOOTER
==================================================*/

.footer-section{

    background:#081B33;

    position:relative;

    margin-top:80px;

}

.footer-title{

    color:#ffffff;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#FF7A00;

    padding-left:8px;

}

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    color:#d7d7d7;

    margin-bottom:16px;

}

.footer-contact i{

    width:26px;

    color:#FF7A00;

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icon{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.social-icon:hover{

    background:#FF7A00;

    color:#ffffff;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:20px 0;

    color:#cfcfcf;

    font-size:15px;

}
/*=========================================
Services
=========================================*/

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    height:100%;
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.service-icon{

    width:90px;

    height:90px;

    background:#FFF3E8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;
}

.service-icon i{

    font-size:38px;

    color:#FF7A00;
}

/*=========================================
Vehicle Cards
=========================================*/

.vehicle-card{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:35px 20px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    height:100%;
}

.vehicle-card:hover{

    background:#FF7A00;

    color:#fff;

    transform:translateY(-10px);
}

.vehicle-card:hover small{

    color:#fff;
}

.vehicle-card i{

    font-size:42px;

    color:#FF7A00;

    margin-bottom:20px;
}

.vehicle-card:hover i{

    color:#fff;
}

/*=========================================
How It Works
=========================================*/

.step-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    position:relative;

    transition:.35s;

    height:100%;
}

.step-card:hover{

    transform:translateY(-10px);
}

.step-number{

    width:45px;

    height:45px;

    background:#FF7A00;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);
}

.step-card i{

    font-size:42px;

    color:#FF7A00;

    margin:35px 0 20px;
}
/*=====================================
WHY CHOOSE US
=====================================*/

.feature-item{

    padding:12px 0;

    font-size:18px;

}

.feature-item i{

    color:#FF7A00;

    margin-right:12px;

}

/*=====================================
CITY
=====================================*/

.city-card{

    background:#fff;

    text-align:center;

    padding:40px 20px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.3s;

}

.city-card:hover{

    background:#FF7A00;

    color:#fff;

    transform:translateY(-10px);

}

.city-card i{

    font-size:40px;

    margin-bottom:20px;

    color:#FF7A00;

}

.city-card:hover i{

    color:#fff;

}

/*=====================================
APP
=====================================*/

.app-preview{

    max-height:650px;

}

/*=====================================
DRIVER
=====================================*/

.driver-section{

    background:#081B33;

    padding:80px 0;

}

/*=====================================
TESTIMONIAL
=====================================*/

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    height:100%;

}

.testimonial-card i{

    font-size:34px;

    color:#FF7A00;

    margin-bottom:20px;

}

/*=====================================
CTA
=====================================*/

.cta-section{

    background:linear-gradient(135deg,#FF7A00,#ff9633);

    padding:90px 0;

}

/*=========================================
PREMIUM FOOTER
=========================================*/

.footer-section{

    background:#071b34;

    color:#fff;

    margin-top:0;

}

.footer-cta{

    background:linear-gradient(135deg,#ff7a00,#ff9735);

    padding:60px 0;

}

.footer-heading{

    color:#fff;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

    color:#cfcfcf;

}

.footer-links a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ff7a00;

    padding-left:8px;

}

.contact-box{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

}

.contact-box i{

    width:20px;

    color:#ff7a00;

    margin-top:4px;

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

    text-decoration:none;

}

.social-icons a:hover{

    background:#ff7a00;

    transform:translateY(-5px);

}

.footer-cities{

    padding:50px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.city-badges{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.city-badges span{

    background:#102c4d;

    padding:10px 20px;

    border-radius:50px;

    transition:.3s;

}

.city-badges span:hover{

    background:#ff7a00;

}

.newsletter-section{

    padding:50px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.newsletter-section .form-control{

    border:none;

    height:55px;

}

.newsletter-section .btn{

    padding:0 30px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

    font-size:15px;

}

.footer-bottom a{

    color:#cfcfcf;

    text-decoration:none;

    margin:0 8px;

}

.footer-bottom a:hover{

    color:#ff7a00;

}

@media(max-width:991px){

.footer-cta{

text-align:center;

}

.city-badges{

justify-content:center;

}

.footer-bottom{

text-align:center;

}

}

/*==================================
SAFETY
==================================*/

.safety-card{

background:#fff;

padding:40px;

border-radius:20px;

height:100%;

transition:.35s;

box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.safety-card:hover{

transform:translateY(-10px);

}

.safety-card .icon{

width:80px;

height:80px;

border-radius:50%;

background:#fff3e7;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.safety-card i{

font-size:34px;

color:#ff7a00;

}

.feature-list{

list-style:none;

padding:0;

}

.feature-list li{

margin-bottom:18px;

}

.feature-list i{

color:#ff7a00;

margin-right:8px;

}

.earning-card{

background:rgba(255,255,255,.1);

padding:25px;

border-radius:18px;

text-align:center;

color:#fff;

backdrop-filter:blur(8px);

}
/*=========================================
PRICING
=========================================*/

.pricing-section{

    position:relative;

}

.pricing-card{

    background:#ffffff;

    border-radius:24px;

    padding:45px 35px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-12px);

}

.pricing-card.featured{

    border:3px solid #ff7a00;

    transform:scale(1.03);

}

.popular{

    position:absolute;

    top:20px;

    right:-45px;

    background:#ff7a00;

    color:#fff;

    padding:8px 50px;

    transform:rotate(45deg);

    font-size:12px;

    font-weight:600;

}

.pricing-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff3e8;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

}

.pricing-icon i{

    font-size:40px;

    color:#ff7a00;

}

.price{

    text-align:center;

    margin:25px 0;

    font-size:20px;

    color:#666;

}

.price span{

    display:block;

    font-size:42px;

    color:#081b33;

    font-weight:700;

}

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.pricing-card ul li{

    margin-bottom:15px;

}

.pricing-card ul i{

    color:#28a745;

    margin-right:10px;

}

@media(max-width:991px){

.pricing-card.featured{

transform:none;

}

}

/*==================================================
APP SHOWCASE
==================================================*/

.app-showcase-section{

    background:#f8fafc;

    position:relative;

}

.app-shape{

    position:absolute;

    border-radius:50%;

    opacity:.08;

}

.app-shape-1{

    width:320px;

    height:320px;

    background:#ff7a00;

    top:-80px;

    left:-80px;

}

.app-shape-2{

    width:250px;

    height:250px;

    background:#081b33;

    right:-60px;

    bottom:-60px;

}

.app-feature{

    background:#fff;

    padding:20px;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    text-align:center;

    height:100%;

}

.app-feature:hover{

    transform:translateY(-8px);

}

.app-feature i{

    font-size:34px;

    color:#ff7a00;

    margin-bottom:15px;

}

.phone-showcase{

    position:relative;

    height:650px;

}

.phone{

    position:absolute;

    transition:.4s;

}

.phone img{

    max-height:580px;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.20));

}

.left-phone{

    left:20px;

    top:70px;

    transform:rotate(-12deg);

}

.center-phone{

    left:50%;

    transform:translateX(-50%);

    z-index:5;

}

.right-phone{

    right:20px;

    top:70px;

    transform:rotate(12deg);

}

.phone:hover{

    transform:translateY(-12px);

}

.download-stat{

    background:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.download-stat h3{

    color:#ff7a00;

    font-weight:700;

    margin-bottom:10px;

}

@media(max-width:991px){

.phone-showcase{

height:auto;

display:flex;

flex-direction:column;

align-items:center;

gap:30px;

}

.phone{

position:relative;

left:auto;

right:auto;

top:auto;

transform:none !important;

}

.phone img{

max-height:420px;

}

}


/*=========================================
TESTIMONIALS
=========================================*/

.testimonial-section{

background:#ffffff;

}

.testimonial-card{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:0 20px 45px rgba(0,0,0,.06);

transition:.35s;

height:100%;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card.featured{

border:2px solid #ff7a00;

}

.quote{

font-size:42px;

color:#ff7a00;

margin-bottom:20px;

}

.client{

display:flex;

align-items:center;

margin-top:30px;

}

.client img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

margin-right:15px;

}

/*==================================================
FAQ SECTION
==================================================*/

.faq-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}


/*==================================================
FAQ IMAGE
==================================================*/

.faq-image-wrapper {
    position: relative;
    padding: 20px;
}

.faq-image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}


/*==================================================
FLOATING SUPPORT CARD
==================================================*/

.faq-floating-card {
    position: absolute;

    right: 0;
    bottom: 40px;

    background: #ffffff;

    padding: 18px 22px;

    border-radius: 18px;

    display: flex;
    align-items: center;

    gap: 15px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

    animation: faqFloat 3s ease-in-out infinite;
}


.faq-floating-icon {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #fff3e8;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff7a00;

    font-size: 23px;
}


.faq-floating-card strong {
    display: block;

    color: #081b33;
}


.faq-floating-card span {
    display: block;

    color: #777;

    font-size: 13px;
}


@keyframes faqFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/*==================================================
SUPPORT BOX
==================================================*/

.faq-support-box {
    background: #ffffff;

    padding: 28px;

    border-radius: 22px;

    display: flex;

    gap: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}


.faq-support-icon {
    min-width: 65px;
    height: 65px;

    border-radius: 18px;

    background: #ff7a00;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 25px;
}


/*==================================================
FAQ ACCORDION
==================================================*/

.faq-accordion .accordion-item {
    border: none;

    background: #ffffff;

    border-radius: 18px !important;

    margin-bottom: 16px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .3s;
}


.faq-accordion .accordion-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .09);

    transform: translateY(-2px);
}


/*==================================================
ACCORDION BUTTON
==================================================*/

.faq-accordion .accordion-button {
    border: none;

    background: #ffffff;

    color: #081b33;

    font-size: 17px;

    font-weight: 600;

    padding: 22px 25px;

    box-shadow: none;
}


.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff8f1;

    color: #ff7a00;

    box-shadow: none;
}


.faq-accordion .accordion-button:focus {
    box-shadow: none;

    border: none;
}


/*==================================================
QUESTION ICON
==================================================*/

.faq-question-icon {
    min-width: 45px;
    height: 45px;

    border-radius: 12px;

    background: #fff3e8;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-right: 15px;

    color: #ff7a00;

    font-size: 18px;

    transition: .3s;
}


.faq-accordion .accordion-button:not(.collapsed)
.faq-question-icon {
    background: #ff7a00;

    color: #ffffff;
}


/*==================================================
ACCORDION BODY
==================================================*/

.faq-accordion .accordion-body {
    padding:

        5px
        30px
        28px
        85px;

    color: #667085;

    font-size: 15.5px;

    line-height: 1.8;
}


/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .faq-image-wrapper {
        text-align: center;
    }

    .faq-image {
        max-height: 400px;
    }

}


@media (max-width: 767px) {

    .faq-floating-card {
        position: relative;

        right: auto;
        bottom: auto;

        margin-top: 20px;
    }


    .faq-support-box {
        flex-direction: column;
    }


    .faq-support-icon {
        width: 65px;
    }


    .faq-accordion .accordion-button {
        font-size: 15px;

        padding: 18px;
    }


    .faq-question-icon {
        min-width: 40px;
        height: 40px;

        margin-right: 10px;
    }


    .faq-accordion .accordion-body {
        padding:

            5px
            20px
            22px
            20px;
    }

}

/*==================================================
FINAL CTA
==================================================*/

.final-cta{
    background:linear-gradient(135deg,#081b33 0%,#123a63 55%,#ff7a00 100%);
    padding:110px 0;
    position:relative;
}

.cta-shape{
    position:absolute;
    border-radius:50%;
    opacity:.12;
}

.cta-shape-1{
    width:320px;
    height:320px;
    background:#ffffff;
    top:-90px;
    left:-90px;
}

.cta-shape-2{
    width:260px;
    height:260px;
    background:#ffb347;
    right:-80px;
    bottom:-80px;
}

.cta-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    color:#fff;
    height:100%;
    transition:.35s;
}

.cta-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
}

.cta-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#fff;
    color:#ff7a00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.roadmap-box{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.roadmap-step{
    text-align:center;
    color:#fff;
}

.roadmap-step .circle{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    background:rgba(255,255,255,.18);
    font-size:22px;
}

.roadmap-step.completed .circle{
    background:#28a745;
}

.roadmap-step.active .circle{
    background:#ff7a00;
}

.roadmap-line{
    width:60px;
    height:4px;
    background:rgba(255,255,255,.30);
}

.cta-stat{
    color:#fff;
}

.cta-stat h2{
    font-size:48px;
    font-weight:700;
    color:#ffd166;
}

@media(max-width:991px){

    .roadmap-box{
        flex-direction:column;
    }

    .roadmap-line{
        width:4px;
        height:35px;
    }

}

/*=========================================
ABOUT PAGE
=========================================*/

.about-hero{

background:linear-gradient(135deg,#081b33,#123d6b,#ff7a00);

padding:120px 0;

position:relative;

overflow:hidden;

}

.hero-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.20);

}

.min-vh-75{

min-height:75vh;

}

.about-counter{

background:#fff;

padding:25px;

text-align:center;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.about-counter h3{

font-size:42px;

color:#ff7a00;

font-weight:700;

}

.mission-card{

background:#fff;

padding:45px;

border-radius:24px;

box-shadow:0 20px 50px rgba(0,0,0,.06);

transition:.35s;

height:100%;

text-align:center;

}

.mission-card:hover{

transform:translateY(-10px);

}

.mission-card .icon{

width:90px;

height:90px;

margin:auto;

background:#fff3e8;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.mission-card i{

font-size:40px;

color:#ff7a00;

}

/*====================================
ABOUT PAGE PART-2
====================================*/

.service-card{

background:#fff;

padding:40px 30px;

border-radius:24px;

text-align:center;

height:100%;

box-shadow:0 20px 45px rgba(0,0,0,.06);

transition:.35s;

}

.service-card:hover{

transform:translateY(-10px);

}

.service-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

background:#fff3e8;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.service-icon i{

font-size:40px;

color:#ff7a00;

}

.feature-box{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.05);

height:100%;

transition:.35s;

}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-box i{

font-size:38px;

color:#ff7a00;

margin-bottom:20px;

}

.tech-card{

background:#fff;

padding:35px 20px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.05);

transition:.35s;

height:100%;

}

.tech-card:hover{

transform:translateY(-8px);

}

.tech-card i{

font-size:48px;

color:#ff7a00;

margin-bottom:15px;

}

/*====================================
ABOUT PAGE FINAL
====================================*/

.roadmap{

max-width:900px;
margin:auto;

}

.roadmap-item{

display:flex;
gap:25px;
margin-bottom:40px;
align-items:flex-start;

}

.roadmap-icon{

width:70px;
height:70px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:#fff3e8;

color:#ff7a00;

font-size:28px;

flex-shrink:0;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.roadmap-item.completed .roadmap-icon{

background:#28a745;
color:#fff;

}

.roadmap-item.active .roadmap-icon{

background:#ff7a00;
color:#fff;

}

.roadmap-content{

background:#fff;

padding:25px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.05);

width:100%;

}

.team-role{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

height:100%;

box-shadow:0 15px 35px rgba(0,0,0,.05);

transition:.3s;

}

.team-role:hover{

transform:translateY(-8px);

}

.team-role i{

font-size:45px;

color:#ff7a00;

margin-bottom:20px;

}

.about-final-cta{

background:linear-gradient(135deg,#081b33,#123d6b,#ff7a00);

padding:100px 0;

}


/*====================================
SUPPORT PAGE
====================================*/

.support-hero{

background:linear-gradient(135deg,#081b33,#123d6b,#ff7a00);

padding:120px 0;

}

.support-card{

background:#fff;

padding:40px;

text-align:center;

border-radius:22px;

box-shadow:0 20px 45px rgba(0,0,0,.06);

transition:.35s;

height:100%;

}

.support-card:hover{

transform:translateY(-10px);

}

.support-card i{

font-size:48px;

color:#ff7a00;

margin-bottom:25px;

}

.contact-card{

background:#fff;

padding:40px;

text-align:center;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.05);

height:100%;

}

.contact-icon{

width:80px;

height:80px;

background:#fff3e8;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto auto 25px;

}

.contact-icon i{

font-size:35px;

color:#ff7a00;

}


/*====================================
SUPPORT PAGE PART-2
====================================*/

.support-sidebar .sidebar-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.sidebar-icon{

width:70px;

height:70px;

border-radius:50%;

background:#fff3e8;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

}

.sidebar-icon i{

font-size:32px;

color:#ff7a00;

}

.emergency-card{

border-left:5px solid #ff7a00;

}

.faq-item{

background:#fff;

padding:25px;

border-radius:18px;

height:100%;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.map-placeholder{

background:#f8f9fa;

border:3px dashed #ced4da;

border-radius:25px;

padding:100px 30px;

text-align:center;

}

.map-placeholder i{

font-size:70px;

color:#ff7a00;

}

.social-card{

display:block;

background:#fff;

padding:30px;

text-align:center;

border-radius:20px;

text-decoration:none;

color:#333;

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.3s;

}

.social-card:hover{

transform:translateY(-8px);

color:#ff7a00;

}

.social-card i{

display:block;

font-size:40px;

margin-bottom:15px;

}

.support-cta{

background:linear-gradient(135deg,#081b33,#123d6b,#ff7a00);

padding:100px 0;

}


/*=========================================
REGISTER PAGE
=========================================*/

.register-page{

background:linear-gradient(135deg,#081b33,#123d6b,#ff7a00);

min-height:100vh;

display:flex;

align-items:center;

}

.register-left{

padding:30px;

}

.benefit-item{

display:flex;

align-items:flex-start;

margin-bottom:30px;

color:#fff;

}

.benefit-item i{

font-size:30px;

margin-right:18px;

color:#ffc107;

}

.register-card{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}


/*=========================================
REGISTER PAGE PART 2
=========================================*/

.register-info-box{

background:#f8f9fa;

border-left:5px solid #ff7a00;

padding:25px;

border-radius:12px;

}

.progress{

border-radius:50px;

overflow:hidden;

}

.progress-bar{

border-radius:50px;

}

.form-control:focus,
.form-select:focus{

border-color:#ff7a00;

box-shadow:0 0 0 .2rem rgba(255,122,0,.15);

}

.form-check-input:checked{

background:#ff7a00;

border-color:#ff7a00;

}

.register-card a{

text-decoration:none;

}

.register-card a:hover{

text-decoration:underline;

}

.register-card .btn{

transition:.3s;

}

.register-card .btn:hover{

transform:translateY(-2px);

}



/*=========================================
LOGIN PAGE
=========================================*/

.login-page{

background:linear-gradient(135deg,#081b33,#123d6b,#ff7a00);

min-height:100vh;

}

.login-left{

padding:40px;

}

.login-feature{

display:flex;

align-items:center;

margin-bottom:22px;

color:#fff;

font-size:18px;

}

.login-feature i{

width:50px;

height:50px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.15);

border-radius:50%;

margin-right:15px;

color:#ffc107;

}

.login-card{

background:#fff;

padding:50px;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.login-card .form-control:focus{

border-color:#ff7a00;

box-shadow:0 0 0 .2rem rgba(255,122,0,.15);

}

.login-card a{

text-decoration:none;

}

.login-card a:hover{

text-decoration:underline;

}

.login-card .btn{

transition:.3s;

}

.login-card .btn:hover{

transform:translateY(-2px);

}


/*=========================================
ADMIN LOGIN PAGE
=========================================*/

.admin-login-page{

background:#071829;

min-height:100vh;

}

.admin-left{

padding:80px 60px;

display:flex;

flex-direction:column;

justify-content:space-between;

background:linear-gradient(180deg,#081b33,#123d6b);

}

.admin-feature{

display:flex;

align-items:center;

margin-bottom:22px;

color:#fff;

font-size:18px;

}

.admin-feature i{

width:55px;

height:55px;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.12);

border-radius:50%;

margin-right:18px;

color:#ffc107;

font-size:22px;

}

.admin-card{

background:#fff;

padding:55px;

border-radius:25px;

width:100%;

max-width:650px;

box-shadow:0 30px 70px rgba(0,0,0,.25);

}

.admin-logo{

width:110px;

height:110px;

background:#fff3e8;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.admin-logo i{

font-size:50px;

color:#ff7a00;

}

.system-status{

background:#f8f9fa;

padding:25px;

border-radius:15px;

}

.status-item{

display:flex;

justify-content:space-between;

padding:12px 0;

border-bottom:1px solid #e9ecef;

}

.status-item:last-child{

border-bottom:none;

}

.admin-card .form-control:focus{

border-color:#ff7a00;

box-shadow:0 0 0 .2rem rgba(255,122,0,.15);

}