 /********** Modern Theme **********/
:root {
    --primary: #2563eb;
    --primary-soft: rgba(37, 99, 235, 0.08);
    --secondary: #f97316;
    --accent: #22c55e;
    --light: #f3f4f6;
    --dark: #0f172a;
    --surface: #ffffff;
    --border-subtle: rgba(15, 23, 42, 0.06);
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --transition-fast: 180ms ease-out;
    --transition-med: 260ms ease-out;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08), transparent 55%),
        #f9fafb;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b1220;
}

p {
    color: #4b5563;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 26px;
    bottom: 26px;
    z-index: 99;
    border-radius: 999px !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity var(--transition-med), transform var(--transition-med), box-shadow var(--transition-fast);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.32);
}


/*** 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: 600;
    border-radius: 999px;
    padding-inline: 1.5rem;
    padding-block: 0.7rem;
    letter-spacing: 0.02em;
    transition: background-color var(--transition-fast), color var(--transition-fast),
        box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
    border: none;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
}

.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 ***/
.top-bar {
    height: 72px;
    padding: 0 4rem;
}

.nav-bar {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.nav-bar.bg-light {
    background-color: #ffffff !important;
}

.nav-bar .navbar {
    border-radius: 0;
    padding-inline: 1.5rem !important;
    padding-block: 0.4rem !important;
    margin: 0;
    max-width: 100%;
    box-shadow: none;
    background-color: #ffffff !important;
    border: none;
}

.nav-bar.sticky-top {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 9999;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 22px;
    padding: 18px 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    letter-spacing: 0.06em;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--primary), #38bdf8);
    transition: width var(--transition-med);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Nav Book Demo button */
.nav-book-demo-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #f9fafb;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.5);
    border: 1px solid rgba(191, 219, 254, 0.7);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.2s ease-out;
}

.nav-book-demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(30, 64, 175, 0.7);
    color: #f9fafb;
}

@media (max-width: 991.98px) {
    .nav-book-demo-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.4);
    }
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        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;
    }
}




/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Service / Card Surfaces ***/
.service-item-top img {
    transition: transform var(--transition-med);
}

.service-item-top .bg-light {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 55%),
        var(--surface) !important;
    transform: translateY(0);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.service-item-top:hover img {
    transform: scale(1.05);
}

.service-item-top:hover .bg-light {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}

/* Project logo cards inside service carousel */
.project-card {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card-img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    filter: saturate(1.1);
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.2);
}

.project-card:hover .project-card-img {
    transform: scale(1.04);
}

/* Modern focus animation: center item bright, side items slightly faded */
.service-carousel .owl-item {
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
}

/* Default state for any card inside the carousel (services + projects) */
.service-carousel .owl-item > .bg-light,
.service-carousel .owl-item .project-card {
    opacity: 0.45;
    transform: scale(0.92);
    filter: saturate(0.85);
}

/* Active center item */
.service-carousel .owl-item.active.center > .bg-light,
.service-carousel .owl-item.active.center .project-card {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.05);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    transform: translateY(0);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.team-item img {
    transition: transform var(--transition-med), filter var(--transition-med);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
    border-color: rgba(37, 99, 235, 0.35);
}

.team-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.team-item .position-relative {
    height: 260px;
    overflow: hidden;
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform var(--transition-med), background-color var(--transition-med), color var(--transition-med);
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #ffffff;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #ffffff;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer {
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.85), #020617);
}

/* Improve base text contrast inside dark footer */
.footer,
.footer p,
.footer address,
.footer li,
.footer h4,
.footer h6,
.footer span {
    color: #f9fafb;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(248, 250, 252, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.footer .btn.btn-social:hover {
    color: #eff6ff;
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.9);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(56, 189, 248, 0.9));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 6px;
    padding: 0;
    text-align: left;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    transition: color var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
    opacity: 0.92;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    box-shadow: none;
    transform: translateX(4px);
    color: #ffffff;
    opacity: 1;
}

.footer .copyright {
    padding: 22px 0;
    font-size: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.45);
    color: rgba(209, 213, 219, 0.9);
}

.footer .copyright a {
    color: #e5e7eb;
}

/* Client heading styling on product page */
.client-section {
    max-width: 960px;
    margin-inline: auto;
}

.client-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    color: #6b7280;
}

.client-heading {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111827;
}

.client-heading span {
    color: #2563eb;
}

.client-subtitle {
    font-size: 15px;
    color: #4b5563;
}

/* Footer mobile improvements */
@media (max-width: 768px) {
    .footer {
        padding-top: 2rem !important;
    }
    
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer address p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer .btn.btn-link {
        font-size: 14px;
    }
    
    .footer .copyright {
        padding: 15px 0;
        font-size: 13px;
        text-align: center;
    }
}


.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
}

