﻿/* ============================================
   PREMIUM CINEMATIC THEME - FINAL VERSION
   Photography & Branding Website
   Designed for Anubhav Verma
============================================= */

/* ----- GLOBAL RESET & VARIABLES ----- */
:root {
    --primary-red: #e63946;
    --primary-dark: #b71c1c;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --dark-bg: #0a0a0a;
    --dark-card: #111111;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --gradient-red: linear-gradient(135deg, #ff4d5a 0%, #e63946 50%, #b71c1c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --shadow-sm: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-md: 0 15px 40px rgba(0,0,0,0.2);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.3);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pure-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ----- CUSTOM SCROLLBAR ----- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

/* ============================================
   SCROLL REVEAL ANIMATION - WO WALA EFFECT
============================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Delay classes for staggered animation */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}
/* ============================================
   PREMIUM LOGIN BUTTON (DON'T TOUCH)
============================================= */
.btn-login-premium {
    background: var(--primary-red) !important;
    color: white !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3) !important;
    border: 2px solid transparent !important;
    display: inline-block !important;
    margin-left: 15px !important;
    animation: pulse-red 3s ease-in-out infinite !important;
}

    .btn-login-premium:hover {
        background: #222 !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
        border-color: var(--primary-red) !important;
    }

@keyframes pulse-red {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ============================================
   INSTAGRAM BUTTON (DON'T TOUCH)
============================================= */
.instagram-btn-only {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

    .instagram-btn-only i {
        font-size: 20px !important;
        margin: 0 !important;
    }

/* ============================================
   TOP VIDEO - FULL SCREEN FIXED HEIGHT
============================================= */
.top-video {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.top-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   WE MAKE SECTION - FULL WIDTH
============================================= */
/* ===== WE MAKE SECTION - PREMIUM CINEMATIC ===== */
.we-make-section {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

    /* Animated Background Lines */
    .we-make-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient( 45deg, transparent, transparent 20px, rgba(230, 57, 70, 0.03) 20px, rgba(230, 57, 70, 0.03) 40px );
        animation: backgroundMove 30s linear infinite;
    }

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(5%, 5%);
    }
}

/* Content Wrapper */
.content-wrapper {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Premium Badge */
.premium-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: #e63946;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Main Title */
.main-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.highlight-text {
    color: #e63946;
    position: relative;
    display: inline-block;
}

    .highlight-text::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(230, 57, 70, 0.3);
        z-index: -1;
        border-radius: 4px;
    }

.block-text {
    display: block;
    background: linear-gradient(135deg, #fff, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.8rem;
}

/* Description */
.description-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #e63946;
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
    }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
}

    .btn-outline:hover {
        border-color: #e63946;
        background: rgba(230, 57, 70, 0.1);
        transform: translateY(-3px);
    }

    .btn-primary i, .btn-outline i {
        transition: transform 0.3s ease;
    }

    .btn-primary:hover i, .btn-outline:hover i {
        transform: translateX(5px);
    }

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

    .badge-item i {
        color: #e63946;
        font-size: 1.1rem;
    }

/* Image Wrapper */
.image-wrapper {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    display: inline-block;
}

.premium-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(230, 57, 70, 0.3));
    animation: floatImage 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes floatImage {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 3;
    animation: floatBadge 5s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge i {
    color: #e63946;
    font-size: 1.2rem;
}

.floating-badge span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Decorative Circles */
.circle-1, .circle-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230,57,70,0.2), transparent);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: pulseCircle 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, rgba(230,57,70,0.1), transparent);
    animation: pulseCircle 6s ease-in-out infinite reverse;
}

@keyframes pulseCircle {
    0%,100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 1200px) {
    .main-title {
        font-size: 3.8rem;
    }

    .block-text {
        font-size: 3.4rem;
    }
}

@media (max-width: 992px) {
    .main-title {
        font-size: 3.2rem;
    }

    .block-text {
        font-size: 2.8rem;
    }

    .image-wrapper {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .we-make-section {
        padding: 80px 0;
    }

    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .block-text {
        font-size: 2.2rem;
    }

    .description-text {
        text-align: center;
    }

    .button-group {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }

    .block-text {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-outline {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===== BRAND IDENTITY SECTION - PREMIUM ===== */
.brand-identity-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    /* Background Pattern */
    .brand-identity-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(230,57,70,0.03) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(30%, -30%);
    }

    .brand-identity-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(230,57,70,0.03) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-30%, 30%);
    }

/* Brand Content */
.brand-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
}

