/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

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


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

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


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}




/* ============================================
   MODERN SAAS FIXED HEIGHT OVERLAY NAVBAR
   ============================================
   Design Reference: Stripe.com, Vercel.com
   - Fixed navbar height (70px desktop, 60px mobile)
   - Logo scales inside container without pushing height
   - Overlay style with gradient backdrop for readability
   - Fully responsive with smooth transitions
   ============================================ */

/* CSS Custom Properties for Navbar */
:root {
    --navbar-height-mobile: 75px;
    --navbar-height-desktop: 90px;
    --navbar-logo-max-height-mobile: 55px;
    --navbar-logo-max-height-desktop: 70px;
}

/* Base Navbar - Mobile First */
.navbar {
    height: var(--navbar-height-mobile);
    min-height: var(--navbar-height-mobile);
    max-height: var(--navbar-height-mobile);
    padding: 0 1rem;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom,
            rgba(9, 30, 62, 0.7) 0%,
            rgba(9, 30, 62, 0.4) 60%,
            transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

/* Navbar Brand Container */
.navbar-brand {
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Logo - Contained within fixed height */
.navbar-logo {
    height: 150px;
    /* max-height: ; */
    width: auto;
    max-width: 120px;
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
    /* filter: drop-shadow(0 2px 8px rgba(6, 163, 218, 0.4)); */
    display: block;
    max-height: max-content !important;
}

/* Mobile Toggler */
.navbar-toggler {
    height: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 163, 218, 0.5);
    border-radius: 8px;
    background: rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.25);
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(6, 163, 218, 0.2);
    border-color: var(--primary);
}

.navbar-toggler .fa-bars {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Navigation Links - Mobile */
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 0;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: color 0.3s ease;
}

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

.navbar-dark .navbar-brand h1 {
    color: #ffffff;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(6, 163, 218, 0.5);
}

/* Mobile Dropdown Menu */
.navbar-collapse {
    position: absolute;
    top: var(--navbar-height-mobile);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--navbar-height-mobile));
    overflow-y: auto;
    background: rgba(9, 30, 62, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 163, 218, 0.2);
    padding: 0.5rem 1rem 1rem;
}

.navbar-nav {
    padding-top: 0.5rem;
}

/* ===== TABLET STYLES (768px+) ===== */
@media (min-width: 768px) {
    .navbar-logo {
        max-height: calc(var(--navbar-logo-max-height-mobile) + 5px);
        max-width: 150px;
    }
}

/* ===== DESKTOP STYLES (992px+) ===== */
@media (min-width: 992px) {
    .navbar {
        height: var(--navbar-height-desktop);
        min-height: var(--navbar-height-desktop);
        max-height: var(--navbar-height-desktop);
        padding: 0 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-logo {
        max-height: var(--navbar-logo-max-height-desktop);
        max-width: 180px;
    }

    /* Reset collapse for desktop */
    .navbar-collapse {
        position: static;
        max-height: none;
        overflow: visible;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        padding: 0;
    }

    .navbar-nav {
        padding-top: 0;
    }

    .navbar-dark .navbar-nav .nav-link {
        margin-left: 25px;
        padding: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        line-height: var(--navbar-height-desktop);
        display: flex;
        align-items: center;
        height: var(--navbar-height-desktop);
    }

    /* Underline effect on hover */
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 15px;
        left: 50%;
        background: linear-gradient(90deg, var(--primary), #34AD54);
        transition: all 0.4s ease;
        border-radius: 1px;
    }

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

    .navbar-dark .navbar-brand h1 {
        color: #FFFFFF;
    }

    /* Sticky/Scrolled State */
    .sticky-top.navbar-dark {
        position: fixed;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .sticky-top .navbar-logo {
        max-height: 45px;
        max-width: 160px;
        filter: none;
    }

    .sticky-top.navbar-dark .navbar-nav .nav-link {
        color: var(--dark);
    }

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

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/* ===== LARGE DESKTOP (1200px+) ===== */
@media (min-width: 1200px) {
    .navbar {
        padding: 0 5rem;
    }

    .navbar-logo {
        max-height: calc(var(--navbar-logo-max-height-desktop) + 5px);
        max-width: 200px;
    }

    .navbar-dark .navbar-nav .nav-link {
        margin-left: 30px;
        font-size: 16px;
    }
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    @media (min-width: 992px) {
        .navbar {
            padding-left: max(3rem, env(safe-area-inset-left));
            padding-right: max(3rem, env(safe-area-inset-right));
        }
    }
}

/* Container Reset - Ensure no white space */
.container-fluid.position-relative.p-0 {
    padding: 0;
    margin: 0;
}



/*** Carousel ***/
#header-carousel {
    position: relative;
    min-height: 700px;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 30, 62, 0.85) 0%, rgba(6, 163, 218, 0.6) 100%);
    z-index: 1;
}

