/********** Template CSS — ADPIKI Brand Palette **********/

/* ── Google Font: Inter ─────────────────────────────────
   Loaded via <link> in the <head> of default.blade.php.
   We apply it here as the base font.
────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand colours extracted from the ADPIKI logo */
    --primary: #173273;
    /* deep navy blue  (main arrow)    */
    --primary-light: #25489f;
    /* lighter navy for hover states   */
    --secondary: #2BA8E0;
    /* sky / cyan blue (arc highlight) */
    --accent: #C8204A;
    /* crimson red     (red arc)       */
    --light: #F0F4FF;
    /* very pale blue-white            */
    --dark: #0F1B3C;
    /* deep midnight navy              */

    /* Gradient helpers */
    --grad-primary: linear-gradient(135deg, #0F1B3C 0%, #173273 100%);
    --grad-hero: linear-gradient(135deg, rgba(15, 27, 60, .75) 0%, rgba(23, 50, 115, .55) 100%);
}

/* ── Base Typography ───────────────────────────────────── */
body {
    font-family: 'Inter', sans-serif;
    color: #1e2a4a;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

html {
    scroll-behavior: smooth;
}

#about,
#layanan,
#fasilitas,
#keanggotaan,
#pendaftaran,
#pengurus,
#testimoni,
#kontak {
    scroll-margin-top: 85px;
}

.fw-medium {
    font-weight: 600 !important;
}

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


/*** 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;
    transition: all .3s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--grad-primary);
    border: none;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(23, 50, 115, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #25489f 0%, #0F1B3C 100%);
    box-shadow: 0 6px 20px rgba(23, 50, 115, 0.40);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #2BA8E0 0%, #1A8FC4 100%);
    border: none;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(43, 168, 224, 0.25);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: linear-gradient(135deg, #1A8FC4 0%, #2BA8E0 100%);
    box-shadow: 0 6px 20px rgba(43, 168, 224, 0.40);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn.btn-primary,
.btn.btn-secondary {
    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 .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Navbar base: white background, strong navy left border */
.navbar-light {
    background: #ffffff !important;
    border-top: 4px solid var(--primary) !important;
    box-shadow: 0 2px 20px rgba(23, 50, 115, 0.12);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    transition: color .25s ease;
}

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

.navbar-light .btn-primary i {
    transition: transform 0.3s ease;
}

.navbar-light .btn-primary:hover i {
    transform: translateX(4px);
}

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

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

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

/* Navbar brand box: navy gradient */
.navbar-brand.bg-primary {
    background: var(--grad-primary) !important;
    transition: opacity .3s;
}

.navbar-brand.bg-primary:hover {
    opacity: 0.9;
}

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

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 3px;
        bottom: 0;
        left: 50%;
        background: var(--secondary);
        transition: .4s ease;
        border-radius: 2px;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .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;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

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

