

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1566842600175-97dca3dfc3c7?ixlib=rb-4.0.3') no-repeat center center/cover;
            color: white;
            padding: 80px 5%;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .search-box {
            background: white;
            max-width: 600px;
            margin: 0 auto;
            padding: 5px;
            border-radius: 50px;
            display: flex;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            outline: none;
            border-radius: 50px;
            font-size: 1.1rem;
        }

        .search-btn {
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .search-btn:hover {
            background: #ff9100;
        }

        /* Results Section */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .results-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .result-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .card-body {
            padding: 25px;
        }

        .winner-list {
            list-style: none;
        }

        .winner-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .winner-item:last-child {
            border-bottom: none;
        }

        .prize-badge {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Statistics Section */
        .stats {
            background: var(--primary);
            color: white;
            padding: 60px 5%;
            margin: 60px 0;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* How to Play */
        .how-to-play {
            padding: 40px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .step-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .step-card:hover {
            transform: translateY(-10px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 6rem;
            font-weight: 800;
            color: rgba(26, 35, 126, 0.05);
            z-index: 0;
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

       


        /* HERO SECTION */


        .hero {
            width: 100%;
            max-width: 1300px;
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.95)), url('https://images.unsplash.com/photo-1566842600175-97dca3dfc3c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjB8fGxvdHRlcnl8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            /* border-radius: 20px; */
            overflow: hidden;
            box-shadow: var(--shadow);
            padding: 60px 40px;
            position: relative;
            margin: 0 auto;
            margin-top: 0px;

        }

        .hero-content {
            /* max-width: 800px; */
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-box {
            background: white;
            max-width: 650px;
            margin: 0 auto;
            padding: 6px;
            border-radius: 60px;
            display: flex;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .search-box:focus-within {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
            border-color: var(--secondary);
        }

        .search-input {
            flex: 1;
            padding: 20px 25px;
            border: none;
            outline: none;
            border-radius: 60px;
            font-size: 1.1rem;
            background: transparent;
        }

        .search-input::placeholder {
            color: #aaa;
        }

        .search-btn {
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 60px;
            padding: 18px 35px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-btn:hover {
            background: #ff9100;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
        }

        .search-btn:active {
            transform: translateY(0);
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .feature i {
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .feature span {
            font-weight: 500;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .element-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: float 15s infinite ease-in-out;
        }

        .element-2 {
            width: 50px;
            height: 50px;
            top: 60%;
            right: 15%;
            animation: float 12s infinite ease-in-out reverse;
        }

        .element-3 {
            width: 40px;
            height: 40px;
            bottom: 20%;
            left: 20%;
            animation: float 10s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(0) rotate(0deg);
            }
            75% {
                transform: translateY(20px) rotate(-5deg);
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 40px 20px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .search-box {
                flex-direction: column;
                background: transparent;
                border-radius: 0;
                box-shadow: none;
                gap: 15px;
            }
            
            .search-input {
                border-radius: 10px;
                padding: 15px 20px;
                border: 2px solid white;
                colour:white;
            }
            
            .search-btn {
                border-radius: 10px;
                justify-content: center;
            }
            
            .hero-features {
                gap: 15px;
            }
            
            .feature {
                padding: 10px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
            .floating-elements {
                display: none;
            }
        }
        
        
        
.slider-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 10px;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px; /* large screens ke liye */
  height: 60vh; /* responsive height */
  max-height: 500px; /* max limit desktop ke liye */
  min-height: 200px; /* mobile par minimum height */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 📱 Mobile friendly adjustments */
@media (max-width: 768px) {
  .slider {
    height: 40vh; /* tablet ke liye chhoti height */
  }
}

@media (max-width: 480px) {
  .slider {
    height: 30vh; /* mobile ke liye aur chhoti height */
  }
}



/* ABOUT SECTION */

  .about-section {
            width: 100%;
            max-width: 1200px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1588690154757-badf4644190f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fGtlcmFsYSUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            padding: 50px 30px;
            position: relative;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .about-content {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            border-left: 4px solid var(--secondary);
            background: rgba(26, 35, 126, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 0 10px 10px 0;
            margin-right: 20px;
        }

        .about-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .btn-read-more {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-read-more:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .directors-container {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }

        .director-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            width: 230px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .director-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: white;
        }

        .director-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 4px solid var(--primary);
        }

        .director-card h5 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .director-card small {
            color: var(--gray);
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-content {
                margin-right: 0;
                margin-bottom: 40px;
                border-left: none;
                border-top: 4px solid var(--secondary);
                border-radius: 0 0 10px 10px;
            }
            
            .directors-container {
                justify-content: space-around;
            }
        }

        @media (max-width: 768px) {
            .about-content h2 {
                font-size: 2rem;
            }
            
            .about-content p {
                font-size: 1rem;
            }
            
            .director-card {
                width: 160px;
                padding: 15px;
            }
            
            .director-img {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                padding: 30px 15px;
            }
            
            .about-content {
                padding: 20px;
            }
            
            .about-content h2 {
                font-size: 1.8rem;
            }
            
            .directors-container {
                gap: 15px;
            }
            
            .director-card {
                width: 140px;
                padding: 12px;
            }
            
            .director-img {
                width: 80px;
                height: 80px;
            }
            
            .director-card h5 {
                font-size: 0.9rem;
            }
            
            .director-card small {
                font-size: 0.75rem;
            }
        }



























        /* Weekly Lotteries Section */
        .weekly-section {
            background: linear-gradient(45deg, rgba(0, 251, 228, 0.22) 0%, rgba(188, 189, 191, 0.32) 100%);
            padding: 50px 20px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .lottery-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .swiper {
            width: 100%;
            height: 400px;
        }

        .swiper-slide {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .swiper-slide:hover img {
            transform: scale(1.05);
        }

        .carousel-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            border-radius: 0 0 15px 15px;
        }

        .carousel-container h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .swiper-pagination-bullet {
            background: white;
            opacity: 0.5;
            width: 12px;
            height: 12px;
        }

        .swiper-pagination-bullet-active {
            background: var(--secondary);
            opacity: 1;
        }

        .swiper-button-next, .swiper-button-prev {
            color: white;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
        }

        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: var(--secondary);
        }

        /* Gallery Section */
        .gallery-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1614854262318-831574f15f1f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTZ8fGFic3RyYWN0JTIwYmFja2dyb3VuZHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            padding: 60px 30px;
            border-radius: 20px;
            margin-bottom: 40px;
            color: white;
            box-shadow: var(--shadow);
        }

        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .gallery-content {
            flex: 1;
            min-width: 300px;
        }

        .gallery-content small {
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .gallery-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            margin: 10px 0 25px;
            font-weight: 900;
        }

        .video-container {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .video-container video {
            width: 100%;
            display: block;
        }

        .gallery-images {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .gallery-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .gallery-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .gallery-img:first-child {
            grid-column: 1 / span 2;
        }

        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Clients Section */
        .clients-section {
            padding: 50px 20px;
            background: var(--light);
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }

        .clients-slider {
            padding: 20px 0;
        }

        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        .client-logo img {
            max-width: 100%;
            height: auto;
        }

        /* Check Result Button */
        .check-result-btn {
            display: block;
            width: fit-content;
            margin: 40px auto;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
        }

        .check-result-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 35, 126, 0.4);
        }

       