/* Brand Badge */
.brand-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e63946;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(230,57,70,0.1);
    padding: 6px 15px;
    border-radius: 30px;
    border-left: 3px solid #e63946;
}

/* Brand Title */
.brand-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.highlight-brand {
    color: #e63946;
    position: relative;
    display: inline-block;
}

    .highlight-brand::before {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(230,57,70,0.2);
        z-index: -1;
        border-radius: 4px;
    }

.block-brand {
    display: block;
    font-size: 3rem;
    background: linear-gradient(135deg, #e63946, #b71c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Brand Description */
.brand-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    border-left: 4px solid #e63946;
    padding-left: 20px;
}

/* Feature List */
.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .feature-item:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(230,57,70,0.1);
        border-color: rgba(230,57,70,0.2);
    }

.feature-icon {
    flex-shrink: 0;
}

    .feature-icon i {
        font-size: 1.8rem;
        color: #e63946;
        background: rgba(230,57,70,0.1);
        padding: 10px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

.feature-item:hover .feature-icon i {
    background: #e63946;
    color: white;
    transform: rotate(360deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #777;
}

/* Brand CTA Button */
.brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #e63946, #b71c1c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .brand-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .brand-cta:hover::before {
        left: 100%;
    }

    .brand-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(230,57,70,0.4);
    }

    .brand-cta i {
        transition: transform 0.3s ease;
    }

    .brand-cta:hover i {
        transform: translateX(8px);
    }

/* Image Wrapper */
.brand-image-wrapper {
    position: relative;
    z-index: 2;
}

