
       
        .coming-soon-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #0d2b45, #0a1a2a);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
            
        }
        
        /* Cricket field pattern overlay */
        .field-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(transparent 95%, rgba(255,255,255,0.05) 95%),
                linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.05) 95%);
            background-size: 50px 50px;
            opacity: 0.2;
            pointer-events: none;
        }
        
        .content-container {
            position: relative;
            z-index: 20;
            text-align: center;
            max-width: 1200px;
            width: 100%;
            padding: 2rem;
        }
        
        .logo-title {
            font-weight: 900;
            font-size: 4.5rem;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(255, 221, 85, 0.3);
        }
        
        .logo-title span {
            color: #ffdd55;
            position: relative;
            display: inline-block;
        }
        
        .logo-title span::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #ffdd55;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: right;
            animation: lineReveal 1.5s forwards 0.5s;
        }
        
        .coming-text {
            font-weight: 800;
            font-size: 5.5rem;
            margin: 2rem 0;
            text-transform: uppercase;
            background: linear-gradient(to right, #ffffff, #ffdd55);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 4px;
            animation: textPulse 2s infinite alternate;
            position: relative;
        }
        
        .tagline {
            font-size: 1.8rem;
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            color: #ffffff;
            opacity: 0.9;
        }
        
        .tagline strong {
            font-weight: 700;
            color: #ffdd55;
        }
        
        /* Cricket Equipment Container */
        .equipment-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin: 4rem auto;
            position: relative;
            height: 300px;
        }
        
        /* Tennis Ball */
        .tennis-ball-container {
            position: relative;
            width: 200px;
            height: 200px;
            perspective: 1200px;
            filter: drop-shadow(0 0 30px rgba(255, 221, 85, 0.5));
            z-index: 10;
        }
        
        .tennis-ball {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: float 8s ease-in-out infinite;
        }
        
        .ball {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #ffffff, #f0f0f0 40%, #ffdd55 70%);
            box-shadow: 
                inset -15px -15px 30px rgba(0, 0, 0, 0.3),
                inset 15px 15px 30px rgba(255, 255, 255, 0.6),
                0 0 50px rgba(255, 221, 85, 0.8);
            transform-style: preserve-3d;
            overflow: hidden;
        }
        
        .ball::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at center, transparent 65%, rgba(0,0,0,0.1) 100%),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 12px,
                    rgba(0,0,0,0.2) 12px,
                    rgba(0,0,0,0.2) 24px
                ),
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 12px,
                    rgba(0,0,0,0.2) 12px,
                    rgba(0,0,0,0.2) 24px
                );
            border-radius: 50%;
        }
        
        .ball-shadow {
            position: absolute;
            bottom: -30px;
            left: 50%;
            width: 120px;
            height: 20px;
            background: rgba(0,0,0,0.4);
            border-radius: 50%;
            transform: translateX(-50%);
            filter: blur(15px);
            animation: shadow 8s ease-in-out infinite;
        }
        
     
        .bat-handle {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 100px;
            background: linear-gradient(to right, #8b4513, #5d2906);
            border-radius: 8px;
        }
        
        .bat-blade {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 20px;
            background: linear-gradient(to right, #8b4513, #5d2906);
            border-radius: 4px 4px 0 0;
            transform-origin: bottom center;
            animation: batTwist 5s infinite alternate;
        }
        
        .bat-blade::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to right, #8b4513, #5d2906);
            border-radius: 0 0 10px 10px;
            clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
        }
        
        /* Cricket Stumps */
        .cricket-stumps {
            position: relative;
            width: 180px;
            height: 300px;
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: stumpsShake 12s infinite;
        }
        
        .stump {
            width: 12px;
            height: 250px;
            background: linear-gradient(to bottom, #d4af37, #8b6e2d);
            border-radius: 2px;
            position: relative;
            transform-origin: bottom;
            animation: stumpFloat 8s infinite;
        }
        
        .stump:nth-child(1) { animation-delay: 0s; }
        .stump:nth-child(2) { animation-delay: 0.2s; }
        .stump:nth-child(3) { animation-delay: 0.4s; }
        
        .stump::after {
            content: '';
            position: absolute;
            top: 0;
            left: -5px;
            width: 22px;
            height: 15px;
            background: #d4af37;
            border-radius: 4px;
        }
        
        .bails {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 15px;
            background: #d4af37;
            border-radius: 4px;
        }
        
       
       
        
        .form-control {
            background: rgba(255, 255, 255, 0.12);
            border: 2px solid rgba(255, 221, 85, 0.3);
            color: white;
            padding: 1rem 1.5rem;
            height: auto;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: #ffdd55;
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(255, 221, 85, 0.25);
        }
        
       
        
        .social-icons {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffdd55;
            font-size: 1.8rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(255, 221, 85, 0.3);
            transform: translateY(0);
        }
        
        .social-icon:hover {
            background: #ffdd55;
            color: #0a1a2a;
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 221, 85, 0.4);
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes shadow {
            0% { transform: translateX(-50%) scale(1); opacity: 0.7; }
            50% { transform: translateX(-50%) scale(0.8); opacity: 0.4; }
            100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
        }
        
        @keyframes textPulse {
            0% { 
                transform: scale(1);
                text-shadow: 0 0 10px rgba(255, 221, 85, 0.3);
            }
            100% { 
                transform: scale(1.05);
                text-shadow: 0 0 30px rgba(255, 221, 85, 0.6), 
                             0 0 50px rgba(255, 221, 85, 0.4);
            }
        }
        
        @keyframes lineReveal {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }
        
        @keyframes batSwing {
            0%, 100% { transform: rotate(-15deg); }
            50% { transform: rotate(-5deg); }
        }
        
        @keyframes batTwist {
            0% { transform: translateX(-50%) rotate(0deg); }
            100% { transform: translateX(-50%) rotate(5deg); }
        }
        
        @keyframes stumpsShake {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes stumpFloat {
            0%, 100% { transform: rotate(0); }
            50% { transform: rotate(3deg); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .logo-title { font-size: 3.8rem; }
            .coming-text { font-size: 4.5rem; }
            .equipment-container { gap: 30px; }
        }
        
        @media (max-width: 768px) {
            .logo-title { font-size: 3rem; }
            .coming-text { font-size: 3.5rem; }
            .tagline { font-size: 1.4rem; }
            .tennis-ball-container { width: 150px; height: 150px; }
            .cricket-bat { height: 250px; }
            .cricket-stumps { height: 250px; }
            .stump { height: 200px; }
           
        }
        
        @media (max-width: 576px) {
            .logo-title { font-size: 2.3rem; }
            .coming-text { font-size: 3.8rem; }
            .tagline { font-size: 1.8rem; }
            .equipment-container {
                flex-direction: column;
                height: auto;
                gap: 40px;
                margin: 2rem auto;
            }
            .tennis-ball-container { width: 120px; height: 120px; }
            .cricket-bat { transform: rotate(-10deg); height: 200px; }
            .cricket-stumps { height: 200px; }
            .stump { height: 160px; }
            
           
            .social-icon { width: 50px; height: 50px; font-size: 1.5rem; }
        }
 