.product-item {
    flex: 0 0 auto;
    padding: 10px 20px;
    white-space: nowrap;
    /* background: #fff; */
    margin: 0 10px;
    border-radius: 5px;
    transition: transform 0.3s, background 0.3s;
    /* background: #1E60AA  !important; */
    color: white;
    display: inline-block;
    /* padding: 0 20px; */
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.iframeWidth {
    width: 500px;
}

html {
    width: 100%;
}

.cardsPricing {
    width: 100%;
}

.desktopView {
    width: fit-content;
}

@media (min-width:320px) and (max-width:990px) {
    .desktopView {
        width: auto !important;
    }

    .mobileView {
        display: block;
    }

    .mobileView button {
        padding: 1rem 2rem !important;
    }

    .iframeWidth {
        width: 100%;
        max-width: 380px;
    }

    .cols {
        display: block !important;
    }

    .hidden {
        display: none;
    }

    .header-carousel .owl-carousel-item img {
        max-height: 250px !important;
    }

    .pricingproduct {
        padding-left: 24px !important;
        text-align: center;
    }

    .cardsPricing {
        height: auto !important;
        width: 100% !important;
    }

    .success-msg {
        margin: 0px 10px !important;
    }

    .danger-msg {
        margin: 0px 10px !important;
    }

    form {
        width: auto !important;
    }

    .card i.fas {
        display: none;
    }
    
    /* Navbar CTA button improvements */
    .nav-bar .bg-primary {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Better container padding on mobile */
    .container-fluid.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (min-width:120px) and (max-width:319px) {
    .whochooseus {
        width: 290px !important;
    }

    .iframeWidth {
        width: 270px !important;
    }

    .header-carousel .owl-carousel-item img {
        max-height: 250px !important;
    }

    .hidden {
        display: none;
    }

    .cols {
        display: block !important;
    }
}

@media (max-width:420px) {
    html {
        width: 100%;
        max-width: 100%;
    }

    .header-carousel .owl-carousel-item img {
        max-height: 250px !important;
    }

    .hidden {
        display: none;
    }
    
    /* Extra small devices - better text sizing */
    .service-detail-quote {
        font-size: 13px;
        padding: 10px;
        padding-left: 12px;
    }
    
    /* Module cards on very small screens */
    .bg-primary.p-2,
    .bg-primary.p-3 {
        font-size: 12px;
        padding: 8px 4px !important;
    }
    
    /* Better button sizing */
    .btn-primary {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

.service-detail-quote {
    font-size: 15px;
    color: #2980b9;
    margin-bottom: 30px;
    border-left: 6px solid #3498db;
    padding-left: 20px;
    background: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
}

/* Mobile improvements for service detail pages */
@media (max-width: 768px) {
    .service-detail-quote {
        font-size: 14px;
        padding: 12px;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    
    /* Better spacing for feature lists on mobile */
    .list-unstyled li {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Module cards better spacing on mobile */
    .bg-primary.p-2,
    .bg-primary.p-3 {
        font-size: 14px;
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better text alignment on mobile */
    .text-center.text-lg-start {
        text-align: center !important;
    }
    
    /* Container improvements */
    .container-fluid.py-5.px-4.px-lg-0 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Better spacing for sections */
    section.container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

.un-form-group {
    margin-bottom: 15px;
}

form {
    padding: 20px;
}


.wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.wrapper.show {
    right: 20px;
}

.wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

header i {
    color: #4070f4;
    font-size: 32px;
}

header h2 {
    color: #4070f4;
    font-weight: 500;
}

.wrapper .data {
    margin-top: 16px;
}

.wrapper .data p {
    color: #333;
    font-size: 16px;
}

.data p a {
    color: #4070f4;
    text-decoration: none;
}

.data p a:hover {
    text-decoration: underline;
}

.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons #acceptBtn:hover {
    background-color: #034bf1;
}

#declineBtn {
    border: 2px solid #4070f4;
    background-color: #fff;
    color: #4070f4;
}

#declineBtn:hover {
    background-color: #4070f4;
    color: #fff;
}

.invalid-feedback {
    text-align: left;
}

.success-msg {
    color: #270;
    background-color: #DFF2BF;
    margin: 0px 200px;
    text-align: center;
    padding: 20px 0px;
    border-radius: 5px;
}

.danger-msg {
    margin: 0px 200px;
    text-align: center;
    padding: 20px 0px;
    border-radius: 5px;
    color: #D8000C;
    background-color: #FFBABA;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #270;
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.warning-msg {
    color: #9F6000;
    background-color: #FEEFB3;
}










/* Hero Section Base */
.hero-section {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 96px 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-three-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Background overlay above three.js canvas */
.hero-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.85), transparent 60%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.96), #020617);
    mix-blend-mode: multiply;
    opacity: 0.96;
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #f9fafb;
    letter-spacing: -0.03em;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-title.is-changing {
    opacity: 0;
    transform: translateY(-8px);
}

.hero-description {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.92);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-description.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.hero-buttons .hero-secondary-btn {
    border-radius: 999px;
    border-width: 1px;
    border-color: rgba(226, 232, 240, 0.9);
    padding-inline: 1.4rem;
    padding-block: 0.65rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.35);
}

.hero-buttons .hero-secondary-btn:hover {
    color: #0f172a;
    background: #e5e7eb;
}

.hero-stats-card {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(18px);
}

.hero-stats-row {
    display: flex;
    gap: 18px;
}

.hero-stat {
    flex: 1;
}

.hero-stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(148, 163, 184, 0.95);
}

.hero-stat-value {
    display: block;
    margin-top: 4px;
    font-size: 22px;
    font-weight: 600;
    color: #e5e7eb;
}

/* Vertical Dots */
.vertical-indicators {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vertical-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vertical-indicators .dot.active {
    background-color: #00eaff;
    box-shadow: 0 0 5px #00eaff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-stats-card {
        margin-top: 24px;
    }
}
.bg-light {
    background-color: white !important
}