.image-frame {
    position: relative;
    display: inline-block;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(230,57,70,0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.brand-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: gentleFloat 7s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 3;
    border: 1px solid rgba(230,57,70,0.1);
    animation: floatElement 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: -30px;
    background: linear-gradient(135deg, #fff, #fff0f0);
}

.element-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
    background: linear-gradient(135deg, #fff, #fff0f0);
}

@keyframes floatElement {
    0%,100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(5px);
    }
}

.floating-element i {
    color: #e63946;
    font-size: 1.2rem;
}

.floating-element span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230,57,70,0.1), transparent);
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: rotateSlow 20s linear infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, rgba(230,57,70,0.05), transparent);
    animation: rotateSlow 15s linear infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    background: rgba(230,57,70,0.03);
    animation: pulseSoft 4s ease-in-out infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseSoft {
    0%,100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 1200px) {
    .brand-title {
        font-size: 3rem;
    }

    .block-brand {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .brand-content {
        max-width: 100%;
        text-align: center;
    }

    .brand-title {
        font-size: 2.8rem;
    }

    .brand-description {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .feature-item {
        text-align: left;
    }

    .brand-image-wrapper {
        margin-top: 60px;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-identity-section {
        padding: 60px 0;
    }

    .brand-title {
        font-size: 2.2rem;
    }

    .block-brand {
        font-size: 2rem;
    }

    .brand-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 12px 15px;
    }

    .brand-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 1.8rem;
    }

    .block-brand {
        font-size: 1.6rem;
    }
}
/* ============================================
   NUMBERS SECTION
============================================= */
.numbers-section {
    padding: 80px 0;
    background: var(--off-white);
    width: 100%;
}

    .numbers-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.number-box {
    padding: 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

    .number-box h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary-red);
        margin-bottom: 10px;
    }

    .number-box p {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .number-box:hover h2,
    .number-box:hover p {
        color: white;
    }

    .number-box:hover {
        background: var(--gradient-red);
        border-radius: 15px;
        transform: translateY(-5px);
    }

/* ============================================
   CLIENTS SECTION - WITH HOVER EFFECT
============================================= */
/* ===== PREMIUM CLIENTS SECTION ===== */
.premium-clients-section {
    background: linear-gradient(145deg, #e63946 0%, #b71c1c 100%) !important; /* BLACK → RED */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
/* EMERGENCY CURSOR FIX */
* {
    cursor: default;
}

input, textarea, select, [contenteditable="true"] {
    cursor: text !important;
}

a, button, .client-card, .nav-btn, .tab-btn, [role="button"], .clickable {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.loading, .modal-backdrop, .overlay {
    pointer-events: none !important;
    display: none !important;
}

    /* Animated Background */
    .premium-clients-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%); /* White dots */
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Header Styles */
.clients-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.premium-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, transparent); /* White bars */
    border-radius: 2px;
    animation: barGlow 2s ease-in-out infinite;
}

    .bar-line:nth-child(2) {
        width: 40px;
        animation-delay: 0.3s;
    }

    .bar-line:nth-child(3) {
        width: 20px;
        animation-delay: 0.6s;
    }

@keyframes barGlow {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.header-text {
    flex: 1;
}

.clients-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff; /* White text */
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.clients-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.clients-description {
    color: rgba(255,255,255,0.7); /* Light white */
    font-size: 1.1rem;
}

/* Clients Showcase */
.clients-showcase {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.clients-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .clients-track::-webkit-scrollbar {
        display: none;
    }

/* Client Card - CHHOTE KAR DIYE */
.client-card {
    min-width: 220px !important; /* Pehle 280px tha → ab 220px */
    height: 280px !important; /* Pehle 320px tha → ab 280px */
    perspective: 1500px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.client-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 20px 15px; /* Kam padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: rgba(0,0,0,0.3); /* Dark overlay on red */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.client-logo-wrapper {
    width: 90px !important; /* Pehle 120px tha → ab 90px */
    height: 90px !important; /* Pehle 120px tha → ab 90px */
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px; /* Kam margin */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo-wrapper {
    transform: scale(1.1);
}

.client-logo-wrapper img {
    width: 60px !important; /* Pehle 80px tha → ab 60px */
    height: 60px !important; /* Pehle 80px tha → ab 60px */
    object-fit: contain;
}

.card-front h3 {
    color: white;
    font-size: 1.2rem !important; /* Pehle 1.5rem tha → ab 1.2rem */
    font-weight: 700;
    margin-bottom: 5px;
}

.client-category {
    color: #ffffff;
    font-size: 0.8rem !important; /* Pehle 0.9rem tha → ab 0.8rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.card-back {
    background: rgba(0,0,0,0.5); /* Darker back */
    backdrop-filter: blur(10px);
    transform: rotateY(180deg);
    color: white;
}

.back-content {
    text-align: center;
}

.quote-icon {
    font-size: 3rem; /* Chhota */
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
    display: block;
    margin-bottom: 10px;
}

.card-back p {
    font-size: 0.9rem; /* Chhota */
    margin-bottom: 10px;
    font-style: italic;
}

.card-back .stars {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 0.9rem; /* Chhota */
}

.since {
    font-size: 0.8rem; /* Chhota */
    opacity: 0.8;
}

/* Navigation Buttons */
.nav-btn {
    width: 40px; /* Pehle 50px tha → ab 40px */
    height: 40px; /* Pehle 50px tha → ab 40px */
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1rem; /* Chhota */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

    .nav-btn:hover {
        background: #ffffff;
        border-color: #ffffff;
        color: #e63946;
        transform: scale(1.1);
    }

/* Client Stats */
.client-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem; /* Thoda chhota */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .clients-title {
        font-size: 2.8rem;
    }

    .clients-track {
        gap: 20px;
    }

    .client-card {
        min-width: 200px !important;
        height: 260px !important;
    }
}

@media (max-width: 768px) {
    .clients-header {
        flex-direction: column;
        text-align: center;
    }

    .premium-bar {
        flex-direction: row;
    }

    .bar-line {
        width: 30px;
        height: 4px;
    }

    .clients-title {
        font-size: 2.2rem;
    }

    .client-stats {
        flex-direction: column;
        gap: 20px;
    }

    .client-card {
        min-width: 180px !important;
        height: 240px !important;
    }
}

/* Slide Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.client-card {
    animation: slideIn 0.5s ease forwards;
}

/* ============================================
   FEEDBACK SECTION
============================================= */
/* ===== FEEDBACK SECTION - HOVER FIX ===== */

/* ===== FEEDBACK SECTION - HOVER FIX ===== */
.feedback-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
}

    .feedback-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.feedback-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.feedback-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-behavior: smooth;
}

    .feedback-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .feedback-wrapper::-webkit-scrollbar-thumb {
        background: #e63946;
        border-radius: 4px;
    }

.feedback-card {
    min-width: 320px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease !important; /* Important added */
    position: relative;
    cursor: pointer !important; /* Cursor pointer */
    border: 1px solid rgba(0,0,0,0.05);
}

    /* HOVER EFFECT - FORCED */
    .feedback-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(230,57,70,0.15) !important;
        background: white !important;
        border-color: #e63946 !important;
    }

        /* Star color on hover */
        .feedback-card:hover .stars {
            color: #ffd700 !important;
        }

        /* Text color on hover */
        .feedback-card:hover p {
            color: #333 !important;
        }

        .feedback-card:hover h6 {
            color: #e63946 !important;
        }

    /* Normal state */
    .feedback-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        font-style: italic;
        color: #666;
        transition: color 0.3s ease;
    }

    .feedback-card h6 {
        font-weight: 700;
        color: #e63946;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* ============================================
   SERVICES SECTION - FULL WIDTH
============================================= */
.services-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
    width: 100%;
}

    .services-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.section-title-white {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        background: var(--primary-red);
        box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
    }

    .service-card h4 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 1rem;
        opacity: 0.9;
    }


