/********** Template CSS **********/
/* :root {
    --primary: #16D5FF;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
} */

:root {
    --primary: #ffc107;
    --primary-soft: #e6c35c;
    --secondary: #9a9a9a;

    --bg-black: #0b0b0e;
    --bg-dark: #111116;

    --light: #1a1a1f;
    --dark: #000000;

    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;

    --border-gold: rgba(212, 175, 55, 0.25);
}

* {
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #1a1a1f, var(--bg-black));
    color: var(--text-light);
    font-family: 'Roboto', 'Poppins', sans-serif;
}

p,
span {
    color: var(--text-muted);
}

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

a:hover {
    color: var(--primary-soft);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.navbar.bg-white {
    background: linear-gradient(180deg, #0f0f13, #0b0b0e) !important;
}

.navbar.navbar-light .navbar-nav .nav-link {
    color: var(--text-light) !important;
}

.navbar-brand h2 {
    color: var(--primary) !important;
    font-weight: 700;
}

.navbar-brand img {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}


.navbar .navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    background: #0b0b0e;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.dropdown-item {
    color: var(--text-light);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
}

.navbar .btn-square {
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.navbar .btn-square:hover {
    background: var(--primary) !important;
    color: #000 !important;
}

.navbar-toggler {
    border-color: rgba(212, 175, 55, 0.4);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.hero-header.bg-light {
    background: radial-gradient(circle at top, #1c1c22, #0b0b0e) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}


.hero-header h1 {
    color: var(--text-light);
    font-weight: 700;
}

.hero-header h1 span,
.hero-header h1 strong {
    color: var(--primary);
}

.hero-header p {
    color: var(--text-muted);
    max-width: 520px;
}

.btn-warning {
    background: linear-gradient(135deg, var(--primary), #b8962e);
    border: none;
    color: #000;
    font-weight: 600;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

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

@media (max-width: 767px) {
    .hero-header img {
        max-width: 85%;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-header p {
        font-size: 1rem;
    }
}


@media (max-width: 575px) {
    .btn-warning {
        white-space: normal;
        line-height: 1.4;
        font-size: 1rem;
        /* padding: 0.75rem 1.25rem; */
    }
}

/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


.feature-card {
    background: rgba(0, 0, 0, 0.65);
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.6);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}


.icon-box-clean {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 20px;
    flex-shrink: 0;
}


.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 22px;
}

/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
/* .accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--dark);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #000000;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
} */


.fact-box {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/*** FAQ Accordion ***/

/* .faq-box {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
} */


/* Accordion container */
.accordion .accordion-item {
    background: var(--bg-dark);
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Accordion button */
.accordion .accordion-button {
    background: var(--bg-dark);
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Icon inside button */
.accordion .accordion-button i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Open/active button */
.accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    /* Yellow highlight */
    color: var(--dark);
    /* Dark text on yellow */
}

/* Remove focus outlines */
.accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Arrow indicator */
.accordion .accordion-button::after {
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* Prevent hover effect on open button */
.accordion .accordion-button:hover {
    background: rgba(255, 193, 7, 0.45);
    color: var(--text-light);
}

/* Accordion body */
.accordion .accordion-body {
    background: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.75rem 1.5rem 1rem 3.5rem;
    transition: all 0.3s ease;
}

/* Smooth open body */
.accordion .accordion-collapse.show {
    box-shadow: inset 0 0 15px rgba(255, 193, 7, 0.05);
    border-radius: 0 0 12px 12px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .accordion .accordion-body {
        padding-left: 2.5rem;
        padding-right: 1.5rem;
    }
}


/*** Footer ***/
/* .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
} */

/* Footer Modern Layout */
.footer {
    background: #0b0b0e;
    color: #a0a0a0;
    font-family: 'Poppins', sans-serif;
}

.footer h5 {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer p,
.footer a {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #ffc107;
    padding-left: 5px;
}

/* Newsletter */
.footer-newsletter {
    position: relative;
    margin-top: 15px;
}

.footer-newsletter .form-control {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-newsletter .form-control:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
    background: rgba(255, 193, 7, 0.1);
}

.footer-newsletter .btn-newsletter {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50px;
    padding: 6px 24px;
    background: #ffc107;
    border: none;
    color: #111;
    font-weight: 600;
}

/* .footer-newsletter .btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
} */

/* Social Icons */
.footer .btn-square {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.footer .btn-square:hover {
    background: #ffc107;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.footer img {
    width: 160px;
    margin-bottom: 5px;
}

/* 
.footer .copyright {
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding: 20px 0;
    color: #a0a0a0;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .copyright a {
    color: #ffc107;
    text-decoration: none;

}

.footer .copyright a:hover {
    color: #e6c35c;
} */
.footer .copyright {
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding: 15px 10px;
    color: #a0a0a0;
    font-size: 0.85rem;
    text-align: center;

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

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 360px) {
    .footer .copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .footer .d-flex {
        flex-wrap: wrap;
    }

    .footer-newsletter {
        margin-top: 20px;
    }

    .footer .btn-square {
        margin-bottom: 10px;
    }
}
