/* ========================================
   Best Brighter Service - Professional CSS
   ======================================== */

:root {
    --primary: #004aad;
    --secondary: #d90429;
    --dark: #2b2d42;
    --light: #f8f9fa;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 52px;
    font-size: 1rem;
}

/* ========================================
   Color Utilities
   ======================================== */
.color-primary { color: var(--primary) !important; }
.color-secondary { color: var(--secondary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-danger { background-color: var(--secondary) !important; }
.bg-primary-light { background: rgba(0, 74, 173, 0.1); }
.bg-danger-light { background: rgba(217, 4, 41, 0.1); }
.bg-success-light { background: rgba(40, 167, 69, 0.1); }
.bg-warning-light { background: rgba(255, 193, 7, 0.1); }
.bg-info-light { background: rgba(23, 162, 184, 0.1); }
.bg-secondary-light { background: rgba(108, 117, 125, 0.1); }
.bg-dark-light { background: rgba(52, 58, 64, 0.1); }

/* ========================================
   Top Bar
   ======================================== */
.top-bar { 
    background: var(--primary); 
    color: white; 
    font-size: 0.85rem;
    border-bottom: 2px solid var(--secondary);
}

.top-bar a {
    color: white;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--warning);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    transition: all 0.4s;
    padding: 14px 0;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-img { 
    height: 56px; 
    transition: transform 0.3s;
    object-fit: contain;
}

.navbar-brand:hover .logo-img { 
    transform: scale(1.1) rotate(5deg); 
}

.brand-text h4 {
    line-height: 1.2;
}

.nav-link { 
    color: var(--dark) !important; 
    transition: all 0.3s;
    position: relative;
    padding: 8px 14px !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover, 
.nav-link.active { 
    color: var(--secondary) !important; 
}

.navbar-toggler {
    border: 2px solid var(--primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ========================================
   Header wrapper sticky behavior
   ======================================== */
#headerWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.35s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 49px 0;
    position: relative;
    min-height: calc(100vh);
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("homesection.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 4, 41, 0.2), transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    /* min-height: unset !important; */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 1.15;
}

.hero-image-box {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image-box img {
    max-height: 420px;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.min-vh-75 {
    min-height: 75vh;
}

/* ========================================
   Typography
   ======================================== */
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.tracking-widest { letter-spacing: 4px; }

.display-3 { font-size: 2.8rem; }
.display-4 { font-size: 2.4rem; }
.display-5 { font-size: 2rem; }
.display-6 { font-size: 1.6rem; }

.display-3, .display-4, .display-5, .display-6 {
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #003a8c;
    border-color: #003a8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.4);
}

.btn-danger {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-danger:hover {
    background: #c1001f;
    border-color: #c1001f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary) !important;
    border-color: white;
}

.btn-outline-primary:hover,
.btn-outline-danger:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-success:hover,
.btn-outline-secondary:hover,
.btn-outline-dark:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 11px 28px;
    font-size: 0.95rem;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-bar {
    background: linear-gradient(to bottom, white, #f8f9fa);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-card {
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.stats-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.2) !important;
}

.stat-icon {
    font-size: 2rem;
}

/* ========================================
   Service Cards with Video
   ======================================== */
        .service-card-hover {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
        }

        /* Video Container Styles */
        .appliance-video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .appliance-video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Play Icon Overlay */
        .video-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .video-play-overlay i {
            color: var(--secondary);
            font-size: 28px;
            margin-left: 4px;
        }

        .appliance-video-container.video-playing .video-play-overlay {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.5);
        }

        .service-card-hover:hover .video-play-overlay {
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        /* Video Controls */
        .appliance-video-controls {
            position: absolute;
            bottom: 12px;
            right: 12px;
            z-index: 3;
            display: flex;
            gap: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .appliance-video-container.video-playing .appliance-video-controls {
            opacity: 1;
        }

        .appliance-video-controls:hover {
            opacity: 1 !important;
        }

        .video-btn {
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            backdrop-filter: blur(4px);
        }

        .video-btn:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        .video-btn i {
            font-size: 14px;
        }

        /* Modal Styles */
        .appliance-video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .appliance-video-modal.active {
            display: flex;
        }

        .appliance-modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            aspect-ratio: 16/9;
        }

        .appliance-modal-content video {
            width: 100%;
            height: 100%;
            border: none;
        }

        .modal-close-btn {
            position: absolute;
            top: -50px;
            right: 0;
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .modal-close-btn:hover {
            transform: rotate(90deg);
            background: var(--secondary);
            color: white;
        }

        .modal-close-btn i {
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .appliance-modal-content {
                width: 95%;
            }

            .modal-close-btn {
                top: -45px;
                width: 36px;
                height: 36px;
            }

            .video-play-overlay {
                width: 60px;
                height: 60px;
            }

            .video-play-overlay i {
                font-size: 24px;
            }
        }

/* ========================================
   Brand Logos
   ======================================== */
.brand-logo-box {
    transition: all 0.3s;
    cursor: pointer;
    background: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.15) !important;
    border-color: var(--primary) !important;
}

.brand-logo-box h5 {
    transition: color 0.3s;
}

.brand-logo-box:hover h5 {
    color: var(--primary);
}

/* ========================================
   How It Works - Process Steps
   ======================================== */
.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial-avatar {
    transition: transform 0.3s;
}

.card:hover .testimonial-avatar {
    transform: scale(1.1);
}

/* ========================================
   Gradient Backgrounds
   ======================================== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), #003a8c);
}

/* ========================================
   Footer
   ======================================== */
.footer { 
    background: var(--dark); 
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links li { 
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-links a { 
    text-decoration: none; 
    color: #adb5bd; 
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover { 
    color: var(--secondary); 
    padding-left: 8px;
}

.footer-links i {
    transition: transform 0.3s;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: white !important;
    color: var(--primary) !important;
    transform: translateY(-5px);
}

.developer-credit {
    color: #adb5bd;
    font-size: 0.95rem;
}

.developer-credit a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* ========================================
   Floating Buttons
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

.call-float {
    position: fixed;
    bottom: 20px;
    right: auto;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite 0.5s;
}

.call-float:hover {
    background: #c1001f;
    transform: scale(1.1) rotate(15deg);
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(217, 4, 41, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(217, 4, 41, 0.8); }
}

/* ========================================
   Page Headers (Inner Pages)
   ======================================== */
.inner-header { 
    background: linear-gradient(135deg, var(--primary), #003a8c); 
    background-attachment: fixed;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.inner-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.inner-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(217, 4, 41, 0.1);
    border-radius: 50%;
}

/* ========================================
   Custom Utilities
   ======================================== */
.heading-line { 
    width: 80px; 
    height: 4px; 
    background: var(--secondary); 
    margin-top: 10px;
    border-radius: 2px;
}

.shadow-2xl { 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
}

.icon-sm { 
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
    text-align: center; 
}

.rounded-custom { 
    border-radius: 40px; 
}

.rounded-4 {
    border-radius: 15px !important;
}

.rounded-5 {
    border-radius: 25px !important;
}

/* ========================================
   Forms
   ======================================== */
.form-control::placeholder,
.form-select {
    font-size: 14px;
}

.form-control-lg::placeholder {
    font-size: 14px;
}

.form-control,
.form-select {
    font-size: 14px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Loading Animation
   ======================================== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* ========================================
   Selection Color
   ======================================== */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ========================================
   Accessibility
   ======================================== */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1199px) {
    .nav-link {
        padding: 6px 10px !important;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 52px;
    }

    .brand-text h4 {
        font-size: 1rem;
    }

    .btn-book-service {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .stats-bar {
        margin-top: 0;
    }

    .inner-header {
        background-attachment: scroll;
    }

    .inner-header::before,
    .inner-header::after {
        display: none;
    }

    .btn::before {
        display: none;
    }

    .btn-outline-light {
        background: white;
        color: var(--primary) !important;
        border-color: white;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .logo-img {
        height: 50px;
    }

    .whatsapp-float,
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .video-placeholder i {
        font-size: 3rem;
    }

    .video-control-btn {
        width: 32px;
        height: 32px;
    }

    .close-modal {
        top: -45px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .call-float {
        bottom: 15px;
        right: auto;
        left: 15px;
    }
    
    .brand-text h4 {
        font-size: 1rem;
    }
    
    .brand-text small {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: calc(100vh - 80px);
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .display-3 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .stats-card {
        padding: 1.5rem !important;
    }
    
    .icon-bg {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .icon-bg i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13.5px;
    }

    .display-3 {
        font-size: 2rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .whatsapp-float,
    .call-float,
    .btn,
    .video-modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}

/* About page who we are section css */
.who-we-are {
    padding: 50px 0;
       background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity));
  }
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
  }
  .section-focus {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
   color: var(--secondary) !important;; /* Red color for the title */
  }
  .focus-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Ensure cards wrap on small screens */
    margin: 0 auto;
  }
  .focus-card {
    background-color: white;
    border: 2px solid #ddd;
    padding: 30px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .focus-card:hover {
    transform: scale(1.05);
  }
  .focus-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #333;
  }
  .section-belief {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .section-title {
      font-size: 1.8rem;
    }
    .section-description {
      font-size: 1rem;
    }
    .section-focus {
      font-size: 1.1rem;
    }
    .focus-card h4 {
      font-size: 1rem;
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.6rem;
    }
    .section-description {
      font-size: 0.95rem;
    }
    .section-focus {
      font-size: 1rem;
    }
    .focus-card {
      width: 45%;
    }
  }

  @media (max-width: 480px) {
    .section-title {
      font-size: 1.4rem;
    }
    .section-description {
      font-size: 0.9rem;
    }
    .section-focus {
      font-size: 0.95rem;
    }
    .focus-card {
      width: 100%;
      padding: 20px; /* Adjust padding for smaller screens */
    }
  }

          .unique-gallery-wrapper {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .unique-gallery-wrapper::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .unique-gallery-wrapper::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(78,205,196,0.1) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            border-radius: 50%;
        }

        .gallery-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .gallery-title-section {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease;
        }

        .gallery-title-section h2 {
            color: #ffffff;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

        .gallery-title-section .title-underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            margin: 0 auto 15px;
            border-radius: 10px;
        }

        .gallery-title-section p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
        }

        .unique-video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .video-card-unique {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.6s ease backwards;
        }

        .video-card-unique:nth-child(1) { animation-delay: 0.1s; }
        .video-card-unique:nth-child(2) { animation-delay: 0.2s; }
        .video-card-unique:nth-child(3) { animation-delay: 0.3s; }
        .video-card-unique:nth-child(4) { animation-delay: 0.4s; }
        .video-card-unique:nth-child(5) { animation-delay: 0.5s; }
        .video-card-unique:nth-child(6) { animation-delay: 0.6s; }
        .video-card-unique:nth-child(7) { animation-delay: 0.7s; }
        .video-card-unique:nth-child(8) { animation-delay: 0.8s; }
        .video-card-unique:nth-child(9) { animation-delay: 0.9s; }

        .video-card-unique:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .video-container-unique {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .video-container-unique video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .video-card-unique.playing .video-gradient-overlay {
            opacity: 0;
        }

        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            z-index: 10;
        }

        .video-play-button:hover {
            transform: translate(-50%, -50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
        }

        .video-card-unique.playing .video-play-button {
            opacity: 0;
            pointer-events: none;
        }

        .video-play-button i {
            font-size: 28px;
            color: #ffffff;
            margin-left: 4px;
        }

        .video-action-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .video-card-unique:hover .video-action-bar {
            opacity: 1;
            transform: translateY(0);
        }

        .video-index-badge {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            color: #1a1a2e;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .video-control-buttons {
            display: flex;
            gap: 10px;
        }

        .control-button-unique {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #1a1a2e;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .control-button-unique:hover {
            transform: scale(1.1);
            background: #ffffff;
        }

        .control-button-unique i {
            font-size: 16px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet Responsive */
        @media (max-width: 991px) {
            .unique-gallery-wrapper {
                padding: 50px 0;
            }

            .gallery-title-section h2 {
                font-size: 2.5rem;
            }

            .unique-video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .video-container-unique {
                height: 260px;
            }

            .video-play-button {
                width: 65px;
                height: 65px;
            }

            .video-play-button i {
                font-size: 26px;
            }

            .video-index-badge {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .control-button-unique {
                width: 38px;
                height: 38px;
            }

            .control-button-unique i {
                font-size: 15px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .unique-gallery-wrapper {
                padding: 40px 0;
            }

            .gallery-container {
                padding: 0 15px;
            }

            .gallery-title-section {
                margin-bottom: 35px;
            }

            .gallery-title-section h2 {
                font-size: 2rem;
            }

            .gallery-title-section p {
                font-size: 1rem;
            }

            .unique-video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-container-unique {
                height: 240px;
            }

            .video-play-button {
                width: 60px;
                height: 60px;
            }

            .video-play-button i {
                font-size: 24px;
            }

            .video-action-bar {
                padding: 15px;
            }

            .video-index-badge {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }

            .control-button-unique {
                width: 36px;
                height: 36px;
            }

            .control-button-unique i {
                font-size: 14px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .unique-gallery-wrapper {
                padding: 30px 0;
            }

            .gallery-title-section h2 {
                font-size: 1.8rem;
            }

            .unique-video-grid {
                gap: 15px;
            }

            .video-container-unique {
                height: 220px;
            }

            .video-play-button {
                width: 55px;
                height: 55px;
            }

            .video-play-button i {
                font-size: 22px;
            }

            .video-index-badge {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .control-button-unique {
                width: 34px;
                height: 34px;
            }
        }
.video-gradient-overlay {
    pointer-events: none;
}
