 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');






        /* Variables - Light Mode Default */
        :root {
            --primary-color: #1a3a6e;
       
            --secondary-color: #f8c537;
            --accent-color: #e53935;
            --text-color: #333;
            --bg-color: #f5f5f5;
            --card-bg: #ffffff;
            --header-bg: #1a3a6e;
            --footer-bg: #1a3a6e;
            --border-color: #ddd;
            --input-bg: #ffffff;
        }

        /* Dark Mode Variables */
        [data-theme="dark"] {
            --primary-color: #6b9af8;
           
             --secondary-color: #f8c537;
            --accent-color: #ff5252;
            --text-color: #f0f0f0;
            --bg-color: #121212;
            --card-bg: #1e1e1e;
            --header-bg: #0a192f;
            --footer-bg: #0a192f;
            --border-color: #333;
            --input-bg: #2d2d2d;
            
        }

        /* Global Styles */
        

        a {
            text-decoration: none;
            color: var(--primary-color);
        }

        ul {
            list-style: none;
        }

        

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        
       

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            height: 50vh;
            min-height: 450px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            
        }


/* 📱 For mobile devices (screen width <= 768px) */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../img/closeup-cricket-equipment-green-grass-field-world-cup-concept-tools-bat-ball-wicket-stamp-helmet-background-399565990.webp'); /* Mobile background image */
        background-size: cover;
        background-position: center;
    }
}


        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h2 {
            
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 25px;
        }


       .about {
  padding: 60px 0;
  background: var(--bg-color);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* 👇 video eka image eka wage style ekata */
.about-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* optional: responsive adjustment */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }
  .about-text, .about-image {
    flex: 1;
  }
}


        /* Services Section */
        .services {
            padding: 60px 0;
            background: var(--bg-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .service-card {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-card i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .service-card p {
            font-size: 0.9rem;
        }


        /* Responsive Styles */
        @media (min-width: 768px) {
            .about-content {
                flex-direction: row;
                align-items: center;
            }
            
            .about-text, .about-image {
                flex: 1;
            }
            
            .contact-container {
                flex-direction: row;
            }
            
        
        }

        @media (max-width: 767px) {
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }

      /* styles.css */
        


                .stats {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-box {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3c72;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
        }

        /* Team Section */
        

        /* Mobile Responsive */
        @media (max-width: 768px) {
            
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .about, .stats, .team, .mission {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            
        }

        /* Use clamp() for responsive font sizes */

/* Enhanced Base Styles */
        :root {
            --primary: #1a3a6e;
            --secondary: #00bfff;
            --accent: #f8c537;
            --dark: #0a1a2e;
            --light: #f8fafc;
            --success: #4facfe;
            --warning: #43e97b;
            --whatsapp: #25D366;
            --text: #2d3748;
            --text-light: #718096;
            --text-dark: #1a202c;
            --card-bg: rgba(255, 255, 255, 0.95);
            --card-border: rgba(102, 126, 234, 0.15);
            --glow-primary: rgba(102, 126, 234, 0.3);
            --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
            --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.2);
        }
        
       

        

        
        /* Enhanced Section Titles */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
            text-align: center;
            width: 100%;
        }

        
        
        .section-title h2 {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 800;
            background:  #1a3a6e ;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 6px;
            background: var(--accent);
            border-radius: 3px;
            animation: underlinePulse 2s ease-in-out infinite;
        }

       

        @keyframes underlinePulse {
            0%, 100% { width: 100px; opacity: 1; }
            50% { width: 150px; opacity: 0.7; }
        }
 
        
         * {
            margin: 0;
            padding: 0;
             
            transition: background-color 0.3s, color 0.1s;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
         
        }

        
        ul {
            list-style: none;
        }

        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
