/********** Template CSS **********/
:root {
    --primary: #4f46e5; /* Electric Indigo */
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --secondary: #ff5a1f; /* Coral Growth Orange */
    --secondary-gradient: linear-gradient(135deg, #ff5a1f 0%, #ff8f3d 100%);
    --accent: #0d9488; /* Emerald Teal */
    --accent-gradient: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
    --dark: #0f172a; /* Deep Slate */
    --dark-card: #1e293b;
    --light: #f8fafc; /* Cool White */
    --text-muted: #64748b;
    --white: #ffffff;
}

/* Custom Text Gradients */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-secondary {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphic Fixed Header */
.navbar.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
    animation: slideInNav 0.4s ease-out;
}

@keyframes slideInNav {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Nav Item Underline Animation */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 12px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 24px;
}

/* Premium Badges */
.badge-premium {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.badge-secondary-premium {
    background: rgba(255, 90, 31, 0.08);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid rgba(255, 90, 31, 0.15);
}

/* Premium Cards */
.card-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: rgba(79, 70, 229, 0.15);
}

/* Glow Effect */
.glow-on-hover {
    transition: all 0.3s ease;
}
.glow-on-hover:hover {
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.12) !important;
}

/* Custom Re-theming Overrides for Precompiled Bootstrap */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.bg-primary {
    background: var(--primary-gradient) !important;
}
.bg-secondary {
    background: var(--secondary-gradient) !important;
}
.bg-dark {
    background-color: var(--dark) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}

/* Custom Typography & Animations */
body {
    font-family: 'Heebo', 'Nunito', sans-serif;
    color: #334155;
    background-color: #fbfcfe;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    display: none !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: all .3s ease;
    border-radius: 30px;
    padding: 10px 24px;
}

.btn.btn-primary {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.btn.btn-primary:hover {
    background: var(--secondary-gradient) !important;
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.35);
    transform: translateY(-2px);
}

.btn.btn-secondary {
    background: var(--secondary-gradient) !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
}

.btn.btn-secondary:hover {
    background: var(--primary-gradient) !important;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.35);
    transform: translateY(-2px);
}

.btn-square {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
}

.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-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@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 #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}




/*** Header carousel ***/
.header-carousel .owl-carousel-item {
    position: relative;
    height: auto !important;
    min-height: 0 !important;
}

.header-carousel .owl-carousel-item img {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.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;
    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: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    transition: .3s ease-out;
}

.service-item:hover {
    transform: translateY(-8px);
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    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-dots {
    margin-top: 24px;
    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;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.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(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Custom BrainX Gurukul & NEEM Styling Elements */
.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* Program Card Designs */
.program-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.15);
}

.program-card:hover::before {
    width: 8px;
    background: var(--secondary-gradient);
}

.program-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 26px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
}

