* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Play', sans-serif;

}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}



nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

.logo {
    width: 80px;
    height: auto;
    border-radius: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin-right: 30px;
    padding-top: 20px;

}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 22px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #d44368;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav .fa-solid {
    display: none;
}



/* ----------about---------- */

#about {
    padding: 80px 0;
    color: black;
    font-size: 18px;
    margin-top: 100px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 100%;
    border-radius: 100%;
    border: 5px solid #d44368;
    border-bottom: 0;

}

.about-col-2 {
    flex-basis: 60%;
}

.about-col-2 p {
    margin-top: 20px;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #d44368;
}

.faci h1 {
    color: #d44368;
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-top: 100px;
    padding-bottom: 80px;
}


/* ----events---- */

#portfolio {
    padding: 50px 0;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;

}

.work {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(155, 152, 152, 0.9);

}

.work img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    display: block;

    transition: transform 0.5s;
}

.layer {
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), darkcyan);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.layer h3 {
    font-weight: 500;
    margin-bottom: 20px;
}

.layer a {
    margin-top: 20px;
    color: darkcyan;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}

.work:hover img {
    transform: scale(1.1);
}

.work:hover .layer {
    height: 100%;
    color: whitesmoke;
}

.butn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #d44368;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    transition: background 0.5s;
}

.butn:hover {
    background: #d44368;
}

/* facilities */

.fac img {
    max-width: 100%;
    height: auto;
}

/* games */
/* .card img{
    max-width: 100%;
    height: 300px;
}

.sub-event{
    color: rgb(17, 193, 193);
    text-align: center;
    font-weight: 600;
    font-size: 60px;
    padding-top: 70px;
    padding-bottom: 50px;
} */


.container-fluid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

 .container-fluid .card {
    width: 30%;
    background-color: #fff;
    border-radius: 15px;
    border: 3px solid #d44368;
    border-top: none;
    border-bottom: none;
    margin-bottom: 80px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(3, 3, 3, 0.3);
    transition: transform 0.3s ease-in-out;
}

.container-fluid .card:hover {
    transform: scale(1.05);
}

.container-fluid .card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.container-fluid .card-content {
    padding: 20px;
}

.container-fluid .card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d44368;
    text-align: center;
}

.container-fluid .card p {
    font-size: 1rem;
    color: #242424;
}

.buton {
    display: block;
    margin-bottom: 50px;
    width: fit-content;
    border: 1px solid #d44368;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    transition: background 0.5s;
}

.buton:hover {
    background: #d44368;
}


/* testimonial */

.topic h1{
    text-align: center;
    font-weight: 600;
    color: #d44368;
    font-size: 55px;
    margin-top: 50px;
    margin-bottom: 70px;
}

.tests{
    font-family: 'Arial', sans-serif;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: whitesmoke;
}

.testimonial-slider {
    width: 500px;
    overflow: hidden;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #d44368;
    margin-bottom: 20px;
}

.testimonial p {
    margin-top: 15px;
    color: #242424;
}

.author {
    font-style: italic;
}


/* footer */
.foter {
    display: grid;
    justify-content: end;
    align-content: end;
    
    background: #333;

}

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #242424;
}

footer .container-fluid {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

footer .container-fluid .sec h2 {
    position: relative;
    color: #d44368;
    font-weight: 600;
    margin-bottom: 15px;
   
}

footer .container-fluid .sec p {
    color: whitesmoke;
}

footer .container-fluid .sci {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 50px);
}

footer .container-fluid .sci li {
    list-style: none;
}

footer .container-fluid .sci li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #d44368;
    display: grid;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100%;
}

footer .container-fluid .sci li a i {
    color: #fff;
    font-size: 20px;
}

footer .container-fluid .quicklinks {
    position: relative;
}

footer .container-fluid .quicklinks ul li {
    list-style: none;
}

footer .container-fluid .quicklinks ul li a {
    color: whitesmoke;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

footer .container-fluid .contact .info {
    position: relative;
}

footer .container-fluid .contact .info li {
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 16px;
}

footer .container-fluid .contact .info li span {
    color: #d44368;
    font-size: 20px;
}

footer .container-fluid .contact .info li a {
    color: whitesmoke;
    text-decoration: none;
}

.copyrightText {
    width: 100%;
    background: #242424;

    text-align: center;
    color: whitesmoke;
}

.copyrightText span a {
    color: #d44368;
    text-decoration: none;
}

@media (max-width: 991px) {
    footer {
        padding: 40px;
    }

    footer .container-fluid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .copyrightText {
        padding: 20px 40px 30px;
    }
}

@media (max-width:768px) {

    footer .container-fluid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }

    .copyrightText {
        padding: 10px;
    }

    #about {
        margin-top: -40px;
    }

    .sub-title {
        font-size: 38px;
        text-align: center;
    }

    .sub-event {

        text-align: center;
        font-size: 35px;
        margin-bottom: -50px;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
        margin-top: -40px;
    }

    .about-col-2 {
        font-size: 14px;
    }

    .work img {
        height: 400px;
    }

    nav .fa-solid {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: wheat;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fa-solid {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    #portfolio {
        margin-top: -50px;
    }

    .card img {
        width: auto;
        height: auto;
    }

    .faci h1 {
        font-size: 45px;
        margin-top: -10px;
    }
    .container-fluid .card{
        width: 100%;
    }
    .container-fluid{
        margin-top: -30px;
        margin-bottom: -50px;
    }
    .buton{
        margin-top: -20px;
    }



}


/*<footer end>  */