.carousel-item {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: center;
    transition: transform 12s ease-in-out;
    filter: brightness(0.7);
}

.carousel-item.active img {
    transform: scale(1.2);
}

/* Animated Grid Overlay with Movement */
.animated-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(6, 163, 218, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 163, 218, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

/* Particle Overlay Effect */
.particle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(6, 163, 218, 0.3) 0%, transparent 3%),
        radial-gradient(circle at 80% 70%, rgba(52, 173, 84, 0.3) 0%, transparent 3%),
        radial-gradient(circle at 40% 80%, rgba(6, 163, 218, 0.2) 0%, transparent 2%),
        radial-gradient(circle at 90% 20%, rgba(52, 173, 84, 0.2) 0%, transparent 2%),
        radial-gradient(circle at 60% 50%, rgba(6, 163, 218, 0.25) 0%, transparent 2.5%);
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 1;
    }

    75% {
        transform: translateY(-20px) translateX(15px);
        opacity: 0.7;
    }
}

.carousel-item::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 163, 218, 0.4) 0%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    top: -10%;
    left: -10%;
    z-index: 2;
    animation: floatingBlob1 8s infinite ease-in-out;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(52, 173, 84, 0.35) 0%, transparent 70%);
    filter: blur(90px);
    border-radius: 50%;
    bottom: -10%;
    right: -10%;
    z-index: 2;
    animation: floatingBlob2 10s infinite ease-in-out reverse;
}

@keyframes floatingBlob1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@keyframes floatingBlob2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.15);
    }

    66% {
        transform: translate(25px, 15px) scale(0.95);
    }
}

/* Zenix Badge Styling */
.zenix-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.9) 0%, rgba(52, 173, 84, 0.9) 100%);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow:
        0 5px 20px rgba(6, 163, 218, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: badgePulse 3s ease-in-out infinite;
}

.zenix-badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s linear infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 5px 20px rgba(6, 163, 218, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow:
            0 5px 30px rgba(6, 163, 218, 0.6),
            0 0 40px rgba(52, 173, 84, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes badgeShine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

/* Enhanced Glass Caption */
.glass-caption {
    background: rgba(9, 30, 62, 0.15) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(6, 163, 218, 0.3);
    border-radius: 35px;
    padding: 60px !important;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(6, 163, 218, 0.2);
    position: relative;
    overflow: hidden;
    animation: glassFloat 6s ease-in-out infinite;
}

.glass-caption::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            rgba(6, 163, 218, 0.5),
            rgba(52, 173, 84, 0.5),
            rgba(6, 163, 218, 0.5));
    border-radius: 35px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    animation: borderGlow 3s linear infinite;
}

.glass-caption:hover::before {
    opacity: 1;
}

@keyframes glassFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        filter: blur(10px);
        opacity: 0.5;
    }

    50% {
        filter: blur(15px);
        opacity: 0.8;
    }
}