/* ============================================
   VIDEOS SECTION
============================================= */
/* ===== CINEMATIC VIDEO SECTION - PROFESSIONAL ===== */
/* ===== FIXED VIDEO SECTION ===== */
/* ===== CINEMATIC SECTION - RED THEME ===== */
.cinema-section {
    background: linear-gradient(135deg, #e63946 0%, #b71c1c 100%); /* Black se Red */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    /* Animated Background - Dots */
    .cinema-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: moveDots 20s linear infinite;
    }

/* Cards - Dark Red */
.cinema-card {
    background: rgba(0,0,0,0.3); /* Dark overlay on red */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .cinema-card:hover {
        transform: translateY(-5px);
        background: rgba(0,0,0,0.4);
        border-color: #fff;
    }

/* Video Wrapper */
.cinema-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cinema-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .cinema-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(230,57,70,0.2);
    }

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: #000;
}

.cinema-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: #e63946;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.video-info {
    padding: 15px;
}

    .video-info h4 {
        color: white;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .video-info p {
        color: #aaa;
        font-size: 0.9rem;
    }





/* BLACK TO RED - ONE LINE FIX */
.cinema-section {
    background: linear-gradient(135deg, #e63946, #b71c1c) !important; /* Black → Red */
}

.cinema-card {
    background: rgba(0,0,0,0.2) !important; /* Cards transparent red pe */
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 1200px) {
    .cinema-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .cinema-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cinema-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cinema-grid {
        grid-template-columns: 1fr;
    }

    .cinema-title {
        font-size: 2.5rem;
    }

    .category-badge {
        flex-wrap: wrap;
    }

    .badge-count {
        margin-left: 0;
    }

    .tab-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

   

/* ============================================
   PHOTOS SECTION - CHHOTI PHOTOS
============================================= */
/* ============================================
   PHOTOS SECTION - CHHOTI PHOTOS
============================================= */
/* ===== GALLERY SECTION - PROFESSIONAL ===== */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.gallery-header {
    margin-bottom: 60px;
}

.gallery-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e63946;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(230, 57, 70, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #1a1a1a, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 20px rgba(230, 57, 70, 0.2);
}

.gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946, transparent);
}

.gallery-divider i {
    font-size: 1.8rem;
    color: #e63946;
    animation: cameraClick 2s ease-in-out infinite;
}

@keyframes cameraClick {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.gallery-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Photo Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 4/3;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(230, 57, 70, 0.25);
    }

.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

/* Overlay Effect */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(230, 57, 70, 0.9), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    display: inline-block;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.overlay-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-title {
        font-size: 2.2rem;
    }

    .gallery-subtitle {
        font-size: 0.8rem;
    }
}

