    /* Reset and Base Styles */

    @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Parisienne&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
        max-width: 100vw;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #000000;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }


    /* Header & Navigation */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(15px);
        z-index: 1000;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header.scrolled {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-logo img {
        width: 110px;
        /* height: 50px; */
        object-fit: contain;
        filter: brightness(1.1);
    }

    .nav-logo-text h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: -5px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-logo-text span {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 300;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2.5rem;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: all 0.3s ease;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7));
        transition: width 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #ffffff;
        transform: translateY(-1px);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: #ffffff;
        margin: 4px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Base Styles (Applies to all) */
    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        min-width: 240px;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.4);
        z-index: 1001;
        border-radius: 12px;
        overflow: hidden;
        top: calc(100% + 10px);
        left: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-content a {
        color: rgba(255, 255, 255, 0.9);
        padding: 15px 20px;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        font-weight: 400;
    }

    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding-left: 25px;
    }

    .dropdown.active .dropdown-content {
        display: block;
        animation: fadeInDropdown 0.3s ease;
    }

    .dropdown .nav-link i {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
        margin-left: 5px;
    }

    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }

    /* -------------------------------------
    Mobile Styles (Up to 600px)
    -------------------------------------- */
    @media screen and (max-width: 600px) {
        .dropdown {
            width: 100%;
        }

        .dropdown-content {
            position: static;
            width: 100%;
            box-shadow: none;
            background: rgba(255, 255, 255, 0.05);
            margin-top: 0.5rem;
            border-radius: 8px;
        }

        .dropdown-content a {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }
    }

    /* -------------------------------------
    Tablet Styles (601px to 968px)
    -------------------------------------- */
    @media screen and (max-width: 1024px) {
        /* Hide regular menu on mobile/tablet */
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right 0.3s ease;
            z-index: 999;
        }

        .nav-menu.active {
            right: 0;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        }

        .nav-item {
            width: 100%;
            margin: 0;
            text-align: center;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.3s ease;
        }

        .nav-menu.active .nav-item {
            opacity: 1;
            transform: translateX(0);
        }

        .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
        .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
        .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
        .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
        .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
        .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }

        .nav-link {
            display: block;
            /* padding: 18px 20px; */
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            text-align: center;
            justify-content: center;
        }

        /* Show hamburger toggle */
        .nav-toggle {
            display: flex;
            z-index: 1000;
        }

        /* Dropdown styles for mobile/tablet */
        .dropdown {
            width: 100%;
            text-align: center;
        }

        .dropdown-content {
            position: static;
            width: 100%;
            box-shadow: none;
            background: rgba(255, 255, 255, 0.05);
            margin-top: 0;
            border-radius: 0;
            text-align: center;
            display: none;
            animation: none;
        }

        .dropdown.active .dropdown-content {
            display: block;
            animation: fadeInMobile 0.3s ease;
        }

        .dropdown-content a {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.3);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }
        
        /* Ensure proper alignment of dropdown trigger */
        .dropdown .nav-link {
            justify-content: center;
        }
        
        /* Dropdown chevron animation */
        .dropdown .nav-link i {
            transition: transform 0.3s ease;
            margin-left: 8px;
        }
        
        .dropdown.active .nav-link i {
            transform: rotate(180deg);
        }
    }
    /* -------------------------------------
    Desktop / Laptop Styles (969px and up)
    -------------------------------------- */
    @media screen and (min-width: 969px) {
        .dropdown {
            width: auto;
        }

        .dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            width: auto;
            background: rgba(0, 0, 0, 0.95);
            box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-content a {
            padding: 15px 20px;
            font-size: 1rem;
        }
    }


    /* Animation keyframes */
    @keyframes fadeInDropdown {
        from { 
            opacity: 0; 
            transform: translateY(-10px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }

    @keyframes fadeInMobile {
        from { 
            opacity: 0; 
            max-height: 0; 
        }
        to { 
            opacity: 1; 
            max-height: 300px; 
        }
    }


    /*hero new  */
    /* Hero Section - Updated Mobile Layout */
    /* Hero Section - Updated Mobile Layout */

    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow: hidden;
        padding-top: 55vh;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        padding: 0 2rem;
        transform: translateY(-20%);
    }

    .hero-title {
        font-family: 'Marcellus', serif;
        font-weight: 400;
        margin-bottom: 1.8rem;
        line-height: 1.3;
    }

    .welcome-text {
        display: block;
        font-size: 1.6rem;
        letter-spacing: 2px;
        color: #e6d4ff;
        margin-bottom: 0.8rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .hero-studio-name {
        display: block;
        font-family: 'Dancing Script', cursive;
        font-size: 3.5rem;
        color: #ffffff;
        text-shadow: 0 3px 12px rgba(0,0,0,0.6);
        margin-top: -0.8rem;
        letter-spacing: 1.5px;
        font-weight: 400;
        background: linear-gradient(135deg, #ffffff 0%, #e6d4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        padding-bottom: 8px;
    }

    .hero-studio-name::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #FA17F4, transparent);
    }

    .hero-subtext {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.3rem;
        font-weight: 300;
        color: #f0e5ff;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #FA17F4, rgba(193, 155, 245, 0.8));
        backdrop-filter: blur(5px);
        color: white;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 500;
        font-size: 1.1rem;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.4s ease;
        box-shadow: 0 4px 20px rgba(156, 105, 226, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-button:hover {
        background: linear-gradient(135deg, #e013d9, rgba(177, 131, 240, 0.9));
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(156, 105, 226, 0.4);
    }

    .cta-button i {
        margin-left: 0.8rem;
        transition: transform 0.3s ease;
    }

    .cta-button:hover i {
        transform: translateX(2px);
    }

    .hero-carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        opacity: 0;
        transition: opacity 2.5s ease-in-out;
    }

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }

    /* Tablet Responsive - Keep Original Layout */
    @media (max-width: 1024px) and (min-width: 769px) {
        .hero {
            padding-top: 50vh;
        }
        
        .hero-content {
            transform: translateY(-15%);
            max-width: 700px;
        }
        
        .welcome-text {
            font-size: 1.4rem;
        }
        
        .hero-studio-name {
            font-size: 3rem;
        }
        
        .hero-subtext {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            padding: 0.9rem 2.2rem;
            font-size: 1rem;
        }
        
        .carousel-slide {
            background-attachment: scroll;
        }
    }

    /* Large Mobile/Small Tablet - Keep Original Layout */
    @media (max-width: 768px) and (min-width: 481px) {
        .hero {
            padding-top: 45vh;
            min-height: 600px;
        }
        
        .hero-content {
            transform: translateY(-10%);
            padding: 0 1.5rem;
            width: 90%;
        }
        
        .welcome-text {
            font-size: 1.6rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .hero-studio-name {
            font-size: 2.8rem;
            margin-top: -0.5rem;
            letter-spacing: 1px;
        }
        
        .hero-studio-name::after {
            width: 100px;
            height: 2px;
        }
        
        .hero-subtext {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 1.8rem;
        }
        
        .cta-button {
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        .carousel-slide {
            background-attachment: scroll;
        }
    }

    /* Small Mobile Responsive - NEW LAYOUT */
    @media (max-width: 480px) {
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: 0;
            overflow: hidden;
        }
        
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 50vh;
            flex-shrink: 0;
            order: 1;
        }
        
        .carousel-container {
            height: 100%;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem 1.5rem;
            transform: none;
            background: #000;
            order: 2;
            width: 100%;
            box-sizing: border-box;
        }
        
        .welcome-text {
            font-size: 1.8rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .hero-studio-name {
            font-size: 2.8rem;
            margin-top: -0.5rem;
            letter-spacing: 1px;
            text-align: center;
        }
        
        .hero-studio-name::after {
            width: 100px;
            height: 2px;
        }
        
        .hero-subtext {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 1.8rem;
            text-align: center;
            /* max-width: 90%; */
        }
        
        .cta-button {
            padding: 1rem 2rem;
            font-size: 1rem;
            text-align: center;
        }
    }

    /* Small Mobile Responsive */
    @media (max-width: 480px) {
    .hero {
        padding-top: 6vh;
        min-height: 800px;
    }
    
    .hero-content {
        transform: translateY(-5%);
        padding: 0 15px;
        width: 100%;
    }
    
    .welcome-text {
        /* margin-top: 40px; */
        font-size: 1.7rem;
    }
    
    .hero-studio-name {
        font-size: 2.6rem;
    }
    
    .hero-studio-name::after {
        width: 80px;
    }
    
    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 1.6rem;
    }
    
    .cta-button {
            padding: 0.7rem 1.2rem; /* Reduced from 0.7rem 1.5rem */
            font-size: 0.85rem; /* Reduced from 0.9rem */
            white-space: nowrap;
        }
    
    /* .hero-title {
        margin-bottom: 1.2rem;
    } */
    }



    /* About Section */
    .about-section {
        padding: 80px 20px;
        background-color: #000;
        text-align: center;
        color: white;
    }

    .about-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .studio-header {
        margin-bottom: 40px;
    }

    .studio-name {
        font-size: 2.8rem;
        font-weight: normal;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .studio-tagline {
        font-size: 1.2rem;
        letter-spacing: 8px;
        color: #ff2d2d;
        margin-bottom: 0;
        text-transform: uppercase;
        font-weight: normal;
    }

    .about-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    /* Tablet Responsive */
    @media (max-width: 1024px) {
        .about-section {
            padding: 70px 20px;
        }
        
        .studio-name {
            font-size: 2.5rem;
        }
        
        .studio-tagline {
            font-size: 1.1rem;
            letter-spacing: 6px;
        }
        
        .about-content p {
            font-size: 1.15rem;
            line-height: 1.7;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 15px;
        }
        
        .studio-header {
            margin-bottom: 30px;
        }
        
        .studio-name {
            font-size: 2.2rem;
            letter-spacing: 1.5px;
        }
        
        .studio-tagline {
            font-size: 1rem;
            letter-spacing: 4px;
        }
        
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.6;
        }
    }

    /* Small Mobile Responsive */
    @media (max-width: 480px) {
        .about-section {
            padding: 50px 12px;
        }
        
        .studio-header {
            margin-bottom: 25px;
        }
        
        .studio-name {
            font-size: 1.8rem;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .studio-tagline {
            font-size: 0.9rem;
            letter-spacing: 3px;
        }
        
        .about-content p {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 15px;
            letter-spacing: 0.3px;
        }
    }



    /* Mobile Responsive */
    @media (max-width: 768px) {
        .about-section {
            padding: 60px 15px;
        }
        
        .studio-header {
            margin-bottom: 30px;
        }
        
        .studio-name {
            font-size: 2.2rem;
            letter-spacing: 1.5px;
        }
        
        .studio-tagline {
            font-size: 1rem;
            letter-spacing: 4px;
        }
        
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.6;
        }
    }

    /* Small Mobile Responsive */
    @media (max-width: 480px) {
        .about-section {
            padding: 50px 12px;
        }
        
        .studio-header {
            margin-bottom: 25px;
        }
        
        .studio-name {
            font-size: 1.8rem;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .studio-tagline {
            font-size: 0.9rem;
            letter-spacing: 3px;
        }
        
        .about-content p {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 15px;
            letter-spacing: 0.3px;
        }
    }



    /* offer section */

    .offer-section {
        padding: 80px 20px;
        background-color: #000;
        font-family: 'Marcellus', serif;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .image-stack a{
        text-decoration: none;
    }
    .section-subtitle {
        display: inline-block;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        position: relative;
    }

    .section-subtitle::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
    }

    .image-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .image-container {
        position: relative;
        width: 90%;
        height: 190px;
        overflow: hidden;
        /* border-radius: 150px; */
        box-shadow: 0 4px 20px rgba(250, 23, 244, 0.3);
        transition: all 0.4s ease;
        border: 2px solid transparent;
    }

    .image-container:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(250, 23, 244, 0.5);
        border: 2px solid #FA17F4;
    }

    .content-box {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .content-box h2 {
        color: white;
        font-size: 3.5rem;
        font-weight: 600;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        z-index: 2;
        text-align: center;
        letter-spacing: 1px;
        font-family: 'Dancing Script', cursive;
        margin-bottom: 10px;
    }

    .underline {
        width: 60%;
        height: 2px;
        background: linear-gradient(to right, transparent, #FA17F4, rgba(193, 155, 245, 0.8), transparent);
        margin-top: 5px;
        transition: all 0.3s ease;
    }

    .image-container:hover .underline {
        width: 80%;
        background: linear-gradient(to right, transparent, #ffffff, #ffffff, transparent);
    }

    .studio-bg {
        background: linear-gradient(135deg, #FA17F4, rgba(193, 155, 245, 0.8));
    }

    .online-bg {
        background: linear-gradient(135deg, #FA17F4, rgba(193, 155, 245, 0.8));
    }

    .recorded-bg {
        background: linear-gradient(135deg, #FA17F4, rgba(193, 155, 245, 0.8));
    }

    .wedding-bg {
        background: linear-gradient(135deg, #FA17F4, rgba(193, 155, 245, 0.8));
    }

    .content-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FA17F4' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        mix-blend-mode: overlay;
        opacity: 0.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .image-container {
            width: 95%;
            height: 200px;
            border-radius: 0px;
        }
        
        .content-box h2 {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 480px) {
        .image-container {
            width: 100%;
            max-width: calc(100vw - 20px);
            margin: 0 auto;
        }

        .content-box h2 {
            font-size: 2rem;
        }
        
        .offer-section {
            padding: 60px 10px;
        }
    }

    /* thumbnail  */
    .youtube-cards-section {
        background: #0f0f0f;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 80px 20px;
        overflow-x: hidden;
        width: 100%;
        flex-direction: column;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
        width: 100%;
    }


    .video-cards-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        max-width: 1800px;
        margin: 0 auto;
    }

    .video-card {
        width: 300px;
        height: 290px;
        background: #252525;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
    }

    .thumbnail-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 0, 0, 0.8);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .play-button i {
        color: white;
        font-size: 20px;
        margin-left: 4px;
    }

    .video-card:hover .play-button {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .video-card:hover .thumbnail-image {
        filter: brightness(1.2);
    }

    .video-info {
        padding: 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #1e1e1e;
    }

    .video-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .video-channel {
        font-size: 14px;
        color: #aaa;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .video-cards-container {
            gap: 20px;
        }
        
        .video-card {
            width: 300px;
            height: 260px;
        }
    }

    @media (max-width: 768px) {
        .video-cards-container {
            flex-direction: column;
            align-items: center;
        }
        
        .video-card {
            width: 100%;
            max-width: 400px;
            height: 200px;
        }
        
        .section-subtitle {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .youtube-cards-section {
            padding: 40px 15px;
        }
        
        .video-card {
            height: 230px;
        }
        
        .video-title {
            font-size: 14px;
        }
        
        .video-channel {
            font-size: 12px;
        }
        
        .play-button {
            width: 50px;
            height: 50px;
        }
    }


    /* testimionals */
    .test-carousel-section {
            background: #0a0a0a;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 60px 0;
            width: 100%;
            box-sizing: border-box;
        }

        .test-section-header {
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .test-section-subtitle {
            color: #888;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
            font-size: 25px;
        }

        .test-section-title {
            color: #ffffff;
            font-size: 40px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .test-carousel-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 0 60px;
            box-sizing: border-box;
        }

        .test-carousel-content {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
        }

        .test-testimonial-slide {
            display: none;
            width: 100%;
            text-align: center;
            animation: test-fadeIn 0.5s ease-in-out;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .test-testimonial-slide.test-active {
            display: block;
        }

        @keyframes test-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .test-testimonial-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 5px;
            box-sizing: border-box;
        }

        .test-testimonial-text {
            font-size: 25px;
            line-height: 1.5;
            margin-bottom: 20px;
            font-weight: 300;
            color: #ffffff;
            text-align: center;
        }

        .test-customer-name {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ffffff;
            margin-top: 20px;
        }

        .test-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            padding: 10px;
            transition: all 0.3s ease;
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .test-carousel-nav:hover {
            color: #666;
            transform: translateY(-50%) scale(1.1);
            background: rgba(255, 255, 255, 0.1);
        }

        .test-nav-prev {
            left: 10px;
        }

        .test-nav-next {
            right: 10px;
        }

        .test-dots-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .test-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #444;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .test-dot.test-active {
            background: #fff;
            transform: scale(1.2);
        }

        .test-dot:hover {
            background: #888;
        }

        /* Mobile-specific adjustments */
        @media (max-width: 768px) {
            .test-carousel-section {
                padding: 40px 0;
                min-height: 70vh;
            }
            
            .test-section-header {
                margin-bottom: 30px;
            }
            
            .test-section-title {
                font-size: 24px;
            }
            
            .test-carousel-container {
                padding: 0 50px;
            }
            
            .test-carousel-nav {
                font-size: 24px;
                width: 35px;
                height: 35px;
                padding: 8px;
            }
            
            .test-nav-prev {
                left: 5px;
            }
            
            .test-nav-next {
                right: 5px;
            }
            
            .test-testimonial-slide {
                padding: 0 20px;
            }
            
            .test-testimonial-text {
                font-size: 16px;
                line-height: 1.4;
                padding: 0 5px;
            }
            
            .test-customer-name {
                font-size: 13px;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .test-carousel-container {
                padding: 0 40px;
            }
            
            .test-testimonial-slide {
                padding: 0 25px;
            }
            
            .test-carousel-nav {
                font-size: 20px;
                width: 30px;
                height: 30px;
            }
            
            .test-testimonial-text {
                font-size: 15px;
                padding: 0 8px;
            }

            .test-section-title {
                font-size: 24px;
            }

            .test-section-subtitle {
                font-size: 16px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .test-carousel-container {
                padding: 0 70px;
            }
            
            .test-carousel-nav {
                font-size: 35px;
                width: 45px;
                height: 45px;
            }
            
            .test-nav-prev {
                left: 15px;
            }
            
            .test-nav-next {
                right: 15px;
            }
        }

        /* Laptop/Desktop Styles */
        @media (min-width: 1025px) {
            .test-carousel-nav {
                font-size: 40px;
                width: 50px;
                height: 50px;
            }
            
            .test-nav-prev {
                left: 15px;
            }
            
            .test-nav-next {
                right: 15px;
            }
        }
            /* Responsive Design */
            @media (max-width: 1024px) {
                .carousel-section {
                    padding: 40px 0;
                }

                .carousel-container {
                    padding: 0 100px;
                }

                .testimonial-slide.active {
                    gap: 30px;
                }

                .profile-image {
                    width: 180px;
                    height: 180px;
                }

                .testimonial-text {
                    font-size: 22px;
                }

                .section-title {
                    font-size: 32px;
                }

                .nav-prev {
                    left: 30px;
                }

                .nav-next {
                    right: 30px;
                }
            }

            @media (max-width: 768px) {
                .carousel-section {
                    padding: 30px 15px;
                    min-height: 70vh;
                }

                .carousel-container {
                    padding: 0 60px;
                }

                .section-header {
                    margin-bottom: 40px;
                }

                .section-title {
                    font-size: 28px;
                }

                .testimonial-slide {
                    padding: 0 20px;
                }

                .testimonial-slide.active {
                    flex-direction: column;
                    text-align: center;
                    gap: 25px;
                }

                .testimonial-content {
                    text-align: center;
                }

                .profile-image {
                    width: 160px;
                    height: 160px;
                }

                .testimonial-text {
                    font-size: 20px;
                    line-height: 1.3;
                    margin-bottom: 18px;
                }

                .customer-name {
                    font-size: 14px;
                }

                .carousel-nav {
                    font-size: 35px;
                    width: 50px;
                    height: 50px;
                    padding: 15px;
                }

                .nav-prev {
                    left: 10px;
                }

                .nav-next {
                    right: 10px;
                }
            }

            @media (max-width: 480px) {
                .carousel-section {
                    padding: 20px 10px;
                    min-height: 60vh;
                }

                .carousel-container {
                    padding: 0 50px;
                }

                .section-header {
                    margin-bottom: 30px;
                }

                .section-title {
                    font-size: 24px;
                }

                .testimonial-slide {
                    padding: 0 10px;
                }

                .testimonial-slide.active {
                    gap: 20px;
                }

                .profile-image {
                    width: 140px;
                    height: 140px;
                }

                .testimonial-text {
                    font-size: 18px;
                    margin-bottom: 15px;
                }

                .customer-name {
                    font-size: 12px;
                }

                .carousel-nav {
                    font-size: 30px;
                    width: 45px;
                    height: 45px;
                    padding: 10px;
                }

                .nav-prev {
                    left: 5px;
                }

                .nav-next {
                    right: 5px;
                }

                .dots-container {
                    gap: 8px;
                    margin-top: 25px;
                }

                .dot {
                    width: 10px;
                    height: 10px;
                }
            }


    /* Contact Section */

    .section-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }
    .contact-section {
        padding: 100px 20px;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .contact-details h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }

    .contact-details p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #ffffff;
        font-weight: 500;
    }

    /* new added  */
    .form-group input,
    .form-group select,
    .form-group textarea {
    color: #ffffff !important;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    }

    /* Select Dropdown Styling - FIXED */
    .form-group select {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
    }

    .form-group select option {
    background: #2a2a2a;
    color: #ffffff;
    }

    /* Make form fields required except message */
    #fullName:required,
    #email:required,
    #phone:required,
    #subject:required {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    }

    #message:optional {
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.15);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .error-message {
        display: block;
        color: #ff4444;
        font-size: 0.8rem;
        margin-top: 0.25rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .form-group.error .error-message {
        opacity: 1;
    }

    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #ff4444;
    }

    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
        color: #000000;
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .btn-loading {
        display: none;
    }

    .submit-btn.loading .btn-text,
    .submit-btn.loading .fa-paper-plane {
        display: none;
    }

    .submit-btn.loading .btn-loading {
        display: block;
    }

    .form-message {
        margin-top: 1rem;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
        font-weight: 500;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .form-message.show {
        opacity: 1;
    }

    .form-message.success {
        background: rgba(76, 175, 80, 0.2);
        color: #4CAF50;
        border: 1px solid rgba(76, 175, 80, 0.3);
    }

    .form-message.error {
        background: rgba(244, 67, 54, 0.2);
        color: #F44336;
        border: 1px solid rgba(244, 67, 54, 0.3);
    }
    @media (max-width: 480px) {
        .contact-section {
            padding: 80px 15px; /* Ensure consistent padding */
        }
        
        .contact-form {
            padding: 1.5rem 15px; /* Reduced padding */
            box-sizing: border-box;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            box-sizing: border-box;
            width: 100%;
        }
    }

    /* Footer */
    /* Footer */
    .footer {
        background: #000;
        color: #fff;
        padding: 3rem 0 0;
        font-family: 'Poppins', sans-serif;
    }

    .footer-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .footer-section {
        padding: 0 0.5rem;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        width: 110px;
        height: 65px;
        /* object-fit: cover;
        border-radius: 50%; */
    }

    .brand-name {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        color: #fff;
    }

    .brand-tagline {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        margin: 0.25rem 0 0;
    }

    .footer-about {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .social-media {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: #fff;
        color: #000;
        transform: translateY(-3px);
    }

    .footer-heading {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #fff;
        position: relative;
        padding-bottom: 0.75rem;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #fff;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        display: inline-block;
    }

    .footer-link:hover {
        color: #fff;
        transform: translateX(5px);
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        display: flex;
        gap: 0.75rem;
    }

    .contact-icon {
        color: #fff;
        font-size: 1rem;
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

    .contact-text {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
        /* display: flex; */
        /* justify-content: space-between;
        align-items: centers; */
        flex-wrap: wrap;
        gap: 1rem;
    }

    .copyright {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        margin: 0;
    }

    .legal-links {
        display: flex;
        gap: 1.5rem;
    }

    .legal-link {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .legal-link:hover {
        color: #fff;
    }


    /* WhatsApp Float */
    /* Pre-recorded Classes Floating Button */
    /* .prerecorded-float {
                position: fixed;
                width: 70px;
                height: 70px;
                bottom: 110px;
                right: 30px;
                background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
                color: white;
                text-align: center;
                box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
                z-index: 1000;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                transition: all 0.3s ease;
                animation: float 3s ease-in-out infinite;
                clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            }

            .prerecorded-float:hover {
                transform: scale(1.1);
                box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
            }

            .star-text {
                font-size: 0.63rem;
                font-weight: bold;
                text-align: center;
                line-height: 1.1;
                color: white;
            text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
                padding: 0 5px;
            }

            @keyframes float {
                0%, 100% { transform: translateY(0px); }
                50% { transform: translateY(-10px); }
            }


            @media screen and (max-width: 768px) {
                .prerecorded-float {
                    width: 60px;
                    height: 60px;
                    right: 20px;
                    bottom: 90px;
                }
                
                .star-text {
                    font-size: 0.6rem;
                }
            } */

            .prerecorded-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    }

    .prerecorded-popup.active {
    display: flex;
    opacity: 1;
    }

    .popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b35 100%);
    border-radius: 20px;
    overflow: hidden;
    width: 40%;
    max-width: 1000px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(250, 23, 244, 0.4);
    border: 2px solid rgba(250, 23, 244, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    }

    .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(250, 23, 244, 0.4);
    backdrop-filter: blur(5px);
    flex-shrink: 0;
    }

    .popup-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(250, 23, 244, 0.3);
    }

    .close-popup {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(250, 23, 244, 0.3);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }

    .close-popup:hover {
    background: rgba(250, 23, 244, 0.2);
    color: #FA17F4;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(250, 23, 244, 0.3);
    }

    .pre-video-container {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove fixed aspect ratio */
    aspect-ratio: unset;
    min-height: 300px;
    }

    .pre-video-container video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: inset 0 0 50px rgba(250, 23, 244, 0.1);
    }

    /* Fallback for browsers that don't support aspect-ratio */
    @supports not (aspect-ratio: 16/9) {
    .pre-video-container::before {
        content: none;
    }
    
    .pre-video-container video {
        position: static;
    }
    }

    .popup-footer {
    padding: 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    flex-shrink: 0;
    }

    .pre-recorded-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #FA17F4, rgba(193, 155, 245, 0.8));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 23, 244, 0.3);
    }

    .pre-recorded-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 23, 244, 0.5);
    }

    /* Pre-recorded Floating Button */
    .prerecorded-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    cursor: pointer;
    }

    .prerecorded-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
    }

    .star-text {
    font-size: 0.63rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    color: white;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    padding: 0 5px;
    }

    @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    }

    /* Tablet Responsive */
    @media screen and (max-width: 768px) {
    .prerecorded-float {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 90px;
    }
    
    .star-text {
        font-size: 0.6rem;
    }
    
    .prerecorded-popup {
        padding: 10px;
    }
    
    .popup-content {
        width: 100%;
        max-height: 95vh;
        border-radius: 15px;
        margin: 0 5px;
    }
    
    .popup-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .popup-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .close-popup {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .popup-footer {
        padding: 20px 15px;
    }
    
    .pre-recorded-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    }

    /* Mobile Responsive */
    @media screen and (max-width: 480px) {
    .prerecorded-popup {
        padding: 5px;
    }
    
    .popup-content {
        max-height: 98vh;
        border-radius: 10px;
        margin: 0;
    }
    
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-title {
        font-size: 1rem;
        flex: 1;
        margin-right: 10px;
    }
    
    .close-popup {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .popup-footer {
        padding: 15px 10px;
    }
    
    .pre-recorded-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    }

    /* Small Height Screens */
    @media screen and (max-height: 600px) {
    .popup-content {
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 10px 15px;
    }
    
    .popup-footer {
        padding: 12px 15px;
    }
    
    /* Adjust aspect ratio for very small screens */
    .pre-video-container {
        aspect-ratio: 16/10;
    }
    
    @supports not (aspect-ratio: 16/10) {
        .pre-video-container::before {
        padding-top: 62.5%; /* 16:10 aspect ratio */
        }
    }
    }
    /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        z-index: 1000;
        transition: all 0.3s ease;
        animation: float 3s ease-in-out infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-tooltip {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: #000000;
        color: #ffffff;
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 0.8rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    /* Responsive adjustments */
    @media screen and (max-width: 768px) {
        .prerecorded-float,
        .whatsapp-float {
            width: 50px;
            height: 50px;
            right: 20px;
        }
        
        .prerecorded-float {
            bottom: 90px;
        }
        
        .whatsapp-float {
            bottom: 20px;
        }
        
        .prerecorded-float i {
            font-size: 20px;
        }
        
        .prerecorded-tooltip,
        .whatsapp-tooltip {
            right: 60px;
            font-size: 0.7rem;
            padding: 6px 10px;
        }
    }
    /* Back to Top */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(10px);
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: #ffffff;
        color: #000000;
        transform: translateY(-3px);
    }

    /* Neon Glow Effects */
    .neon-glow {
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
        font-family: 'Pacifico';
    }

    .gallery-neon-glow {
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    }

    /* Responsive Design */

    /* Responsive Footer */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 2.5rem 0 0;
        }
        
        .footer-brand {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .social-media {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-section {
            padding: 10px;
        }
        
        .footer-heading {
            margin-bottom: 1rem;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .legal-links {
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
    }

    @media (max-width: 480px) {
        .footer-container {
            padding: 0 15px; /* Reduced from 0 1rem */
        }
        
        .contact-item {
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .contact-icon {
            margin-top: 0;
        }
    }


    @media (max-width: 1024px) {
        
        .contact-content {
            grid-template-columns: 1fr;
        }
        
        .testimonial-slider {
            height: 450px;
        }
    }

    @media (max-width: 768px) {
        .nav-container {
            padding: 1rem 15px; /* Reduced from 1rem 20px */
        }
        
        .nav-menu {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 2rem;
            transition: left 0.3s ease;
        }
        
        .nav-menu.active {
            left: 0;
        }
        
        .nav-toggle {
            display: flex;
        }
        
        .dropdown-content {
            position: static;
            display: none;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            box-shadow: none;
            border-radius: 0;
            border: none;
        }
        
        .dropdown:hover .dropdown-content {
            display: none;
        }
        
        .dropdown.active .dropdown-content {
            display: block;
            padding-left: 0;
        }
        
        .hero-content {
            padding: 0 20px;
        }
        
        .carousel-slide {
            background-attachment: scroll;
        }
        
        .footer {
            padding: 2.5rem 0 0;
        }
        
        .testimonial-slider {
            height: 500px;
        }
    }

    @media (max-width: 640px) {
        .masonry-grid {
            columns: 1;
        }
        
        .testimonial-slider {
            height: 550px;
        }
    }

    @media (max-width: 480px) {
        .nav-container {
            padding: 0.8rem 1rem;
        }
        
        .hero-cta {
            padding: 15px 25px;
            font-size: 1rem;
        }
        
        .footer-container {
            padding: 0 1rem;
        }
        
        .footer-brand {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .social-media {
            justify-content: flex-start;
        }
        
        .contact-item {
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .contact-icon {
            margin-top: 0;
        }
        
        .testimonial-slider {
            height: 600px;
        }
        
        .whatsapp-float {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
        
        .back-to-top {
            bottom: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
        }
        
        .whatsapp-tooltip {
            display: none;
        }
    }



    section {
        /* overflow-x: hidden; */
        max-width: 100vw;
        box-sizing: border-box;
    }

