/********** Template CSS **********/
:root {
    --primary: #0A0E27;
    --secondary: #00D9FF;
    --light: #0F1628;
    --dark: #050810;
    --accent: #00D9FF;
    --neutral-dark: #0F1628;
    --neutral-light: #1A2850;
    --bg-body: #0A0E27;
    --text-light: #E8EBEF;
    --card-bg: #0F1628;
}

/*** Keyframe Animations ***/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatImageAdvanced {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) translateX(15px) rotate(1deg);
    }
    50% {
        transform: translateY(-40px) translateX(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-25px) translateX(-15px) rotate(-1deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/*** Animation Classes ***/
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-float {
    animation: floatImage 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-slide-scale {
    animation: slideInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Global Enhancements ***/
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    background: var(--bg-body);
}

a {
    color: var(--secondary);
    transition: 0.3s;
}

a:hover {
    color: var(--secondary);
    text-decoration: none;
    opacity: 0.8;
}

img {
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
    color: var(--text-light);
}

h1, h2, h3 {
    letter-spacing: -0.5px;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

p, .text-muted, small, .text-white-50 {
    color: var(--text-light) !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 6px;
}

.btn-primary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(0, 217, 255, 0.18);
    padding: .65rem 1.25rem;
    transition: .35s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(0, 217, 255, 0.18));
    color: var(--text-light);
    border-color: var(--secondary);
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.12);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline-primary:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-light {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
}

.btn-light:hover {
    background: rgba(0, 217, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
    width: 100%;
    margin: 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--neutral-dark) 100%);
    box-shadow: 0 2px 8px rgba(15, 31, 63, 0.1);
}

.navbar.sticky-top {
    background: linear-gradient(90deg, var(--primary) 0%, var(--neutral-dark) 100%);
    box-shadow: 0 4px 12px rgba(15, 31, 63, 0.15);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: 1px solid var(--neutral-light);
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background: var(--card-bg);
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--text-light);
        transition: 0.3s;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: var(--neutral-light);
        color: var(--secondary);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neutral-dark) 50%, var(--dark) 100%);
    background-size: cover;
    overflow: hidden;
}

.hero-header img {
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 217, 255, 0.2));
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-light);
}

/* Global breadcrumb separator styling */
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-light) !important;
}




/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--secondary);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(0, 217, 255, 0.5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.1);
}

.about-img img {
    animation: fadeInUp 1.2s ease-out, floatImage 3.5s ease-in-out 1.2s infinite;
    transition: transform 0.6s ease-out, filter 0.6s ease-out;
    width: 100%;
    height: auto;
    display: block;
}

.about-img:hover img {
    transform: scale(1.05) translateY(-5px);
    filter: brightness(1.1) drop-shadow(0 10px 30px rgba(0, 217, 255, 0.2));
}

.about-img::after {
    display: none;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--card-bg);
    transition: .5s;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.05);
    border-left: 4px solid var(--secondary);
    animation: slideInScale 0.8s ease-out backwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-item:hover {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-dark) 100%);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.15);
    transform: translateY(-6px);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--secondary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(192, 160, 128, 0.05) 100%);
    transition: .5s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--text-light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--secondary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--secondary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: linear-gradient(135deg, var(--primary) 0%, var(--neutral-dark) 100%);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.feature h1,
.feature h5,
.feature p {
    color: white;
}

.feature img {
    animation: fadeInRight 1.2s ease-out, floatImageAdvanced 4s ease-in-out 2s infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 217, 255, 0.3));
    max-width: 100%;
    height: auto;
}


/*** Newsletter ***/
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--neutral-dark) 100%);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.newsletter img {
    animation: fadeInLeft 1.2s ease-out, floatImageAdvanced 4.5s ease-in-out 2s infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 217, 255, 0.3));
    max-width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 31, 63, 0.08);
    animation: slideInScale 0.8s ease-out backwards;
}

.case-item:nth-child(1) { animation-delay: 0.1s; }
.case-item:nth-child(2) { animation-delay: 0.2s; }
.case-item:nth-child(3) { animation-delay: 0.3s; }
.case-item:nth-child(4) { animation-delay: 0.4s; }

.case-item img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}
  
.case-item:hover img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(15, 31, 63, 0.9) 0%, transparent 60%);
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 6px 16px;
    color: white;
    background: var(--secondary);
    border-radius: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

.case-overlay span.btn:hover {
    color: var(--dark);
    background: var(--secondary);
    border-color: var(--secondary);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 217, 255, 0.1);
    animation: fadeInUp 0.8s ease-out backwards;
    background: var(--card-bg);
    border: 1px solid var(--neutral-light);
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
.accordion-item:nth-child(5) { animation-delay: 0.5s; }
.accordion-item:nth-child(6) { animation-delay: 0.6s; }
.accordion-item:nth-child(7) { animation-delay: 0.7s; }
.accordion-item:nth-child(8) { animation-delay: 0.8s; }

.accordion .accordion-button {
    background: var(--card-bg);
    border-radius: 6px;
    color: var(--text-light);
    font-weight: 500;
    padding: 16px 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--neutral-light);
}

