body {
    font-family: "Inter", serif;
    
   
}
.container {
    display: flex;
    height: 80vh;
    width: 100%;
    background: #f8fafc;
}

.slider-container {
    width: 70%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.slide.active .caption {
    transform: translateY(0);
    opacity: 1;
}

.caption h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.caption p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.dots {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.content {
    width: 30%;
    background: #004588;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #004588;
}

.content h1 {
    font-size: 1.9rem;
    line-height: 1.2;
    position: relative;
    font-weight: 800;
}

.content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    text-align: center;
}

.know-more {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    width: fit-content;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    margin: 1rem auto 0;
}

.know-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.caption {
    z-index: 2;
}

.content {
    text-align: center;
    align-items: center;
}

.content h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.content::before {
    opacity: 0.1;
}

.about-section
{
    background-image: url('../images/gallery/header_background.jpg');
}


/* Our Projects Css */
.mini
{
    font-size: 10px;
}
 /* Container Styles */
 .our_futsals {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Futsal Card Styles */
.futsal-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.2s;
    height: 500px;
}

.futsal-card:hover {
    transform: translateY(-5px);
}

/* Image Container Styles */
.futsal-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.futsal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}



/* Futsal Information Styles */
.futsal-info {
    padding: 20px;
    text-align: center;
}

.futsal-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.futsal-location,
.futsal-price,
.futsal-contact,
.futsal-time {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.futsal-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
    font-size: 15px;
}

.futsal-button:hover {
    background-color: #0056b3;
}

/* Slick Slider Custom Styles */
.slider {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.slick-prev,
.slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.slick-prev {
    left: -30px;
}

.slick-next {
    right: -30px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    color: #007BFF;
    opacity: 0.75;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #007BFF;
}

.slick-dots li.slick-active button:before {
    color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .our_futsals {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .our_futsals {
        padding: 0 20px;
    }
    
    .futsal-card {
        margin: 5px;
    }

    .slick-prev {
        left: -25px;
    }

    .slick-next {
        right: -25px;
    }
}
/* end of our project  css */

/* where we work css */
.wherewework {
    background-image:url('../images/gallery/header_background.jpg'); 
    padding: 50px 0;
}

/* End of where we work css */

/*  Our Partner and future goals Css Start  */
 /* Partners & Goals section styles - using 'pg' prefix */
 .pg-section {
    background-image:url('../images/gallery/header_background.jpg'); 
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.pg-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .pg-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Header styles */
.pg-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.pg-title {
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pg-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #f97316;
    border-radius: 2px;
}

/* Image styles */
.pg-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pg-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.pg-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

/* Content styles */
.pg-content {
   
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pg-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    
}

/* Target icon */
.pg-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
}

/* Call to action */
.pg-cta {
    display: inline-block;
    background-color: #1a365d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.pg-cta:hover {
    background-color: #2d4a7c;
}
/*  Our Partner and future goals Css End  */






/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .slider-container {
        width: 100%;
        height: 60vh;
        position: relative;
    }
    .slide {
        position: relative;
        width: 100%;
        height: 100%;
        display: none;
    }
    .slide.active {
        display: block;
        opacity: 1;
        transform: none;
    }
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .content {
        width: 100%;
        min-height: 40vh;
        height: auto;
        padding: 3rem 2rem;
    }
    .caption h2 {
        font-size: 1.5rem;
    }
    .content h1 {
        font-size: 2rem;
    }
    .caption {
        bottom: 0;
        z-index: 2;
    }
 }
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}