/* ========================================
   CSS Variables - Color Scheme & Fonts
   ======================================== */
:root {
    /* Main Colors */
    --primary-color: #c3ff00;
    --secondary-color: #ff6b35;
    --dark-color: #010001;
    --light-color: #f8f9fa;
    --white-color: #ffffff;

    /* Gradient */


    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Poppins", sans-serif;

    /* Spacing */
    --section-padding: 30px 0;
    --transition: all 0.3s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

.common-background {
    background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
}

.common-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;

}

.common-title p {
    latter-spacing: 1px;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
}

.common-title h2 span {
    color: var(--secondary-color);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--dark-color);
    padding: 5px 0;
    font-size: 14px;
}

.top-contact {
    margin: 5px 0px;
}

.top-contact a {
    color: var(--light-color);
    margin-right: 25px;
    display: inline-block;
}

.top-contact a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 40%);
    border-radius: 50%;
    color: var(--white-color);
    margin-left: 8px;
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: #080808f0;
    padding: 0px 0;
    transition: var(--transition);
    border-bottom: 0.8px solid #dadada;
    border-top: 0.8px solid #dadada;
}

.navbar.scrolled {
    padding: 0px 0;
}

.navbar-brand {
    max-width: 130px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 3px 6px !important;
    font-size: 14px;
    margin: 0px 5px;
    border-radius: 1px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    border-bottom: 1.5px solid var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .dropdown-menu {
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(12, 48, 120, 0.14);
    top: 51px;
    height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

.navbar .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

@media (max-width: 991px) {


    .navbar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, #0d6efd, #0052cc);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.96)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.2em;
        height: 1.2em;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid #ffff;
        background: linear-gradient(180deg, #bbd62e7d 0%, #f16822 100%);
    }

    .navbar-nav {
        gap: 6px;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 4px 8px !important;
        border-radius: 3px;
    }

    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    .navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 6px;
        border-radius: 12px;
        box-shadow: none;
        background: #f2f7ff;
        height: auto;
    }

    .navbar .btn.ms-3 {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
    }

    .navbar .dropdown-item {
        padding: 2px 5px;
        font-weight: 500;
        font-size: 12px;
    }
}



/* ========================================
   Buttons
   ======================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-color);
    border: 1px solid #B3CE0B;
    box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
    font-size: 15px;
    border-radius: 5px !important;
    text-transform: capitalize;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(231, 130, 6, 0.4);
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline-primary {
    background: transparent;
    color: var(--white-color);

    border: 1px solid var(--white-color);
    box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
    font-size: 15px;
    border-radius: 5px !important;
}

/* Hero Section  */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url('/assets/images/herobanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    width: 100%;
}




.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    max-width: 470px;
}

.hero-content h1 {
    font-size: 51px;
    line-height: 1.2;
}

.hero-experts {
    color: var(--secondary-color)
}

.hero-trusted {
    color: var(--primary-color)
}

.hero-top-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-app-download {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 30px;
}

.hero-app-download .store-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-app-download .store-btn img {
    width: 180px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 247, 247, 0.457);
}

.hero-app-download .store-btn:hover {
    transform: translateY(-5px);
}

.hero-app-download .store-btn:hover img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.home-stats {
    position: relative;
    z-index: 10;
}

.home-stats-section {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
    margin-top: -30px;

}

.home-stats-wrapper {
    border-radius: 10px;
    padding: 15px 10px;
    border: 0.8px solid #d2d2d23a;
}

.home-stats-card {
    text-align: center;
    color: #fff;
    padding: 10;
    border-right: 1px solid rgba(195, 255, 0, 0.2);
    height: 100%;
}

.home-stats-card i {
    font-size: 42px;
    color: #c3ff00;
    margin-bottom: 15px;
}

.home-stats-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.home-stats-card h6 {
    color: #c3ff00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.home-stats-card p {
    color: #d2d2d2;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Starting About Us */
.about-us-text {
    font-size: 15px;
    line-height: 1.4;
    color: #d2d2d2;
}


.hm-about-us-list {
    margin-top: 20px;
}

.hm-about-us-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hm-about-us-list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    background: #f168221a;
}



.hm-about-us-list-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hm-about-us-list-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.hm-about-us-list-content p {
    margin: 0;
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.3;

}

/* About Our App */

.hm-about-our-app-content ul {
    list-style: none;
    padding: 0;

}