/* Advanced Text Gradient */
.text-gradient-advanced {
    background: linear-gradient(90deg,
            #ffffff 0%,
            #06A3DA 25%,
            #34AD54 50%,
            #06A3DA 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: advancedShine 6s linear infinite;
    text-shadow: 0 0 30px rgba(6, 163, 218, 0.5);
    position: relative;
}

@keyframes advancedShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

/* Advanced Button Glow */
.btn-glow-advanced {
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(6, 163, 218, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary) 0%, #0891c7 100%);
    border: 2px solid rgba(6, 163, 218, 0.5);
}

.btn-glow-advanced:hover {
    box-shadow:
        0 0 40px rgba(6, 163, 218, 0.9),
        0 0 60px rgba(52, 173, 84, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(6, 163, 218, 0.8);
}

.btn-glow-advanced::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow-advanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glow-advanced::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s linear infinite;
}

@keyframes buttonShine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

/* Carousel Indicators Styling */
.carousel-indicators {
    z-index: 3;
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(6, 163, 218, 0.6);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #06A3DA 0%, #34AD54 100%);
    box-shadow: 0 0 15px rgba(6, 163, 218, 0.8);
}

/* Mobile First Carousel Responsive Styles */
@media (max-width: 576px) {
    #header-carousel {
        min-height: 450px;
        margin-top: 0;
    }

    .carousel-item {
        min-height: 450px;
    }

    .carousel-item img {
        min-height: 450px;
        object-fit: cover;
        object-position: center;
    }

    .carousel-caption {
        padding: 0 1rem;
    }

    .zenix-badge {
        font-size: 9px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .carousel-caption h5 {
        font-size: 10px;
        font-weight: 500 !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.5px;
    }

    .carousel-caption h1 {
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .carousel-caption p {
        font-size: 11px;
        margin-bottom: 12px !important;
        line-height: 1.4;
    }

    .glass-caption {
        padding: 15px 12px !important;
        border-radius: 15px;
        backdrop-filter: blur(15px);
        max-width: 100% !important;
    }

    .carousel-caption .btn {
        font-size: 10px;
        padding: 6px 12px !important;
        margin: 4px 2px !important;
        display: inline-block;
    }

    .carousel-item::before,
    .carousel-item::after {
        width: 150px;
        height: 150px;
    }

    .carousel-indicators {
        margin-bottom: 1rem;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators button.active {
        width: 24px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    #header-carousel {
        min-height: 500px;
    }

    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
    }

    .zenix-badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .carousel-caption h5 {
        font-size: 12px;
    }

    .carousel-caption h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .carousel-caption p {
        font-size: 13px;
    }

    .glass-caption {
        padding: 25px 20px !important;
        border-radius: 20px;
    }

    .carousel-caption .btn {
        font-size: 12px;
        padding: 8px 18px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #header-carousel {
        min-height: 550px;
    }

    .carousel-item {
        min-height: 550px;
    }

    .carousel-item img {
        min-height: 550px;
    }

    .zenix-badge {
        font-size: 12px;
        padding: 10px 24px;
    }

    .carousel-caption h5 {
        font-size: 13px;
    }

    .carousel-caption h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .glass-caption {
        padding: 35px 25px !important;
        border-radius: 25px;
    }

    .carousel-caption .btn {
        font-size: 13px;
        padding: 10px 22px !important;
    }
}

/* Premium Carousel Controls */
.premium-carousel-btn {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
    margin: 0 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-control-prev.premium-carousel-btn {
    left: 0;
}

.carousel-control-next.premium-carousel-btn {
    right: 0;
}

.carousel-btn-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.premium-carousel-btn:hover .carousel-btn-icon {
    background: var(--primary);
    border-color: rgba(6, 163, 218, 0.5);
    transform: scale(1.1);
    color: #ffffff;
    box-shadow:
        0 0 30px rgba(6, 163, 218, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.4);
}

.premium-carousel-btn:active .carousel-btn-icon {
    transform: scale(0.95);
}

/* Mobile responsive carousel controls */
@media (max-width: 768px) {
    .premium-carousel-btn {
        width: 45px;
        height: 45px;
        margin: 0 15px;
    }

    .carousel-btn-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.15);
        /* Slightly more visible on mobile */
    }

    /* Hide on very small screens to keep UI clean, or adjust position */
    @media (max-width: 480px) {
        .premium-carousel-btn {
            margin: 0 10px;
            width: 35px;
            height: 35px;
        }

        .carousel-btn-icon {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
    }
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item img {
    transition: transform 0.5s ease;
}

.z-index-1 {
    z-index: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.feature-item {
    transition: 0.5s;
}

.feature-item:hover {
    margin-top: -10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.5s;
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.3);
}

.feature-item:hover .feature-icon {
    background: var(--dark);
    transform: rotateY(180deg);
}

.feature-item h4 {
    transition: 0.5s;
}

.feature-item:hover h4 {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
    padding: 0;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--dark);
    box-shadow: 0 8px 20px rgba(9, 30, 62, 0.5);
    transform: translateY(-3px);
    color: white;
}

.back-to-top i {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Blog ***/
.blog-item {
    background: #FFFFFF;
    transition: .5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-item:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-15px);
}

.blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(6, 163, 218, 0.9);
    backdrop-filter: blur(5px);
    color: #FFFFFF;
    padding: 4px 15px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-item .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 25px !important;
}

.blog-item h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 15px;
    min-height: 3.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item:hover h4 {
    color: var(--primary);
}

.blog-item p {
    flex-grow: 1;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.read-more-btn i {
    margin-left: 8px;
    transition: 0.3s;
}

.blog-item:hover .read-more-btn i {
    transform: translateX(5px);
}

.link-animated a {
    transition: .5s;
}

/*** Vendor ***/
.vendor-item {
    padding: 15px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: .4s;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin: 5px;
}

.vendor-item img {
    max-width: 160px;
    max-height: 60px;
    width: auto !important;
    object-fit: contain;
    transition: .4s;
}

.vendor-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
}

.vendor-item:hover img {
    transform: scale(1.1);
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*** Page Header ***/
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    margin-bottom: 6rem;
    padding: 6rem 0 8rem 0;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 16px;
    font-weight: 600;
}

.page-header .breadcrumb-item a:hover {
    color: var(--light) !important;
}