.accordion .accordion-button:not(.collapsed) {
    color: var(--text-light);
    background: var(--neutral-light);
    box-shadow: inset 0 2px 8px rgba(0, 217, 255, 0.1);
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300D9FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 20px;
    color: var(--text-light);
    background: var(--card-bg);
    border-top: 1px solid var(--neutral-light);
}


/*** Testimonial ***/
.testimonial-item {
    animation: fadeInUp 0.8s ease-out backwards;
}

.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.2s; }
.testimonial-item:nth-child(3) { animation-delay: 0.3s; }
.testimonial-item:nth-child(4) { animation-delay: 0.4s; }

.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: var(--neutral-light);
    border: 1px solid var(--secondary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: var(--neutral-light);
    border: 1px solid var(--secondary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--secondary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.08);
    background: var(--card-bg);
    animation: slideInScale 0.8s ease-out backwards;
    overflow: hidden;
}

.team-item:nth-child(1) { animation-delay: 0.1s; }
.team-item:nth-child(2) { animation-delay: 0.2s; }
.team-item:nth-child(3) { animation-delay: 0.3s; }
.team-item:nth-child(4) { animation-delay: 0.4s; }
.team-item:nth-child(5) { animation-delay: 0.5s; }
.team-item:nth-child(6) { animation-delay: 0.6s; }

.team-item img {
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.5s ease-out;
}

.team-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.15);
    transform: translateY(-8px);
}

.team-item:hover img {
    transform: scale(1.08);
}


/*** Footer ***/
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: white;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.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: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.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;
}


/*** Form Styling ***/
.form-control {
    background: var(--card-bg) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--neutral-light) !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--neutral-light) !important;
    border-color: var(--secondary) !important;
    color: var(--text-light) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25) !important;
}

.form-control::placeholder {
    color: rgba(232, 235, 239, 0.5) !important;
    opacity: 1;
}

.form-floating > label {
    color: var(--text-light) !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--secondary) !important;
}


/*** Video Section Styling ***/
.video-section {
    position: relative;
    overflow: hidden;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--card-bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15);
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.25);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.7) 0%, rgba(0, 217, 255, 0.1) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(0, 217, 255, 0.2) 100%);
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 40px 30px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-text-content h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease;
}

.video-text-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.7s ease 0.1s backwards;
}

.video-btn-group {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.video-info {
    background: rgba(15, 22, 40, 0.6);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.video-info h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.video-info p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Video Carousel for multiple slides */
.video-carousel {
    overflow: hidden;
}

/* Responsive Video Section */
@media (max-width: 992px) {
    .video-card {
        height: 350px !important;
    }
    
    .video-text-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .video-card {
        height: 300px !important;
    }
    
    .video-text-content {
        padding: 20px;
    }
    
    .video-text-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .video-text-content p {
        font-size: 14px;
    }
    
    .play-button-overlay > div {
        width: 60px;
        height: 60px;
    }
    
    .play-button-overlay > div i {
        font-size: 20px !important;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h5 {
        font-size: 16px;
    }
    
    .video-info p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .video-card {
        height: 250px !important;
    }
    
    .video-text-content h3 {
        font-size: 18px;
    }
    
    .video-text-content p {
        font-size: 12px;
    }
    
    .video-section {
        padding: 30px 0 !important;
    }
}

/*** Text Utilities ***/
.text-primary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--text-light) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-white-50 {
    color: rgba(232, 235, 239, 0.6) !important;
}

.badge {
    background: var(--neutral-light) !important;
    color: var(--secondary) !important;
    border: 1px solid var(--secondary);
}

/*** Utilities from index.html refactor ***/
.anim-delay-2s { animation-delay: 0.2s !important; }
.anim-delay-4s { animation-delay: 0.4s !important; }
.anim-delay-6s { animation-delay: 0.6s !important; }
.anim-delay-8s { animation-delay: 0.8s !important; }
.anim-delay-10s { animation-delay: 1.0s !important; }

.max-w-500 { max-width: 500px; }
.max-w-600 { max-width: 600px; }
.testi-client-img { width: 60px !important; height: 60px !important; object-fit: cover; }

.text-theme-light { color: var(--text-light) !important; }
.text-theme-light-70 { color: var(--text-light) !important; opacity: 0.7 !important; }
.text-theme-light-80 { color: var(--text-light) !important; opacity: 0.8 !important; }

.icon-secondary-bg { background: var(--secondary); flex-shrink: 0; }
.feature-transparent-bg { background: rgba(255, 255, 255, 0.1); }

.event-card-status-pill { position: static; font-size: 9px; padding: 4px 12px; }

.video-section.bg-gradient-primary { background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--primary) 100%); }
.video-overlay-custom { position: absolute; inset: 0; background: rgba(10, 14, 39, 0.6); display: flex; align-items: center; justify-content: center; z-index: 1; }
.video-content-custom { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; color: white; text-align: center; padding: 30px; }
.video-title-custom { font-weight: 700; font-size: 28px; }
.video-subtitle-custom { font-size: 16px; opacity: 0.9; }