.program-card:hover .program-icon-wrapper {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Color variations for Program Icons to make the grid lively and colorful */
.icon-variant-1 { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.icon-variant-2 { color: #0ea5e9; background: rgba(14, 165, 233, 0.1); }
.icon-variant-3 { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.icon-variant-4 { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.icon-variant-5 { color: #ec4899; background: rgba(236, 72, 153, 0.1); }
.icon-variant-6 { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
.icon-variant-7 { color: #f43f5e; background: rgba(244, 63, 94, 0.1); }

.program-card:hover .icon-variant-1 { background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%); }
.program-card:hover .icon-variant-2 { background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%); }
.program-card:hover .icon-variant-3 { background: linear-gradient(135deg, #f59e0b 0%, #ff7a00 100%); }
.program-card:hover .icon-variant-4 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.program-card:hover .icon-variant-5 { background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%); }
.program-card:hover .icon-variant-6 { background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); }
.program-card:hover .icon-variant-7 { background: linear-gradient(135deg, #f43f5e 0%, #f97316 100%); }

/* NEEM Mission Pillars */
.pillar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-bottom: 3px solid #e2e8f0;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.1);
}

.pillar-icon {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Featured Section Overlays */
.gradient-overlay {
    background: linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.85)) !important;
}

/* Service Item Modern Overrides */
.service-item {
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(79, 70, 229, 0.05);
}

/* Glass Badge */
.badge-premium {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
}

.badge-secondary-premium {
    background: rgba(255, 122, 0, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
}

/* --- BrainX Colorful UI Extensions --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-secondary {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.bg-light-primary {
    background-color: rgba(79, 70, 229, 0.04) !important;
}

.bg-light-secondary {
    background-color: rgba(255, 122, 0, 0.04) !important;
}

.bg-light-accent {
    background-color: rgba(16, 185, 129, 0.04) !important;
}

/* Neon Glow Effects on Hover */
.glow-on-hover {
    transition: all 0.3s ease;
}
.glow-on-hover:hover {
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35) !important;
    transform: translateY(-5px);
}

.glow-on-hover-secondary {
    transition: all 0.3s ease;
}
.glow-on-hover-secondary:hover {
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35) !important;
    transform: translateY(-5px);
}

/* Service Item Colors */
.service-item:nth-child(1n):hover {
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.25) !important;
}
.service-item:nth-child(2n):hover {
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.25) !important;
}

/* Colorful Card Headers & Borders */
.border-gradient-top-primary {
    border-top: 4px solid var(--primary) !important;
}

.border-gradient-top-secondary {
    border-top: 4px solid var(--secondary) !important;
}

/* Glassmorphism elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Carousel Overlay Enhancements */
.header-carousel .owl-carousel-item .position-absolute {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(79, 70, 229, 0.4) 100%) !important;
}

/* Hide Page Header Banners globally */
.page-header {
    display: none !important;
}

/* Sticky Navbar & Fixed-Header on Desktop Scroll */
@media (min-width: 992px) {
    .navbar.sticky-top {
        position: sticky !important;
        top: 0 !important;
        z-index: 1030 !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    }
    
    .navbar.fixed-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1030 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        animation: navSlideDown 0.3s ease-out;
    }
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Auto-Height Slider globally */
.header-carousel .owl-carousel-item {
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.header-carousel .owl-carousel-item img {
    width: 100% !important;
    height: auto !important;
    position: static !important;
    object-fit: contain !important;
}

/* Capitalize Sub-menu Items */
.dropdown-menu .dropdown-item {
    text-transform: uppercase !important;
}

/* Mobile Left Slide-in Drawer Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: -300px !important; /* Hidden offscreen on left */
        width: 280px !important; /* Compact width matching items */
        height: 100vh !important;
        background-color: #ffffff !important;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15) !important;
        z-index: 1050 !important;
        transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        display: block !important; /* Force block to allow transition */
        padding: 60px 20px 30px 20px !important; /* Spacing for links & close button */
        overflow-y: auto !important;
    }

    .navbar-collapse.show {
        left: 0 !important; /* Slide in dynamically */
    }

    /* Reset stacking inside drawer */
    .navbar-nav {
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .navbar-nav .nav-link {
        width: 100% !important;
        padding: 12px 10px !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }

    /* Dropdowns in Mobile Drawer */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        box-shadow: none !important;
        background-color: rgba(0, 0, 0, 0.02) !important;
        border-radius: 8px !important;
        padding-left: 15px !important;
        margin: 5px 0 !important;
        border: none !important;
    }
}

/* Vertical News Ticker & News Card Styles */
.news-ticker-container {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.news-ticker-inner {
    display: flex;
    flex-direction: column;
    animation: verticalMarquee 25s linear infinite;
}

.news-ticker-inner:hover {
    animation-play-state: paused;
}

.news-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid #cbd5e1;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.news-item.border-start-primary {
    border-left: 4px solid var(--primary) !important;
}

.news-item.border-start-secondary {
    border-left: 4px solid var(--secondary) !important;
}

.news-item.border-start-success {
    border-left: 4px solid #10b981 !important;
}

@keyframes verticalMarquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Premium Team Item Styles */
.team-item {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.team-item img {
    transition: transform 0.5s ease;
}

.team-item:hover img {
    transform: scale(1.05);
}

.team-item .btn-sm-square {
    border-radius: 8px !important;
    transition: background 0.3s, color 0.3s;
}

/* Premium Testimonial Card Styles */
.testimonial-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item img {
    border: 3px solid var(--primary) !important;
}

.testimonial-text {
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    background: #ffffff !important;
    position: relative;
}

.testimonial-item:hover .testimonial-text {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
}

/* Hover Grow Effect */
.hover-grow {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.hover-grow:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

@keyframes horizontalMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