/* ============================================
   PREMIUM RED SECTION - FULL WIDTH NO GAP
============================================= */
/* ===== PREMIUM RED SECTION - ULTIMATE DESIGN ===== */
.premium-red-section {
    background: linear-gradient(135deg, #e63946 0%, #b71c1c 100%) !important; /* RED BACKGROUND */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

    /* Animated Background Pattern */
    .premium-red-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient( 45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 60px );
        animation: backgroundMove 30s linear infinite;
    }

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(5%, 5%) rotate(5deg);
    }
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes floatShape {
    0%,100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes pulseGlow {
    0%,100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Premium Content */
.premium-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Badge */
.premium-badge-wrapper {
    margin-bottom: 30px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(255,255,255,0.2);
    }
}

.premium-badge i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: crownSpin 4s ease-in-out infinite;
}

@keyframes crownSpin {
    0%,100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

.premium-badge span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

/* Premium Heading */
.premium-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, #fff, #ffe6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 10px;
}

    .gradient-text::before {
        content: '✨';
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 2rem;
        animation: sparkle 2s ease-in-out infinite;
    }

@keyframes sparkle {
    0%,100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.block-text {
    display: block;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtext */
.premium-subtext-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

    .premium-subtext-wrapper i {
        font-size: 1.5rem;
        color: rgba(255,255,255,0.8);
        animation: sparkleRotate 3s ease-in-out infinite;
    }

@keyframes sparkleRotate {
    0%,100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

.premium-subtext {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    margin: 0;
}

/* Premium Highlight */
.premium-highlight {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 70px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

    .highlight-item i {
        font-size: 1.3rem;
        color: #ffd700;
        animation: bounce 2s ease-in-out infinite;
    }

@keyframes bounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.highlight-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-divider {
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    font-weight: 800;
}

/* CTA Button */
.premium-cta-wrapper {
    margin-top: 30px;
}

.premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #e63946;
    padding: 18px 45px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .premium-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(230,57,70,0.1), transparent);
        transition: left 0.5s ease;
    }

    .premium-cta:hover::before {
        left: 100%;
    }

    .premium-cta:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 25px 45px rgba(0,0,0,0.4);
        background: #e63946;
        color: white;
        border-color: white;
    }

    .premium-cta i {
        transition: transform 0.3s ease;
    }

    .premium-cta:hover i {
        transform: translateX(8px);
    }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 1200px) {
    .premium-heading {
        font-size: 4rem;
    }

    .block-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .premium-heading {
        font-size: 3.5rem;
    }

    .block-text {
        font-size: 3rem;
    }

    .premium-subtext {
        font-size: 1.2rem;
    }

    .premium-highlight {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .premium-red-section {
        padding: 80px 0;
    }

    .premium-heading {
        font-size: 2.5rem;
    }

    .block-text {
        font-size: 2rem;
    }

    .premium-subtext {
        font-size: 1rem;
    }

    .premium-highlight {
        flex-direction: column;
        gap: 15px;
        border-radius: 40px;
        padding: 20px;
    }

    .highlight-divider {
        display: none;
    }

    .premium-badge {
        padding: 8px 20px;
    }

        .premium-badge span {
            font-size: 0.8rem;
        }

    .premium-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .premium-heading {
        font-size: 2rem;
    }

    .block-text {
        font-size: 1.6rem;
    }

    .premium-subtext-wrapper {
        flex-direction: column;
        gap: 5px;
    }
}

  
/* ============================================
   SEARCH BOX
============================================= */
#searchBox {
    border-radius: 30px;
    border: 2px solid #eee;
    padding: 10px 20px;
    transition: all 0.3s ease;
    width: 250px;
    font-size: 1rem;
}

    #searchBox:focus {
        border-color: var(--primary-red);
        box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
        width: 300px;
        outline: none;
    }

#videoContainer h2 {
    color: var(--primary-red);
    font-weight: 800;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 5px solid var(--primary-red);
}

