:root {
            --primary-color: #4f46e5;
            --primary-hover: #4338ca;
            --background-color:rgb(128, 128, 128);
            --text-color: #1e293b;
            --sidebar-bg: #1e293b;
            --card-bg: #fff;
            --border-color:rgb(129, 129, 129);
            --success: #22c55e;
            --info: #0ea5e9;
            --warning: #f59e0b;
            --danger: #ef4444;
            --muted: #64748b;
            --shadow: 0 4px 24px rgba(34, 52, 69, 0.08);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: #fff;
            /*padding-top: 90px; /* Account for fixed navbar height */*/
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgb(33 34 36 / 0%), rgb(27 27 28 / 0%)), url(../img/banner-img.png);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            color: white;
            min-height: 60vh;
            border-radius: 2rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            margin: 1rem 0;
            padding: 60px 0;
            margin-top: 90px;
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.2), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.2), transparent 50%);
            border-radius: 2rem;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iaGVyby1kb3RzIiB4PSIwIiB5PSIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjQiIGN5PSI0IiByPSIxIiBvcGFjaXR5PSIwLjA1Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2hlcm8tZG90cykiLz48L3N2Zz4=');
            opacity: 0.3;
            border-radius: 2rem;
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
               background-color: #ff3cac;
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.5;
        }

        .gradient-text {
            /*background: linear-gradient(45deg, #ffffff, #e2e8f0, #ffffff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
            display: inline-block;
            animation: shine 3s linear infinite;
            color: #fff;
        }

        @keyframes shine {
            to { background-position: 200% center; }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        /*.hero-buttons .btn {
            padding: 0.9rem 2rem;
            font-weight: 600;
            border-radius: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

        .hero-buttons .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .hero-buttons .btn:hover::before {
            transform: translateX(100%);
        }

        .hero-buttons .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #22d3ee);
            border: none;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }

        .hero-buttons .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
        }

        .hero-buttons .btn-outline-light {
            border-width: 2px;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-buttons .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
        }*/

        .hero-stats {
            display: flex;
            gap: 2rem;
            justify-content: flex-start;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem 2rem;
                background-color: #ff3cac;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 120px;
                border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), rgba(34, 211, 238, 0.2));*/
            background-color: #0D1B2A;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-3px);
            background-color: #0D1B2A;
            border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
        }

        /*.stat-item:hover::before {
            opacity: 1;
        }*/

        .stat-item h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .stat-item p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stat-item:hover h3{
            color: #fff;
        }

        .stat-item:hover p{
            color: #fff;
        }

        .hero-image {
            position: relative;
            padding: 1rem;
            perspective: 1000px;
            z-index: 2;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), rgba(34, 211, 238, 0.2));
            border-radius: 1.5rem;
            z-index: -1;
            filter: blur(15px);
        }

        .hero-image img {
            border-radius: 1.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-image:hover img {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 991.98px) {
            .hero {
                padding: 40px 0;
                min-height: 50vh;
                border-radius: 1.5rem;
                margin: 0.5rem 0;
            }
            .hero::before, .hero::after {
                border-radius: 1.5rem;
            }
            .hero-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .hero-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.8rem;
            }
            .hero-buttons .btn {
                flex: 1;
                min-width: 120px;
                max-width: 140px;
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            .hero-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
                margin-top: 1.5rem;
            }
            .stat-item {
                padding: 1rem 1.5rem;
                min-width: 100px;
            }
            .stat-item h3 {
                font-size: 1.8rem;
            }
            .hero-image {
                margin-top: 2rem;
                padding: 0.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero {
                padding: 30px 0;
                min-height: auto;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-wrap: wrap;
                gap: 0.6rem;
            }
            .hero-buttons .btn {
                flex: 1;
                min-width: 100px;
                max-width: 110px;
                padding: 0.7rem 0.8rem;
                font-size: 0.85rem;
                text-align: center;
            }
            .stat-item {
                padding: 0.8rem 1rem;
            }
            .stat-item h3 {
                font-size: 1.5rem;
            }
            .stat-item p {
                font-size: 0.8rem;
            }
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: #f1f5f9;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #fc00ff 0%, #00dbde 100%);

        }
        .services h2{
            color: #fff;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(45deg, rgba(79, 70, 229, 0.03), rgba(34, 211, 238, 0.03));
            pointer-events: none;
        }

        .service-card {
            padding: 2rem;
            border-radius: 1.25rem;
            transition: all 0.3s;
            background: #ffffff;
            box-shadow: 0 4px 24px rgba(34, 52, 69, 0.08);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(34,52,69,0.12);
            background: #ffffff;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #22d3ee);
            opacity: 0;
            transition: opacity 0.3s;
        }

       /* .service-card:hover::before {
            opacity: 1;
        }*/

        .service-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary-color), #22d3ee);
            color: #fff;
            font-size: 2rem;
            box-shadow: 0 8px 16px rgba(34,52,69,0.16);
            /*margin-bottom: 1.5rem;*/
            transition: transform 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .service-card p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Callertunes Section */
        .callertunes {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            position: relative;
            overflow: hidden;
            margin: 2rem 0;
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(225, 29, 72, 0.25);
        }

        .callertunes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 2rem;
            pointer-events: none;
        }

        .callertunes::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iY2FsbGVyLWRvdHMiIHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iNCIgY3k9IjQiIHI9IjEiIG9wYWNpdHk9IjAuMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjYWxsZXItZG90cykiLz48L3N2Zz4=');
            opacity: 0.3;
            animation: float 25s infinite linear;
            border-radius: 2rem;
        }

        .callertunes-container {
            position: relative;
            z-index: 2;
        }

        .callertunes-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        .callertunes-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .callertunes-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.5;
        }

        .callertunes-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 3rem;
            justify-content: flex-start;
        }

        .callertunes-feature-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .callertunes-feature-item::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;
        }

        .callertunes-feature-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .callertunes-feature-item:hover::before {
            left: 100%;
        }

        .callertunes-feature-icon {
            font-size: 1.2rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .telecom-providers {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
            justify-content: flex-start;
        }

        .telecom-provider {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 1rem 1.5rem;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .telecom-provider::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;
        }

        .telecom-provider:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .telecom-provider:hover::before {
            left: 100%;
        }

        .telecom-provider img {
            height: 28px;
            width: auto;
            filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .callertunes-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .callertunes-image-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .callertunes-image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 2rem;
            filter: blur(20px);
            z-index: 0;
        }

        .callertunes-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }

        .callertunes-image:hover {
            transform: scale(1.05) rotateY(-5deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        /* Floating elements for callertune theme */
        .callertune-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatCallertune 15s ease-in-out infinite;
        }
        .callertune-floating.phone { top: 10%; left: 5%; animation-delay: 0s; }
        .callertune-floating.sim { top: 20%; right: 8%; animation-delay: 3s; }
        .callertune-floating.call { bottom: 25%; left: 10%; animation-delay: 6s; }
        .callertune-floating.tower { bottom: 15%; right: 12%; animation-delay: 9s; }
        .callertune-floating.music { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatCallertune {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        @media (max-width: 991.98px) {
            .callertunes {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .callertunes::before, .callertunes::after {
                border-radius: 1.5rem;
            }
            .callertunes-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .callertunes-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .callertunes-features {
                flex-direction: column;
                align-items: center;
            }
            .callertunes-feature-item {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .telecom-providers {
                flex-direction: column;
                align-items: center;
            }
            .telecom-provider {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .callertunes-image-container {
                margin-top: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .callertunes-title {
                font-size: 2rem;
            }
            .callertunes-subtitle {
                font-size: 1rem;
            }
            .callertunes-features {
                gap: 1rem;
            }
            .callertunes-feature-item {
                font-size: 0.9rem;
                padding: 0.8rem 1.2rem;
            }
            .telecom-provider {
                font-size: 1rem;
                padding: 0.8rem 1.2rem;
            }
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(30, 41, 59, 0.25);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 2rem;
            pointer-events: none;
        }

        .about::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iYWJvdXQtZG90cyIgeD0iMCIgeT0iMCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48Y2lyY2xlIGZpbGw9IiNmZmYiIGN4PSI0IiBjeT0iNCIgcj0iMSIgb3BhY2l0eT0iMC4xIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2Fib3V0LWRvdHMpIi8+PC9zdmc+');
            opacity: 0.3;
            animation: float 25s infinite linear;
            border-radius: 2rem;
        }

        .about-container {
            position: relative;
            z-index: 2;
        }

        .about-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.5;
        }

        .about-card {
            background-color: #0D1B2A;
            border-radius: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            padding: 2.5rem 2rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #22d3ee);
            border-radius: 2rem 2rem 0 0;
            opacity: 0;
            transition: opacity 0.3s;
                background-color: #0D1B2A;
        }

        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
                background-color: #0D1B2A;
        }

       /* .about-card:hover::before {
            opacity: 1;
        }*/

        .about-content {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .about-stat-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            color: white;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 120px;
        }

        .about-stat-item::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;
        }

        .about-stat-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .about-stat-item:hover::before {
            left: 100%;
        }

        .about-stat-number {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.25rem;
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-stat-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .about-feature-item {
            background: rgba(79, 70, 229, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(79, 70, 229, 0.3);
            border-radius: 1.5rem;
            padding: 0.75rem 1.25rem;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .about-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
            transition: left 0.5s;
        }

        .about-feature-item:hover {
            transform: translateY(-2px);
            background: rgba(79, 70, 229, 0.3);
            box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2);
        }

        .about-feature-item:hover::before {
            left: 100%;
        }

        .about-feature-icon {
            font-size: 1.1rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .about-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .about-image-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(34, 211, 238, 0.2));
            border-radius: 2rem;
            filter: blur(20px);
            z-index: 0;
        }

        .about-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .about-image:hover {
            transform: scale(1.03) rotateY(-3deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        /* Floating elements for about theme */
        .about-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatAbout 15s ease-in-out infinite;
        }
        .about-floating.music { top: 10%; left: 5%; animation-delay: 0s; }
        .about-floating.star { top: 20%; right: 8%; animation-delay: 3s; }
        .about-floating.heart { bottom: 25%; left: 10%; animation-delay: 6s; }
        .about-floating.rocket { bottom: 15%; right: 12%; animation-delay: 9s; }
        .about-floating.diamond { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatAbout {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        @media (max-width: 991.98px) {
            .about {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .about::before, .about::after {
                border-radius: 1.5rem;
            }
            .about-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .about-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .about-card {
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
                margin-top: 2rem;
            }
            .about-stats {
                justify-content: center;
            }
            .about-features {
                justify-content: center;
            }
            .about-image-container {
                margin-top: 2rem;
            }
            .about-image {
                border-radius: 1.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .about-title {
                font-size: 2rem;
            }
            .about-subtitle {
                font-size: 1rem;
            }
            .about-card {
                padding: 1.5rem 1rem;
            }
            .about-stats {
                gap: 1rem;
            }
            .about-stat-item {
                padding: 0.8rem 1rem;
                min-width: 100px;
            }
            .about-stat-number {
                font-size: 1.5rem;
            }
            .about-feature-item {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #4f46e5 75%, #22d3ee 100%);
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 2rem;
            pointer-events: none;
        }

        .contact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iY29udGFjdC1kb3RzIiB4PSIwIiB5PSIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjQiIGN5PSI0IiByPSIxIiBvcGFjaXR5PSIwLjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjY29udGFjdC1kb3RzKSIvPjwvc3ZnPg==');
            opacity: 0.3;
            animation: float 25s infinite linear;
            border-radius: 2rem;
        }

        .contact-container {
            position: relative;
            z-index: 2;
        }

        .contact-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .contact-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.5;
        }

        /* Floating elements for contact/music theme */
        .contact-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatContact 15s ease-in-out infinite;
        }
        .contact-floating.music { top: 10%; left: 5%; animation-delay: 0s; }
        .contact-floating.envelope { top: 20%; right: 8%; animation-delay: 3s; }
        .contact-floating.phone { bottom: 25%; left: 10%; animation-delay: 6s; }
        .contact-floating.headphones { bottom: 15%; right: 12%; animation-delay: 9s; }
        .contact-floating.microphone { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatContact {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        .contact-info-card {
            background-color: #0D1B2A;
            border-radius: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            padding: 2.5rem 2rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #22d3ee);
            border-radius: 2rem 2rem 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background-color: #0D1B2A;
        }

        /*.contact-info-card:hover::before {
            opacity: 1;
        }*/

        .contact-info-card .mb-2, .contact-info-card div {
            color: #fff !important;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-info-card i {
            font-size: 1.2rem;
            color: #22d3ee;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .contact-action-buttons {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
            width: 100%;
        }

        .contact-action-btn {
            flex: 1;
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            font-weight: 600;
            border: none;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

        .contact-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .contact-action-btn:hover::before {
            transform: translateX(100%);
        }

        .whatsapp-btn {
                background: linear-gradient(135deg, #ff3cac, #ff3cac);
    color: white;
    box-shadow: 0 4px 15px rgb(255 60 172 / 60%);
    border-radius: 50px;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgb(255 60 172 / 60%);
            color: white;
            text-decoration: none;
        }

        .call-btn {
            background: linear-gradient(135deg, #4f46e5, #22d3ee);
            color: white;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            }

        .call-btn:hover {
            transform: translateY(-3px);
            /*box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);*/
            color: white;
            text-decoration: none;
        }

        .contact-form {
                background-color: #0D1B2A;
            border-radius: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            padding: 2.5rem 2rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #22d3ee, var(--primary-color));
            border-radius: 2rem 2rem 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
                background-color: #0D1B2A;
        }

        /*.contact-form:hover::before {
            opacity: 1;
        }*/

        .contact-form label {
            color: #fff;
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-form label i {
            font-size: 1.1rem;
            color: #22d3ee;
        }

        .contact-form .form-control, .contact-form .form-select {
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            backdrop-filter: blur(5px);
        }

        .contact-form .form-control::placeholder, .contact-form .form-select::placeholder {
            color: rgba(255, 255, 255, 0.7) !important;
            opacity: 1;
        }

        .contact-form .form-control:focus, .contact-form .form-select:focus {
            border-color: #22d3ee;
            box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-form textarea.form-control {
            resize: none;
            min-height: 120px;
        }

        .contact-form .btn-primary {
            padding: 1.2rem 2rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-radius: 1.5rem;
                background-color: #ff3cac;
            border: none;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-form .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .contact-form .btn-primary:hover {
                background-color: #ff3cac;
            
            transform: translateY(-3px);
        }

        .contact-form .btn-primary:hover::before {
            transform: translateX(100%);
        }

        .contact-form .form-select,
        .contact-form select {
            background-color: rgba(255, 255, 255, 0.1) !important;
            color: #fff !important;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-form .form-select option,
        .contact-form select option {
            background-color: #1e293b !important;
            color: #fff !important;
        }

        @media (max-width: 991.98px) {
            .contact {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .contact::before, .contact::after {
                border-radius: 1.5rem;
            }
            .contact-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .contact-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .contact-info-card, .contact-form {
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
                margin-bottom: 2rem;
            }
            .contact-action-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            .contact-title {
                font-size: 2rem;
            }
            .contact-subtitle {
                font-size: 1rem;
            }
            .contact-info-card, .contact-form {
                padding: 1.5rem 1rem;
            }
            .contact-action-btn {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
        }

        /* Footer Section */
        footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #4f46e5 75%, #7c3aed 100%);
            padding: 80px 0 30px;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
            pointer-events: none;
        }

        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZm9vdGVyLWRvdHMiIHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iNCIgY3k9IjQiIHI9IjEiIG9wYWNpdHk9IjAuMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmb290ZXItZG90cykiLz48L3N2Zz4=');
            opacity: 0.2;
            animation: float 30s infinite linear;
        }

        .footer-container {
            position: relative;
            z-index: 2;
        }

        .footer-main {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            padding: 3rem 2.5rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4f46e5, #7c3aed, #22d3ee);
            border-radius: 2rem 2rem 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-main:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        /*.footer-main:hover::before {
            opacity: 1;
        }*/

        .footer-brand {
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            color: #fff;
        }

        .footer-brand p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .footer-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-stat-item {
            background-color: #ff3cac;
            border-radius: 1.5rem;
            padding: 1.5rem 1rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .footer-stat-item::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;
        }

        .footer-stat-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .footer-stat-item:hover::before {
            left: 100%;
        }

        .footer-stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .footer-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-social {
            text-align: center;
            margin-bottom: 2rem;
        }

        .footer-social h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .footer-social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer-social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: scale(0);
            transition: transform 0.3s;
            border-radius: 50%;
        }

        .footer-social-link:hover {
            transform: translateY(-3px) scale(1.1);
            color: white;
            text-decoration: none;
        }

        .footer-social-link:hover::before {
            transform: scale(1);
        }

        .footer-social-link.facebook:hover { background: linear-gradient(135deg, #1877f2, #42a5f5); }
        .footer-social-link.whatsapp:hover { background: linear-gradient(135deg, #25d366, #128c7e); }
        .footer-social-link.instagram:hover { 
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); 
        }
        .footer-social-link.telegram:hover { background: linear-gradient(135deg, #0088cc, #229ed9); }
        .footer-social-link.youtube:hover { background: linear-gradient(135deg, #ff0000, #cc0000); }

        .footer-bottom {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2rem;
            padding: 2rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /*.footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #22d3ee, #4f46e5, #7c3aed);
            opacity: 0.8;
        }*/

        .footer-credits {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 1rem 2rem;
            display: inline-block;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 1rem;
        }

        .footer-credits-text {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .footer-credits-label {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-credits-team {
            color: #22d3ee;
            font-weight: 700;
        }

        .footer-credits-link {
            color: white;
            text-decoration: none;
            padding: 0.3rem 0.8rem;
            border-radius: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-credits-link:hover {
            color: white;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .footer-copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .footer-main {
                padding: 2rem 1.5rem;
                border-radius: 1.5rem;
            }
            .footer-brand h3 {
                font-size: 2rem;
                text-align: center;
            }
            .footer-brand p {
                text-align: center;
                font-size: 1.1rem;
            }
            .footer-stats {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            footer {
                padding: 60px 0 20px;
            }
            .footer-main {
                padding: 1.5rem 1rem;
            }
            .footer-brand h3 {
                font-size: 1.8rem;
            }
            .footer-brand p {
                font-size: 1rem;
            }
            .footer-bottom {
                padding: 1.5rem 1rem;
                border-radius: 1.5rem;
            }
            .footer-credits-text {
                font-size: 0.9rem;
                text-align: center;
            }
            .footer-social-links {
                gap: 0.8rem;
            }
            .footer-social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        /* Navigation */
        .navbar {
            /*background: linear-gradient(45deg, rgba(30, 41, 59, 0.95), rgba(79, 70, 229, 0.95));*/
            background-color: #0D1B2A;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed !important;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            overflow: hidden;
            margin: 0;
            border-radius: 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            z-index: 1030;
        }

        /* Added new rules for navbar spacing */
        .navbar-nav {
            gap: 0 !important;
        }
        
        .nav-item {
            padding: 0;
            margin: 0 0.2rem !important;
        }
        
        /* Overriding Bootstrap's margin utilities */
        .nav-item.ms-3 {
            margin-left: 0.6rem !important; /* 20% less than 0.75rem */
        }
        
        .nav-item.ms-2 {
            margin-left: 0.4rem !important; /* 20% less than 0.5rem */
        }
        
        /* End of new rules */

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at top right, rgba(79, 70, 229, 0.3), transparent 50%),
                radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.3), transparent 50%);
            opacity: 0.5;
            pointer-events: none;
        }

        .navbar.scrolled {
            /*background: linear-gradient(45deg, rgba(30, 41, 59, 0.98), rgba(79, 70, 229, 0.98));*/
            background-color: #0D1B2A;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            padding: 0.8rem 0;
            margin: 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: white !important;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0.6rem 1.2rem;
            border-radius: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            /*background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);*/
        }

        .navbar-brand::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), rgba(34, 211, 238, 0.2));
            border-radius: 1rem;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .navbar-brand:hover {
            /*transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
        }

        /*.navbar-brand:hover::before {
            opacity: 1;
        }
*/
        .navbar-brand img {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            /*filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));*/
            margin-right: 0.75rem;
        }

        .navbar-brand:hover img {
           /* transform: scale(1.1) rotate(5deg);*/
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.6rem 5px !important;
            border-radius: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            position: relative;
            margin: 0 0.32rem;
            z-index: 1;
            /*background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);*/
        }

        /*.nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), rgba(34, 211, 238, 0.2));
            border-radius: 1rem;
            opacity: 0;
            transition: opacity 0.4s;
        }*/

        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
            /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        .nav-link i {
            font-size: 1.1rem;
            margin-right: 0.75rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .btn-outline-light {
            border-width: 2px;
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 1rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin: 0 0.32rem;
            border-radius: 50px;
        }

        .btn-outline-light::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .btn-outline-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
            /*background: rgba(255, 255, 255, 0.1);*/
            background-color: #FF3CAC;
            border-color: #FF3CAC;
            color: #fff;
        }

        .btn-outline-light:hover::before {
            transform: translateX(100%);
        }

        .btn-primary {
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 1rem;
            /*background: linear-gradient(45deg, var(--primary-color), #22d3ee);*/
            background-color: #FF3CAC;
            border: none;
            position: relative;
            overflow: hidden;
            margin: 0 0.32rem;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
            border: 1px solid rgb(255 60 172);
                border-radius: 50px
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow:none;
                background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
        }

        .btn-primary:hover::before {
            transform: translateX(100%);
        }

        @media (max-width: 991.98px) {
            .navbar {
                margin: 0;
                padding: 0.8rem;
            }

            .navbar-collapse {
                background: linear-gradient(45deg, rgba(30, 41, 59, 0.98), rgba(79, 70, 229, 0.98));
                padding: 1.5rem;
                border-radius: 1.25rem;
                margin-top: 1rem;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                position: relative;
                overflow: hidden;
            }

            .navbar-collapse::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: 
                    radial-gradient(circle at top right, rgba(79, 70, 229, 0.3), transparent 50%),
                    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.3), transparent 50%);
                opacity: 0.5;
                pointer-events: none;
                border-radius: 1.25rem;
            }

            .nav-item {
                margin: 0.75rem 0;
            }

            .btn-outline-light, .btn-primary {
                width: 100%;
                justify-content: center;
                margin: 0.75rem 0;
            }

            .navbar-nav {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem 0.8rem !important; /* 20% less than 1rem */
                justify-items: center;
                align-items: center;
                width: 100%;
            }
            .nav-item {
                width: 100%;
                display: flex;
                justify-content: center;
                margin: 0 !important;
            }
            .nav-link {
                width: 90%;
                min-width: 120px;
                max-width: 180px;
                height: 38px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                border-radius: 1rem;
                margin: 0 auto;
            }
            .btn-primary, .btn-outline-light {
                grid-column: span 2;
                width: 95%;
                margin: 0.5rem auto !important;
                height: 38px;
                font-size: 1.1rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .navbar-nav .nav-item:last-child {
                order: 99;
            }
            .navbar-nav .nav-item .btn-outline-light {
                order: 100;
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(45deg, rgba(30, 41, 59, 0.95), rgba(79, 70, 229, 0.95));
            padding: 3rem 0;
            border-radius: 1.5rem 1.5rem 0 0;
            margin: 2rem 1rem 0 1rem;
            box-shadow: 0 -8px 32px rgba(0,0,0,0.10);
            position: relative;
            overflow: hidden;
            color: #fff;
            backdrop-filter: blur(10px);
            border-top: 1.5px solid rgba(255,255,255,0.10);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), transparent 50%),
                radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.2), transparent 50%);
            opacity: 0.5;
            pointer-events: none;
            border-radius: 1.5rem 1.5rem 0 0;
        }

        footer h5 {
            color: #fff;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        footer p {
            color: #e0e7ef;
            font-size: 1.05rem;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.10);
            transition: all 0.3s;
            font-size: 1.3rem;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
            color: #fff;
            box-shadow: 0 2px 8px rgba(79, 70, 229, 0.10);
            border: 1.5px solid rgba(255,255,255,0.10);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .social-links a:hover {
            background: linear-gradient(45deg, var(--primary-color), #22d3ee);
            color: #fff;
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 6px 18px rgba(79, 70, 229, 0.18);
            text-decoration: none;
        }

        @media (max-width: 991.98px) {
            footer {
                border-radius: 1rem 1rem 0 0;
                margin: 1rem 0 0 0;
                padding: 2rem 0;
            }
            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                margin: 0 0.3rem;
                text-decoration: none;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /*body {
                padding-top: 75px; /* Adjust for smaller navbar on mobile */
            }*/
            
            .hero {
                height: auto;
                padding: 100px 0;
            }

            .services {
                padding: 60px 0;
            }

            .service-card {
                margin-bottom: 1.5rem;
            }

            .callertunes, .about, .contact {
                padding: 60px 0;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .container {
                max-width: 95vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .hero {
                padding: 60px 0;
                min-height: 70vh;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p.lead {
                font-size: 1.15rem;
            }
            .hero-buttons .btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            .hero-image img {
                max-width: 90%;
                height: auto;
            }
            .services, .about, .callertunes, .contact, .pricing {
                padding: 60px 0;
                border-radius: 1.25rem;
                margin: 1rem 0;
            }
            .service-card, .about-card, .callertunes-card, .contact-info-card, .contact-form, .pricing-card {
                border-radius: 1rem;
                padding: 1.5rem 1rem;
            }
            .service-card h3, .about-card h2, .callertunes-card h3, .contact-form label, .pricing-title {
                font-size: 1.15rem;
            }
            .service-icon, .pricing-icon {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }
            .stat-item h3, .price-amount {
                font-size: 2rem;
            }
            .stat-item p {
                font-size: 1rem;
            }
            .contact .row {
                gap: 1.5rem 0;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin: 0 0.2rem;
                text-decoration: none;
            }
        }



        /* VEVO Video Distribution Section */
        .vevo-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.25);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .vevo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 2rem;
            pointer-events: none;
        }

        .vevo-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0idmV2by1kb3RzIiB4PSIwIiB5PSIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjQiIGN5PSI0IiByPSIxIiBvcGFjaXR5PSIwLjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjdmV2by1kb3RzKSIvPjwvc3ZnPg==');
            opacity: 0.3;
            animation: float 25s infinite linear;
            border-radius: 2rem;
        }

        .vevo-container {
            position: relative;
            z-index: 2;
        }

        .vevo-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        .vevo-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .vevo-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.5;
        }

        .vevo-card {
            /*background: rgba(255, 255, 255, 0.1);*/
            border-radius: 2rem;
            /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);*/
            padding: 2.5rem 2rem;
            /*backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);*/
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .vevo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff0000, #ffffff);
            border-radius: 2rem 2rem 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .vevo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

       /* .vevo-card:hover::before {
            opacity: 1;
        }*/

        .vevo-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .vevo-feature-item {
                background-color: #ff3cac;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 1.5rem 1rem;
            color: white;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border-top-left-radius: 65px;
    border-bottom-right-radius: 65px;
        }

        .vevo-feature-item::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;
        }

        .vevo-feature-item:hover {
            transform: translateY(-5px);
            /*background: rgba(255, 255, 255, 0.25);*/
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            background-color: #0D1B2A;
            border-top-right-radius: 65px;
            border-bottom-left-radius: 65px;
            border-top-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .vevo-feature-item:hover::before {
            left: 100%;
        }

        .vevo-feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            color: #ffffff;
        }

        .vevo-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
        }

        .vevo-feature-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }

        .vevo-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .vevo-benefit-item {
            background-color: #162144;
            backdrop-filter: blur(10px);
            border: 1px solid #162144;
            border-radius: 1.5rem;
            padding: 0.75rem 1.25rem;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .vevo-benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
            transition: left 0.5s;
        }

        .vevo-benefit-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(220, 38, 38, 0.2);
            background-color: #ff3cac;
            border-color: #ff3cac;
        }

        .vevo-benefit-item:hover::before {
            left: 100%;
        }

        .vevo-benefit-icon {
            font-size: 1.1rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .vevo-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .vevo-image-wrapper {
            position: relative;
            max-width: 400px;
            width: 100%;
        }

        .vevo-image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 2rem;
            filter: blur(20px);
            z-index: 0;
        }

        .vevo-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .vevo-image:hover {
            transform: scale(1.03) rotateY(-3deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        /* Floating elements for VEVO theme */
        .vevo-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatVevo 15s ease-in-out infinite;
        }
        .vevo-floating.video { top: 10%; left: 5%; animation-delay: 0s; }
        .vevo-floating.play { top: 20%; right: 8%; animation-delay: 3s; }
        .vevo-floating.camera { bottom: 25%; left: 10%; animation-delay: 6s; }
        .vevo-floating.youtube { bottom: 15%; right: 12%; animation-delay: 9s; }
        .vevo-floating.film { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatVevo {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        @media (max-width: 991.98px) {
            .vevo-section {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .vevo-section::before, .vevo-section::after {
                border-radius: 1.5rem;
            }
            .vevo-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .vevo-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .vevo-card {
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
                margin-top: 2rem;
            }
            .vevo-features {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }
            .vevo-benefits {
                justify-content: center;
            }
            .vevo-image-container {
                margin-top: 2rem;
            }
            .vevo-image {
                border-radius: 1.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .vevo-title {
                font-size: 2rem;
            }
            .vevo-subtitle {
                font-size: 1rem;
            }
            .vevo-card {
                padding: 1.5rem 1rem;
            }
            .vevo-features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .vevo-feature-item {
                padding: 1rem 0.8rem;
            }
            .vevo-benefit-item {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 100px 0;
                margin-top: 75px !important;
            }

            .services {
                padding: 60px 0;
            }

            .service-card {
                margin-bottom: 1.5rem;
            }

            .callertunes, .about, .contact {
                padding: 60px 0;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .container {
                max-width: 95vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .hero {
                padding: 60px 0;
                min-height: 70vh;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p.lead {
                font-size: 1.15rem;
            }
            .hero-buttons .btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            .hero-image img {
                max-width: 90%;
                height: auto;
            }
            .services, .about, .callertunes, .contact, .pricing {
                padding: 60px 0;
                border-radius: 1.25rem;
                margin: 1rem 0;
            }
            .service-card, .about-card, .callertunes-card, .contact-info-card, .contact-form, .pricing-card {
                border-radius: 1rem;
                padding: 1.5rem 1rem;
            }
            .service-card h3, .about-card h2, .callertunes-card h3, .contact-form label, .pricing-title {
                font-size: 1.15rem;
            }
            .service-icon, .pricing-icon {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }
            .stat-item h3, .price-amount {
                font-size: 2rem;
            }
            .stat-item p {
                font-size: 1rem;
            }
            .contact .row {
                gap: 1.5rem 0;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin: 0 0.2rem;
                text-decoration: none;
            }
        }

        /* Pricing Section */
        .pricing {
            padding: 60px 0;
            background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(45deg, rgba(79, 70, 229, 0.02), rgba(34, 211, 238, 0.02));
            pointer-events: none;
        }

        .pricing-card {
            background: #ffffff;
            border-radius: 2rem;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 24px rgba(34, 52, 69, 0.08);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(34, 52, 69, 0.15);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 25px 50px rgba(79, 70, 229, 0.3);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #22d3ee);
            opacity: 0;
            transition: opacity 0.3s;
        }

        /*.pricing-card:hover::before, .pricing-card.featured::before {
            opacity: 1;
        }
*/
        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), #22d3ee);
            color: #fff;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem auto;
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
            transition: transform 0.3s;
        }

        .pricing-card.featured .pricing-icon {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .pricing-card:hover .pricing-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .pricing-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        .pricing-card.featured .pricing-title {
            color: white;
        }

        .pricing-subtitle {
            color: var(--muted);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .pricing-card.featured .pricing-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }

        .pricing-card.featured .price-amount {
            color: white;
        }

        .price-period {
            color: var(--muted);
            font-size: 1rem;
            font-weight: 500;
        }

        .pricing-card.featured .price-period {
            color: rgba(255, 255, 255, 0.8);
        }

        .royalty-share {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            margin: 1rem 0 2rem 0;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured .royalty-share {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .royalty-share::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        .pricing-features {
            flex: 1;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 1rem;
            color: var(--text-color);
        }

        .pricing-card.featured .feature-item {
            color: white;
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon {
            color: #22c55e;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .pricing-card.featured .feature-icon {
            color: #86efac;
        }

        .feature-text {
            font-weight: 500;
        }

        .pricing-cta {
            margin-top: auto;
        }

        .pricing-btn {
            width: 100%;
            padding: 1rem 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 1.5rem;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .pricing-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .pricing-btn:hover::before {
            transform: translateX(100%);
        }

        .pricing-btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #22d3ee);
            color: white;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }

        .pricing-btn-primary:hover {
            background: linear-gradient(135deg, #22d3ee, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
            color: white;
            text-decoration: none;
        }

        .pricing-btn-secondary {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
        }

        .pricing-btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
            text-decoration: none;
        }

        .pricing-card.featured .pricing-btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .pricing-card.featured .pricing-btn-secondary:hover {
            background: white;
            color: var(--primary-color);
            border-color: white;
        }

        .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
            z-index: 10;
        }

        /* Floating elements for pricing theme */
        .pricing-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.08;
            font-size: 4rem;
            color: var(--primary-color);
            animation: floatPricing 12s ease-in-out infinite;
        }
        .pricing-floating.tag1 { top: 15%; left: 5%; animation-delay: 0s; }
        .pricing-floating.tag2 { top: 25%; right: 8%; animation-delay: 3s; }
        .pricing-floating.dollar1 { bottom: 30%; left: 10%; animation-delay: 6s; }
        .pricing-floating.percent1 { bottom: 15%; right: 15%; animation-delay: 9s; }
        @keyframes floatPricing {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
        }

        @media (max-width: 991.98px) {
            .pricing {
                padding: 60px 0;
            }
            .pricing-card {
                margin-bottom: 2rem;
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
            }
            .pricing-card.featured {
                transform: none;
                margin-bottom: 2rem;
            }
            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
            .pricing-icon {
                width: 64px;
                height: 64px;
                font-size: 2rem;
            }
            .pricing-title {
                font-size: 1.5rem;
            }
            .price-amount {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .pricing {
                padding: 60px 0;
            }
            .pricing-card {
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
            }
            .pricing-icon {
                width: 64px;
                height: 64px;
                font-size: 2rem;
            }
            .pricing-title {
                font-size: 1.5rem;
            }
            .price-amount {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .pricing-card {
                margin-bottom: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .container {
                max-width: 95vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .hero {
                padding: 60px 0;
                min-height: 70vh;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p.lead {
                font-size: 1.15rem;
            }
            .hero-buttons .btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            .hero-image img {
                max-width: 90%;
                height: auto;
            }
            .services, .about, .callertunes, .contact, .pricing {
                padding: 60px 0;
                border-radius: 1.25rem;
                margin: 1rem 0;
            }
            .service-card, .about-card, .callertunes-card, .contact-info-card, .contact-form, .pricing-card {
                border-radius: 1rem;
                padding: 1.5rem 1rem;
            }
            .service-card h3, .about-card h2, .callertunes-card h3, .contact-form label, .pricing-title {
                font-size: 1.15rem;
            }
            .service-icon, .pricing-icon {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }
            .stat-item h3, .price-amount {
                font-size: 2rem;
            }
            .stat-item p {
                font-size: 1rem;
            }
            .contact .row {
                gap: 1.5rem 0;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin: 0 0.2rem;
                text-decoration: none;
            }
        }

        /* Sell Your Content Section */
        .sell-content {
            padding: 80px 0;
           /* background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 25%, #ff8e53 50%, #ff6b9d 75%, #c44569 100%);*/
            background: linear-gradient(135deg, #8e2de2 0%, #ff6ec4 50%, #4a00e0 100%);
            position: relative;
            overflow: hidden;
            margin: 2rem 0;
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(255, 107, 107, 0.25);
        }

        .sell-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 2rem;
            pointer-events: none;
        }

        .sell-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0ic2VsbC1kb3RzIiB4PSIwIiB5PSIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjQiIGN5PSI0IiByPSIxIiBvcGFjaXR5PSIwLjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjc2VsbC1kb3RzKSIvPjwvc3ZnPg==');
            opacity: 0.3;
            animation: float 25s infinite linear;
            border-radius: 2rem;
        }

        .sell-content-container {
            position: relative;
            z-index: 2;
        }

        .sell-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .sell-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .sell-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.5;
        }

        .sell-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 3rem;
            justify-content: center;
        }

        .sell-feature-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .sell-feature-item::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;
        }

        .sell-feature-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .sell-feature-item:hover::before {
            left: 100%;
        }

        .sell-feature-icon {
            font-size: 1.2rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .sell-cta-section {
            text-align: center;
        }

        .sell-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #ff6b6b;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 2rem;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 
                0 8px 25px rgba(255, 255, 255, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sell-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .sell-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 15px 35px rgba(255, 255, 255, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.15);
            color: #e55656;
            text-decoration: none;
        }

        .sell-button:hover::before {
            transform: translateX(100%);
        }

        .sell-button i {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .sell-button:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .sell-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .sell-image-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .sell-image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 2rem;
            filter: blur(20px);
            z-index: 0;
        }

        .sell-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sell-image:hover {
            transform: scale(1.05) rotateY(-5deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        /* Floating elements for sell content theme */
        .sell-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatSell 15s ease-in-out infinite;
        }
        .sell-floating.music { top: 10%; left: 5%; animation-delay: 0s; }
        .sell-floating.video { top: 20%; right: 8%; animation-delay: 3s; }
        .sell-floating.dollar { bottom: 25%; left: 10%; animation-delay: 6s; }
        .sell-floating.tag { bottom: 15%; right: 12%; animation-delay: 9s; }
        .sell-floating.play { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatSell {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        @media (max-width: 991.98px) {
            .sell-content {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .sell-content::before, .sell-content::after {
                border-radius: 1.5rem;
            }
            .sell-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .sell-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .sell-features {
                flex-direction: column;
                align-items: center;
            }
            .sell-feature-item {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .sell-button {
                font-size: 1.1rem;
                padding: 1rem 2rem;
            }
            .sell-image-container {
                margin-top: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .sell-title {
                font-size: 2rem;
            }
            .sell-subtitle {
                font-size: 1rem;
            }
            .sell-button {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
                flex-direction: column;
                gap: 0.5rem;
            }
            .sell-button i {
                font-size: 1.2rem;
            }
            .sell-features {
                gap: 1rem;
            }
            .sell-feature-item {
                font-size: 0.9rem;
                padding: 0.8rem 1.2rem;
            }
        }


        /*//////////////////////////login css//////////////////*/


        .login-form-box {
            min-height: 100vh;
            background: url('../img/loginbg.png') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .login-form-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1;
        }
        .login-container {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 420px;
            margin: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .login-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .login-header img {
            height: 56px;
            display: block;
            margin: 0 auto 0.75rem auto;
        }

        .login-header p {
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            background: white;
        }

        .form-group .material-icons {
            position: absolute;
            right: 1rem;
            top: 2.5rem;
            color: #9ca3af;
            font-size: 1.25rem;
        }

        .btn-login {
            width: 100%;
            padding: 0.875rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .btn-login:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
        }

        .btn-login .material-icons {
            font-size: 1.25rem;
        }

        .error-message {
            color: var(--error-color);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }

        .error-message .material-icons {
            font-size: 1.25rem;
        }

        @media (max-width: 640px) {
            .login-container {
                margin: 1rem;
                padding: 2rem;
            }

            .login-header img {
                height: 48px;
            }
        }

        .forgot-password-link {
            text-align: center;
            margin-top: 1.5rem;
        }

        .forgot-password-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .forgot-password-link a:hover {
            color: var(--primary-hover);
        }

        .forgot-password-link .material-icons {
            font-size: 1.25rem;
        }

        .signup-link {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e5e7eb;
        }

        .signup-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .signup-link a:hover {
            color: var(--primary-hover);
        }

        .signup-link .material-icons {
            font-size: 1.25rem;
        }

        .alert-danger {
            color: #721c24;
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            border-radius: 0.5rem;
            padding: 0.75rem 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .alert-danger a {
            color: #721c24;
            font-weight: 600;
            text-decoration: underline;
        }

        .alert-danger .material-icons {
            font-size: 1.25rem;
            color: #dc2626;
        }

        /*///////////////////////signup///////////////////////*/

        .signup-form-box {
            min-height: 100vh;
            background: url('../img/loginbg.png') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .signup-form-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1;
        }
        .signup-form-box .login-container {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 420px;
            margin: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .signup-form-box .login-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .signup-form-box .login-header img {
            height: 56px;
            display: block;
            margin: 0 auto 0.75rem auto;
        }
        .signup-form-box .login-header p {
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .signup-form-box .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        .signup-form-box .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1f2937;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .signup-form-box .form-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.9);
        }
        .signup-form-box .form-group input:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            background: white;
        }
        .signup-form-box .form-group .material-icons {
            position: absolute;
            right: 1rem;
            top: 2.5rem;
            color: #9ca3af;
            font-size: 1.25rem;
        }
        .signup-form-box .btn-login {
            width: 100%;
            padding: 0.875rem;
            background: #4f46e5;
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .signup-form-box .btn-login:hover {
            background: #4338ca;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
        }
        .signup-form-box .btn-login .material-icons {
            font-size: 1.25rem;
        }
        .signup-form-box .forgot-password-link {
            text-align: center;
            margin-top: 1.5rem;
        }
        .signup-form-box .forgot-password-link a {
            color: #4f46e5;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }
        .signup-form-box .forgot-password-link a:hover {
            color: #4338ca;
        }
        .signup-form-box .forgot-password-link .material-icons {
            font-size: 1.25rem;
        }
        .signup-form-box .alert-info {
            color: #0c5460;
            background-color: #d1ecf1;
            border-color: #bee5eb;
            border-radius: 0.5rem;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        /* Spinner Animation */
        .signup-form-box .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Upload Progress Styles */
        #upload-progress {
            animation: fadeIn 0.3s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 640px) {
            .signup-form-box .login-container {
                margin: 1rem;
                padding: 2rem;
            }
            .signup-form-box .login-header img {
                height: 48px;
            }
        }


        /*//////////////////////////////////////////////////////////*/

         .forgotpassword-form-box {
            min-height: 100vh;
            background: url('../img/loginbg.png') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .forgotpassword-form-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1;
        }
        .forgotpassword-form-box .forgot-password-container {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 420px;
            margin: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .forgotpassword-form-box .forgot-password-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .forgotpassword-form-box .forgot-password-header img {
            height: 56px;
            display: block;
            margin: 0 auto 0.75rem auto;
        }

        .forgotpassword-form-box .forgot-password-header p {
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .forgotpassword-form-box .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .forgotpassword-form-box .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .forgotpassword-form-box .form-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        .forgotpassword-form-box .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
            background: white;
        }

        .forgotpassword-form-box .form-group .material-icons {
            position: absolute;
            right: 1rem;
            top: 2.5rem;
            color: #9ca3af;
            font-size: 1.25rem;
        }

        .forgotpassword-form-box .btn-reset {
            width: 100%;
            padding: 0.875rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .forgotpassword-form-box .btn-reset:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
        }

        .forgotpassword-form-box .btn-reset .material-icons {
            font-size: 1.25rem;
        }

        .forgotpassword-form-box .error-message {
            color: var(--error-color);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }

        .forgotpassword-form-box .success-message {
            color: var(--success-color);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }

        .forgotpassword-form-box .plain-password-display {
            background: rgba(16, 185, 129, 0.08);
            color: #065f46;
            font-size: 1rem;
            font-weight: 600;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            border: 1px solid #10b981;
        }

        .forgotpassword-form-box .email-display {
            background: rgba(79, 70, 229, 0.1);
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .forgotpassword-form-box .email-display .material-icons {
            font-size: 1.25rem;
        }

        .forgotpassword-form-box .back-to-login {
            text-align: center;
            margin-top: 1.5rem;
        }

        .forgotpassword-form-box .back-to-login a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .forgotpassword-form-box .back-to-login a:hover {
            color: var(--primary-hover);
        }

        @media (max-width: 640px) {
            .forgotpassword-form-box .forgot-password-container {
                margin: 1rem;
                padding: 2rem;
            }

            .forgotpassword-form-box .forgot-password-header img {
                height: 48px;
            }
        }








        .service-card-2 {
    margin-top: 30px;
    overflow: hidden;
    padding: 24px;
    text-align: center;
    position: relative;
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    margin-top: 30px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: #fff;
    /*height: 360px;*/
}
.service-card-2 span {
    width: 97%;
    height: 40%;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    border-radius: 0 0 50px 50px;
    background-color: #ff3cac73;
    overflow: hidden;
    position: absolute;
    left: 10px;
    top: -60px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.service-card-2 span::before {
    content: '';
    width: 0%;
    height: 0%;
    -webkit-transition: .5s ease-in;
    transition: .5s ease-in;
    border-radius: 0 0 50px 50px;
    background-color: #ff3cac;
    position: absolute;
    top: 0;
    right: 0;
}
.service-card-content {
    position: relative;
    margin-top: -20px;
}
.service-card-2 .service-card-content {
    position: relative;
}
.service-card-2 .service-card-content .service-card-2-img {
    width: 100px;
    height: 100px;
    padding: 20px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ff3cac;
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    border: 2px solid #fff;
}
.service-card-2 .service-card-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.service-card-2:hover span::before {
    width: 100%;
    height: 100%;
    right: unset;
    left: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    border-radius: 0 0 50px 50px;
}