
   
    /* Hero Section */
    .hero {
        background: linear-gradient(to bottom right,
                rgba(0, 255, 213, 0.3),
                /* Top left: soft neon aqua */
                rgba(132, 9, 227, 0.7)
                /* Bottom right: stronger neon aqua */
            );
        background-size: cover;
        background-position: center;
        color: var(--light);
        padding: 100px 0;
        text-align: center;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><circle cx="50" cy="50" r="40" stroke="%23f5c542" stroke-width="2" fill="none" /></svg>');
        background-size: 200px;
        opacity: 0.3;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .search-box {
        background: var(--light);
        max-width: 600px;
        margin: 0 auto;
        border-radius: 50px;
        padding: 5px;
        display: flex;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 2px solid var(--secondary);
    }

    .search-input {
        flex: 1;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        font-size: 1rem;
        outline: none;
        background: transparent;
    }

    .search-btn {
        background: var(--accent);
        color: var(--light);
        border: none;
        border-radius: 50px;
        padding: 15px 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
    }

    .search-btn:hover {
        background: #ff2d55;
        box-shadow: 0 6px 15px rgba(255, 77, 109, 0.4);
    }

    /* Results Section */
    .section-title {
        text-align: center;
        margin: 60px 0 40px;
        position: relative;
    }

    .section-title h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        color: var(--primary);
        display: inline-block;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .section-title:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background: var(--secondary);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .lottery-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    .lottery-card {
        background: var(--light);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(157, 125, 255, 0.15);
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid rgba(157, 125, 255, 0.2);
    }

    .lottery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(157, 125, 255, 0.25);
    }

    .card-header {
        background: linear-gradient(135deg, var(--primary) 0%, #7d5fff 100%);
        color: var(--light);
        padding: 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .card-header::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: rotate(30deg);
        transition: all 0.5s;
    }

    .lottery-card:hover .card-header::after {
        animation: shine 1.5s forwards;
    }

    @keyframes shine {
        0% {
            top: -50%;
            right: -50%;
        }

        100% {
            top: 150%;
            right: 150%;
        }
    }

    .card-body {
        padding: 25px;
    }

    .winner-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .winner-name {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--dark);
    }

    .winner-prize {
        color: var(--success);
        font-weight: 700;
    }

    .winner-ticket {
        color: var(--gray);
        font-size: 0.9rem;
    }

    .view-btn {
        display: block;
        text-align: center;
        background: linear-gradient(135deg, var(--primary) 0%, #7d5fff 100%);
        color: var(--light);
        padding: 12px;
        border-radius: 8px;
        margin-top: 20px;
        font-weight: 500;
        transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(157, 125, 255, 0.3);
    }

    .view-btn:hover {
        background: linear-gradient(135deg, #8c6cff 0%, #6d4eff 100%);
        box-shadow: 0 6px 15px rgba(157, 125, 255, 0.4);
        transform: translateY(-2px);
    }

    /* Results Table */
    .results-table {
        background: var(--light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(157, 125, 255, 0.15);
        margin-bottom: 60px;
        overflow-x: auto;
        border: 1px solid rgba(157, 125, 255, 0.2);
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th,
    td {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    th {
        background: linear-gradient(135deg, var(--primary) 0%, #7d5fff 100%);
        color: var(--light);
        font-weight: 500;
    }

    tr:hover {
        background-color: rgba(157, 125, 255, 0.05);
    }

    .prize-amount {
        color: var(--success);
        font-weight: 600;
    }

    /* Features Section */
    .features {
        background: linear-gradient(135deg, var(--primary) 0%, #7d5fff 100%);
        color: var(--light);
        padding: 80px 0;
        margin: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><circle cx="50" cy="50" r="40" stroke="%23f5c542" stroke-width="2" fill="none" /></svg>');
        background-size: 200px;
        opacity: 0.3;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .feature-card {
        text-align: center;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        transition: transform 0.3s;
        border: 1px solid rgba(245, 197, 66, 0.2);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--secondary);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .feature-card h3 {
        margin-bottom: 15px;
        font-size: 1.4rem;
    }


 @media (max-width: 768px) {
 .hero{
     padding: 30px 0;
 }
 .search-box{
         border-radius: 10px;
 }
 .search-input{
     border: 2px solid black !important;
     border-radius: 10px !important;
 }
     
 }
 
 
 
 
 
 
 
.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);
        }

       /* =========lottet======css======= */

       :root {
    --primary: #1a237e;
    --primary-dark: #0d1536;
    --secondary: #c073ff;
    --accent: #00c853;
    --light: #f5f7ff;
    --dark: #212121;
    --gray: #757575;
    --card-bg: #ffffff;
    
    /* Updated gradient to match the colors */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}


        .page-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .page-title h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .page-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .page-title:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
        }

        .lotteries-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            padding: 0 50px;
        }

        .lottery-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .lottery-card:hover {
            transform: translateY(-10px);
        }

        .card-header {
            background: var(--gradient);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .card-body {
            padding: 25px;
        }

        .lottery-details {
            list-style: none;
            margin-bottom: 25px;
        }

        .lottery-details li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .lottery-details li:last-child {
            border-bottom: none;
        }

        .detail-label {
            color: var(--gray);
            font-weight: 500;
        }

        .detail-value {
            font-weight: 600;
            color: var(--primary);
        }

        .prize-highlight {
            background: #f5f7ff;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
        }

        .prize-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .card-footer {
            padding: 0 25px 25px;
            display: flex;
            justify-content: space-between;
        }

        .action-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            outline: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        @media (max-width: 768px) {
            .page-title h1 {
                font-size: 2.3rem;
            }
            
            .lotteries-container {
                grid-template-columns: 1fr;
                padding: 0 10px;
            }
            
            .card-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .action-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 2rem;
            }
            
            .filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                text-align: center;
            }
        }
        
        
        
        /* 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);
        }

        /* ==========about====css======= */

        
  
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 50px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .page-title h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .page-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .page-title:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .about-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
        }

        .about-content p {
            margin-bottom: 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid #e0e0e0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .stat-item {
            background: var(--gradient);
            color: white;
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .team-section {
            margin-top: 60px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .team-img {
            width: 100%;
            height: 250px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-img i {
            font-size: 5rem;
            color: var(--primary);
        }

        .team-info {
            padding: 25px;
        }

        .team-info h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .team-info p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        .contact-info {
            margin-top: 40px;
        }

        .contact-list {
            list-style: none;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .contact-list i {
            width: 30px;
            color: var(--primary);
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .page-title h1 {
                font-size: 2.3rem;
            }
            
            .about-section {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 2rem;
            }
            
            .about-section {
                padding: 20px;
            }
            
            .features-grid, .stats-container, .team-grid {
                grid-template-columns: 1fr;
            }
        }