.hm-about-our-app-content ul li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #d2d2d2;
    margin-bottom: 10px;
}

.hm-about-our-app-content ul li::before {
    content: "\F26E";
    /* Bootstrap Icons check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #c6ff00;
    color: #000;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(198, 255, 0, 0.35);
}


/* About the Brand */
.brand-image-wrapper {
    height: 100px;
    width: 100%;
}

.brand-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: inherit;
}

.common-title-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #c6ff00;
}

.common-title-new::before,
.common-title-new::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #c8ff0056;
    /* apna brand color */
    border-radius: 10px;
}

/* Why choose Us */
#whychooseus {
    background: #000;
}

.why-choose-card {
    background: rgb(25 25 25);
    border: 0.8px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;

    text-align: center;
    height: 100%;
    transition: all .4s ease;
}

.why-choose-card:hover {
    border-color: #c6ff00;
    box-shadow: 0 15px 35px rgba(198, 255, 0, 0.15);
}

.why-choose-card-icon {
    margin-bottom: 0px;
}

.why-choose-card-icon i {
    font-size: 35px;
    color: #c6ff00;
}

.why-choose-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.why-choose-card p {
    color: #d2d2d2;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Testimonial card */
.customer-testimonial-card {
    padding: 30px 15px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 0.5px solid #f1f1f1;
}

.customer-testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(245, 136, 2, 0.12);
}

.customer-testimonial-rating {
    margin-bottom: 10px;
}

.customer-testimonial-rating i {
    color: #FFC107;
    font-size: 18px;
    margin-right: 3px;
}

.customer-testimonial-card p {
    font-size: 15px;
    line-height: 1.4;
    color: #d2d2d2;
    margin-bottom: 10px;
    min-height: 60px;
}

.customer-testimonial-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #c6ff00;
    margin: 0;
}

/* Map Section */
.home-map-wrapper {
    background: linear-gradient(90deg, #111, #1b1b1b);
    border-radius: 20px;
    /* padding: 25px; */
    overflow: hidden;
}

.home-map-contact-info {
    padding-right: 20px;
}

.home-map-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.home-map-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid #c6ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-map-icon i {
    color: #c6ff00;
    font-size: 20px;
}

.home-map-content p {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.home-map-box {
    border: 3px solid #c6ff00;
    border-radius: 15px;
    overflow: hidden;
}

.home-map-box iframe {
    width: 100%;
    height: 275px;
    border: 0;
}


/* FAQ */
.faq-accordion .faq-item {
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid #fff;
}

.faq-accordion .accordion-button {
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #191919;
    box-shadow: none;
    line-height: 1.3;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #191919;
    color: #ff6b00;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 9px 10px;
    font-size: 15px;
    line-height: 1.3;
    background: #191919;
    color: rgba(255, 255, 255, 0.7);
}

.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #c6ff00;

    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;
}

/* Open state */
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}



/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.202);
}

.footer-logo-warpper img {
    width: 150px;
    border-radius: 5px;
    padding: 5px 3px;
}

.footer-widget a {
    text-decoration: none;
    color: inherit;
}

.footer-widget h2,
.footer-widget h4 {
    color: var(--primary-color);
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 27%);
    border-radius: 30px;
    color: var(--white-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    color: #000;
}

.footer-widget h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, #ff6b35, #ff9a6b);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(236, 76, 17, 0.727);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links li i {
    margin-right: 8px;
    color: var(--primary-color);
    margin-right: 2px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}



.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}






/* Mobile */
@media (max-width: 991px) {

    .home-stats-section {
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-top-sub-title {
        font-size: 14px;
        margin-top: 30px;

    }

    .hero-buttons,
    .hero-app-download {
        gap: 10px
    }



}

@media (max-width: 767px) {

    .home-stats-card i {
        font-size: 25px;
    }

    .home-stats-card h3 {
        font-size: 14px;
    }

    .home-stats-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .home-stats-card h6 {
        font-size: 10px;
    }

    .common-title h2 {
        font-size: 24px;
    }

    .common-title p {
        font-size: 15px;
    }

    .footer {
        padding: 15px 0 0;
    }

    .home-map-box iframe {
        height: 250px;
    }


}


/* ========================================
   Hide Unhide in Desk and Mob view Css
   ======================================== */
/* sowing in mobile anf desktop */
@media (max-width: 991px) {
    .hide-on-mob-view {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none !important;
    }
}