.page-header {
    background: var(--grad-hero),
        url(../img/header_buildings.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team Items Modern Styling ***/
.service-item,
.price-item,
.team-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(23, 50, 115, 0.05);
    box-shadow: 0 10px 30px rgba(23, 50, 115, 0.04), 0 1px 3px rgba(23, 50, 115, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-item {
    background: linear-gradient(145deg, #ffffff 0%, #f9fbfd 100%);
}

.service-item .overflow-hidden {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.service-item img,
.team-item img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item:hover img {
    transform: scale(1.06) rotate(1deg);
}

.team-item {
    text-align: center;
}

.team-item .overflow-hidden {
    width: 150px;
    height: 150px;
    border-radius: 50% !important;
    margin: 0 auto 1.5rem;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(23, 50, 115, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-item:hover .overflow-hidden {
    transform: scale(1.05) rotate(3deg);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(43, 168, 224, 0.25);
}

/* Modernized Hover Effects */
.service-item:hover,
.team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(23, 50, 115, 0.12), 0 4px 12px rgba(23, 50, 115, 0.05);
    border-color: rgba(43, 168, 224, 0.3);
}

.price-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(23, 50, 115, 0.12), 0 4px 12px rgba(23, 50, 115, 0.05);
    border-color: rgba(43, 168, 224, 0.3);
}

/* Modern Capsule btn-slide */
.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
    background: #f0f4ff;
    padding-right: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-item a.btn-slide i,
.price-item a.btn-slide i,
.team-item div.btn-slide>i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--grad-primary);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.service-item:hover a.btn-slide,
.price-item:hover a.btn-slide {
    background: var(--grad-primary);
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i {
    background: var(--secondary);
    transform: translateX(4px);
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span {
    color: #ffffff;
}

/* Social Media Hover Expansion in Team Card */
.team-item div.btn-slide {
    padding: 4px;
    width: auto;
    justify-content: center;
}

.team-item div.btn-slide>i {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.team-item div.btn-slide span {
    display: flex;
    gap: 8px;
    max-width: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
    opacity: 0;
}

.team-item:hover div.btn-slide {
    background: var(--grad-primary);
}

.team-item:hover div.btn-slide>i {
    background: var(--secondary);
    transform: rotate(360deg);
}

.team-item div.btn-slide:hover span,
.team-item:hover div.btn-slide span {
    max-width: 150px;
    padding: 0 12px 0 8px;
    opacity: 1;
}

.team-item div.btn-slide span a {
    color: #ffffff;
    font-size: 14px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
}

.team-item div.btn-slide span a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary);
    transform: scale(1.1);
}


/*** Testimonial Modern Glassmorphism Styling ***/
.testimonial-carousel .owl-item .testimonial-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(23, 50, 115, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
    border-radius: 24px;
    padding: 2.5rem !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 15px rgba(23, 50, 115, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-avatar-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

.testimonial-carousel .owl-item .testimonial-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(23, 50, 115, 0.1), 0 8px 20px rgba(0, 0, 0, 0.03);
    border-color: rgba(43, 168, 224, 0.2);
}

.testimonial-carousel .owl-item .testimonial-item:hover .testimonial-avatar-wrapper {
    border-color: var(--secondary);
    transform: scale(1.06) rotate(3deg);
    box-shadow: 0 8px 20px rgba(43, 168, 224, 0.25);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568 !important;
    font-style: italic;
}

.testimonial-carousel .owl-item .testimonial-item .fa-quote-right {
    background: linear-gradient(135deg, rgba(255, 226, 89, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    position: absolute;
    top: 20px;
    right: 25px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-item .testimonial-item:hover .fa-quote-right {
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #ffffff;
    border-color: rgba(43, 168, 224, 0.3);
    box-shadow: 0 20px 45px rgba(23, 50, 115, 0.12), 0 0 20px rgba(43, 168, 224, 0.1);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}

.team-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.team-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.team-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background:
        linear-gradient(160deg, rgba(15, 27, 60, .97) 0%, rgba(23, 50, 115, .93) 100%),
        url(../img/map.png) center center no-repeat;
    background-size: cover;
    border-top: 3px solid var(--secondary);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 35px;
    transition: all .3s ease;
}

.footer .btn.btn-social:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer .copyright a {
    color: var(--secondary);
    text-decoration: none;
    transition: color .2s;
}

.footer .copyright a:hover {
    color: #fff;
}

.btn-whatsapp-floating {
    width: 55px;
    transition: width 0.4s ease-in-out, background-color 0.3s, transform 0.2s;
}

.btn-whatsapp-floating:hover {
    width: 185px;
    background-color: #128c7e !important;
    border-color: #128c7e !important;
}

.btn-whatsapp-floating .whatsapp-text {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.btn-whatsapp-floating:hover .whatsapp-text {
    opacity: 1;
    transition-delay: 0.15s;
}


/* ─────────────────────────────────────────────────────────
   ADPIKI Brand Polish
───────────────────────────────────────────────────────── */

/* Section sub-heading label (h6 uppercase) */
h6.text-secondary {
    color: var(--secondary) !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 13px;
}

/* Service & Team card hover styles are fully integrated above in the modern layout section */

/* Back-to-top button — navy gradient */
.back-to-top {
    background: var(--grad-primary) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(23, 50, 115, 0.35);
    transition: all .3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 50, 115, 0.45);
}

/* Contact icon circle — sky-blue accent */
.bg-light.rounded-circle i.text-primary {
    color: var(--secondary) !important;
}

/* Testimonial section bg — soft brand-tinted background */
#testimoni {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: 12px;
}

/* Price header text */
.price-item .text-primary {
    color: var(--primary) !important;
    font-weight: 700;
}

/* Email highlight on Fact section */
.text-primary.m-0 {
    color: var(--primary) !important;
    font-weight: 700;
}

/* Divider line under section title (contact section) */
.bg-primary.mx-auto {
    background: var(--grad-primary) !important;
    height: 4px !important;
    border-radius: 4px;
}

/* Footer link hover — sky blue */
.footer .btn.btn-link:hover {
    color: var(--secondary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}


/* ── Gold Gradient Icons ───────────────────────────────── */
.icon-gold {
    /* Gold degradasi: from amber-gold → deep gold → warm bronze */
    background: linear-gradient(145deg, #FFE259 0%, #FFA500 45%, #CC7A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 6px rgba(255, 180, 0, 0.35));
    transition: filter .3s ease, transform .3s ease;
    display: inline-block;
}

.icon-gold:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 180, 0, 0.55));
    transform: scale(1.08);
}


/* ── Navbar Dropdown Menu Override ────────────────────── */
.navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(23, 50, 115, 0.15);
    overflow: hidden;
    padding: 6px 0;
}

.navbar .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #1e2a4a;
    padding: 10px 20px;
    transition: all .2s ease;
    border-left: 3px solid transparent;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #f0f4ff;
    color: var(--primary);
    border-left-color: var(--primary);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background: var(--grad-primary);
    color: #ffffff !important;
    border-left-color: var(--secondary);
}

/* ── Premium Stats Card ────────────────────────────────── */
.premium-stats-card {
    background: linear-gradient(145deg, #0F1B3C 0%, #173273 100%);
    border: 1px solid rgba(43, 168, 224, 0.35);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(15, 27, 60, 0.25), 0 0 30px rgba(43, 168, 224, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.premium-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 168, 224, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.6s ease;
}

.premium-stats-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(43, 168, 224, 0.7);
    box-shadow: 0 25px 50px rgba(15, 27, 60, 0.35), 0 0 40px rgba(43, 168, 224, 0.3);
}

.premium-stats-card:hover::before {
    transform: translate(10%, 10%);
}

/* Pulse indicator for live database connection */
.live-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(46, 196, 182, 0.3);
    border-radius: 30px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #e0fbf7;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(46, 196, 182, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

/* Card Content Styling */
.stats-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(43, 168, 224, 0.2) 0%, rgba(23, 50, 115, 0.4) 100%);
    border: 1px solid rgba(43, 168, 224, 0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2BA8E0;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.premium-stats-card:hover .stats-icon-wrapper {
    background: linear-gradient(135deg, rgba(43, 168, 224, 0.3) 0%, rgba(23, 50, 115, 0.6) 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(43, 168, 224, 0.3);
    transform: rotate(5deg);
}

.stats-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #a4e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    letter-spacing: -1px;
}

.stats-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.stats-description {
    font-size: 0.95rem;
    color: #a4b3d6;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ── Premium Header Carousel Styles ─────────────────────── */
.header-carousel-item {
    position: relative;
    overflow: hidden;
}

.header-carousel h1.display-3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Highlight span colors inside banner titles to look elegant */
.header-carousel h1.display-3 span.text-danger,
.header-carousel h1.display-3 span.text-primary,
.header-carousel h1.display-3 span[style*="color"],
.header-carousel h1.display-3 font[color] {
    background: linear-gradient(135deg, #2BA8E0 0%, #00d2ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.header-carousel h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 0.95rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-carousel p.fs-5 {
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.7 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header-carousel .btn {
    border-radius: 50px !important;
    padding: 0.9rem 2.25rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.header-carousel .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(43, 168, 224, 0.3) !important;
}

.header-carousel .btn-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px);
}

.header-carousel .btn-secondary:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--dark) !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25) !important;
}

/* Ken Burns Zoom Effect for Header Carousel */
.header-carousel .owl-carousel-item {
    overflow: hidden !important;
}

.header-carousel .owl-item.active img {
    animation: kenburns-effect 7s ease-out both;
}

@keyframes kenburns-effect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}