/* ============================================
   RESPONSIVE DESIGN
============================================= */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .top-video {
        height: 350px;
    }

    .we-make-section h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .we-make-section p {
        text-align: center;
    }

    .we-make-section .mt-4 {
        text-align: center;
    }

    .we-make-section .btn {
        margin: 5px;
    }

    .number-box {
        margin-bottom: 20px;
    }

    .client-card {
        min-width: 130px;
    }

    .feedback-card {
        min-width: 280px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .photo-card {
        height: 180px;
    }

    .premium-heading {
        font-size: 2.2rem;
    }

    .btn-login-premium {
        padding: 6px 15px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .top-video {
        height: 250px;
    }

    .we-make-section h1 {
        font-size: 2rem;
    }

    .section-title,
    .section-title-white,
    .feedback-title,
    .photos-section h2,
    .video-section .section-title {
        font-size: 1.8rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .photo-card {
        height: 160px;
    }

    .premium-heading {
        font-size: 1.8rem;
    }

    .premium-highlight {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* ============================================
   UTILITY CLASSES
============================================= */
.text-danger {
    color: var(--primary-red) !important;
}

.btn-danger {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
}

.btn-outline-danger {
    color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
}

    .btn-outline-danger:hover {
        background-color: var(--primary-red) !important;
        color: white !important;
    }

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Fix for Bootstrap container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* Koi element hilega nahi */
section {
    overflow: hidden;
}
/* ===== NAVBAR FIX - PROPER SPACING ===== */
 /* ===== MOBILE OPTIMIZATION - ULTIMATE FIX ===== */
@media (max-width: 768px) {
    /* Navbar Mobile Fix */
    .navbar

{
    padding: 10px 15px !important;
}

.navbar .container-fluid {
    flex-wrap: wrap;
    gap: 10px;
}

.navbar-brand {
    font-size: 1.3rem !important;
}

/* Mobile Menu Button */
.navbar-toggler {
    display: block !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
}

/* Collapsible Menu */
.navbar-collapse {
    display: none;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 15px;
}

    .navbar-collapse.show {
        display: block !important;
    }

.navbar-nav {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100%;
}

    .navbar-nav .nav-link {
        display: block;
        padding: 10px !important;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

/* Login Button Mobile */
.btn-login-premium {
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    text-align: center !important;
}

/* ===== SEARCH BOX FIX - MOBILE PE DIKHEGA ===== */
.search-wrapper {
    padding: 15px 10px !important;
    background: #f8f9fa;
    width: 100%;
}

#searchBox {
    width: 100% !important; /* Full width on mobile */
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
    border-radius: 30px !important;
    border: 2px solid #e63946 !important;
    background: white !important;
    display: block !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

    #searchBox:focus {
        width: 100% !important;
        border-color: #b71c1c !important;
        outline: none;
    }

    /* Placeholder styling */
    #searchBox::placeholder {
        color: #999 !important;
        font-size: 14px !important;
    }

/* ===== TOP VIDEO MOBILE ===== */
.top-video {
    height: 300px !important;
}

/* ===== WE MAKE SECTION MOBILE ===== */
.we-make-section {
    padding: 50px 0 !important;
}

    .we-make-section h1 {
        font-size: 2rem !important;
        text-align: center !important;
    }

    .we-make-section p {
        font-size: 1rem !important;
        text-align: center !important;
        padding: 0 15px !important;
    }

    .we-make-section .mt-4 {
        text-align: center !important;
    }

    .we-make-section .btn {
        display: inline-block !important;
        margin: 5px !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Right Image */
    .we-make-section .col-lg-6:last-child {
        margin-top: 30px !important;
    }

    .we-make-section img {
        max-width: 70% !important;
        margin: 0 auto !important;
        display: block !important;
    }

/* ===== BRAND BADGE ===== */
.premium-badge {
    font-size: 0.8rem !important;
    padding: 5px 12px !important;
}

/* ===== SPACE KAM KARO ===== */
section {
    padding: 40px 0 !important;
}

.container {
    padding: 0 15px !important;
}

.row {
    margin: 0 !important;
}

[class*="col-"] {
    padding: 0 10px !important;
    margin-bottom: 20px !important;
}

/* Extra space hatana */
.mt-5, .my-5 {
    margin-top: 20px !important;
}

.mb-5, .my-5 {
    margin-bottom: 20px !important;
}

.py-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

}

/* Extra Small Devices */
@media (max-width: 576px) {
    .top-video {
        height: 250px !important;
    }

    .we-make-section h1 {
        font-size: 1.8rem !important;
    }

    .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    #searchBox {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    .navbar-brand {
        font-size: 1.2rem !important;
    }
}
/* Make the container relative so absolute badges position inside it */

