@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

/*font awesome icons*/
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

/* fixed header on scroll and set navbar links to sections */
html{
    scroll-behavior: smooth;

}

body{
    font-family: 'Raleway', sans-serif;
    margin: auto; 
}

*{
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

.home {
    min-height: 100vh;
    /* fallback */
}

@supports (height: 100dvh) {
    .home {
        min-height: 100dvh;
    }
}

.home {
    position: relative;
    overflow: hidden;
}

/* this is for antimated underline for the title*/
.contact-section1 {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-section1 h1 {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    color: #222;
}

/* Animated underline */
.contact-section1 h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    left: 20%;
    bottom: -10px;
    background: #f3971b;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

.contact-section1 h1:hover::after {
    transform: scaleX(1);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .contact-section1 h1 {
        font-size: 2rem;
    }
}



/*header */
.provision1-container1 {
    background-color: #f0f0f0;
    /* light gray or any distinct color */
    padding: 40px 20px;
    margin-top: 20px;
    /* optional: space below header */
    text-align: center;
}

.container {
    max-width: 1366px;
    margin: auto;
    padding-left: 0px;
}

.container1 {
    max-width: 1170px;
    margin: auto;
}

.card-container {
    max-width: 1170px;
    margin: auto;
    padding: 0px;
}

.container-form {
    max-width: 1170;
    margin: auto;
}


header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 10px 15px;
    padding-bottom: 0px;
    z-index: 100;
}


/* jquery style start*/
header.sticky {
    position: fixed;
    background: linear-gradient(to right, rgb(0, 128, 0), #064115);
    animation: header .5s ease;
    height: 85px;
}

@keyframes header {
    0% {
        transform: translateY(-100%);
        opacity: 0
    }

    100% {
        transform: translateY(0%)
    }
}

/* jquery style end*/

.home .back-video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}



header .img-logo img {
    width: auto;
    height: 72px;
    float: left;
    margin: 0px;
    padding-bottom: 5px;
    display: block;
}

header .logo {
    float: left;
    padding-left: 10px;
}

header .logo a {
    font-size: 16px;
    display: inline-block;
    padding: 5px 0px;
    color: rgb(238, 241, 247);
    font-weight: 600;
    letter-spacing: 2px;
}

header .logo a span {
    color: #f3971b;
}

header .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;

}


header .navbar ul li {
    display: inline;
    padding: 0 15px;
    margin: 0;
    /* Reduce space among menu */
}

header .navbar ul li a {
    display: inline-block;
    padding: 10px 0px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: whitesmoke;
    position: relative;

}

header .navbar ul li a::before {
    content: '';
    position: absolute;
    top: 100%;
    margin-top: -5px;
    height: 2px;
    left: 0px;
    background-color: #f3971b;
    width: 0;
    transition: width .5s ease;
}

header .navbar ul li a.active::before {
    width: 100%;
}


header .navbar ul li a:hover::before {
    width: 100%;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(100%);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}


/* Main Menu */
/*.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-around;
}*/

.menu li {
    position: relative;
    /* Crucial for submenu positioning */
}

.menu li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.menu li a:hover {
    background-color: none;
}


/* Submenu styling*/
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0f4603;
    min-width: 160px;
    z-index: 1000;
    font-size: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.dropdown .submenu li a {
    padding: 10px 14px;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    display: block;
    font-size: 11px;
}


.dropdown:hover .submenu {
    display: block;
}

/* Responsive: stack menus vertically on small screens */
@media (max-width: 768px) {
    .navbar {

        padding: 20px;
        /* 👈 Add left/right padding */

    }

    .menu {
        flex-direction: column;
        padding-left: 20px;
        /* Optional: some left padding */
        padding-right: 0;
        /* No double-padding on right */
        box-sizing: border-box;
    }

    .menu li {
        width: 100%;
        margin-bottom: 35px;
        /* Adds vertical spacing */
    }

    .submenu {
        position: static;
    }

    .dropdown:hover .submenu {
        display: block;
    }
}


/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*/

/* About section */


/*new about*/
.about-section {
    padding: 40px 20px;
    background-color: none;
    box-sizing: border-box;
    width: 100%;
}


.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    background-color: #a5b2c1;
}

.about-left,
.about-right {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 20px;
}

/* Left side */

.about-section .section-title {
    margin-bottom: 10px;
    /* Reduce the space below the title */
    font-size: 2rem;
    text-align: center;
}

.about-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}


.history-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.history-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Right side grid */


.info-grid {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-box {
    display: flex;
    gap: 15px;
    background: wheat;
    padding: 20px;
    /*border-left: 5px solid #0056b3;*/
    border-radius: 8px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box i {
    font-size: 1.8rem;
    color: #0056b3;
    margin-top: 5px;
}

.info-box h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #222;
}

.info-box p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive behavior */
@media (max-width: 768px) {

    .about-left,
    .about-right {
        flex: 1 1 100%;
        padding: 10px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* end of new about*/


/* WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW */
/*founder*/
/*founder*/




/* WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW */
 /*history background */
.home-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background: white;
}

.home-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.home-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.home-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.home-video {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.home-video video {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* Ensures responsive scaling */
    max-height: 280px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .home-section {
        flex-direction: column;
        padding: 40px 5%;
    }

    .home-text,
    .home-video {
        padding: 0;
    }

    .home-text {
        margin-bottom: 30px;
    }
}
/*from new FC land page */
* {
    padding: 0;
    margin: 0;
}

body {
    font-family: sans-serif;
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: url(bg.png);
    background-size: cover;
    position: relative;
    background-color: green;
}

.nav {
    width: 1100px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.nav .logo {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    columns: white;
    letter-spacing: 1.5px;
}

.nav .menu {
    width: 45%;
}

.nav .menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav .menu ul li {
    list-style: none;
}

.nav .menu ul li a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: black;
    text-decoration: none;
}

.nav .menu .active {
    color: red;
}

.banner-clip-path {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 25% 0, 50% 100%, 0 100%);
    background-image: url(lv-log.jpeg);
    background-color: #820505;
    background-size: cover;
    z-index: 2;
}

.club-logo {
    position: absolute;
    bottom: 65px;
    left: 20%;
    transform: translateX(-50%);
    width: 45%;
    height: auto;
    mix-blend-mode: multipl;

}

.gerrard {
    position: absolute;
    width: 600px;
    top: 55%;
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.gerrard img {
    width: 100%;
    transform: translateY(-25px);
        /* Move image upward */
}

.banner-txt {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 53%;
    text-transform: uppercase;
    font-size: 40px;
    color: rgb(75, 5, 5);
    transform: translateY(-50%);
}

.banner-txt button {
    width: 170px;
    height: 40px;
    background-color: red;
    color: #eee;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    border: none;
    font-family: sans-serif;
}

/* Banner text container */
.banner-txt {
    position: absolute;
    color: white;
    text-align: left;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    top: 45%;
}

/* Main Title with underline animation */
.main-title {
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
        /* space below the title */
        margin-top: 0;
        /* remove extra top margin */
        padding-top: 0;
        /* ensure it starts at the top */
}



.main-title:hover::after {
    width: 100%;
}

/* Highlight words with dots */
.highlight-words p {
    font-size: 1.2rem;
    margin: 5px 0;
    /* Reduced vertical gap */
    font-weight: 600;
    text-align: left;
    line-height: 0.8;
        /* Reduced line spacing */
        margin: 4px 0;
        /* Smaller vertical margin */
}

.dots {
    font-size: 2.2rem;
    color: #dd8d15;
    margin-left: 10px;
}

/* Slogan */
.slogan {
    font-size: 1.2rem;
    margin: 40px 0 20px;
    font-style: italic;
    color: #e0e0e0;
    margin-top: 90px;
}

/* Join Button */
.join-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    background-color: #f3971b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
    margin-top: 100px;
    /* Adjust this value to push it further down */
}


.join-button:hover {
    background-color: #d67f16;
}

/* Responsive */
/*@media screen and (max-width: 768px){*/
@media (min-width: 481px) and (max-width: 768px) {
    .gerrard img{
        max-width: 95%;
    }
}
/*@media screen and (max-width: 768px) {*/
@media (min-width: 481px) and (max-width: 768px) {
    
    .banner {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    
        .banner-clip-path,
        .gerrard,
        .banner-txt {
            flex: 1 1 100%;
            max-width: 100%;
            text-align: center;
        }
    
    .main-title {
        font-size: 2.2rem;
        margin-top: 0;
        padding-top: 0;
    }

    .highlight-words p {
        font-size: 1.2rem;
    }

    .dots {
        font-size: 1.6rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .join-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/*@media (max-width: 600px) {*/
@media (min-width: 481px) and (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;

    }

    .highlight-words p {
        font-size: 1rem;
    }

    .slogan {
        font-size: 0.95rem;
        position: relative;
        top: 10rem;
        /* Pushes only the slogan down */
        text-align: left;
    } }

/*for continusous undline*/
        .main-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            line-height: 1.2;
            margin-bottom: 2.8rem;
                /* Increased gap below the main title */
            
    
        }
    
        .main-title .underline-text {
            position: relative;
            display: inline-block;
        
        }
    
        .main-title .underline-text::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            height: 4px;
            background-color: #f3971b;
            width: 0%;
            animation: underlineLoop 2s infinite ease-in-out;
        }
    
        /* Continuous underline animation */
        @keyframes underlineLoop {
            0% {
                width: 0%;
            }
    
            50% {
                width: 100%;
            }
    
            100% {
                width: 0%;
            }
        }
    
        /* Responsive adjustments */
        /*@media (max-width: 600px) {*/
        @media (min-width: 481px) and (max-width: 768px) {
            .main-title {
                font-size: 2rem;
                text-align: left;
                margin-left: -3rem;
                margin-bottom:2.8rem;
                    /* Increased gap below the main title */
                

            }
            .underline-text {
            white-space: nowrap;
            /* ensures Shobuj Bangla doesn't wrap */ 
            display: inline-block;
            }
        }

        /* Hide it on screens smaller than 768px */
        .banner-txt .join-button {
            display: inline-block;
        }
    
        /*@media (max-width: 768px) {*/
    @media (min-width: 481px) and (max-width: 768px) {
            .banner-txt .join-button {
                display: none;
            }
        }
    @media (max-width: 480px) {
                .club-logo {
                width: 60%;
                }
            }
/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*/

/*champion section*/
.champion-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    margin-bottom: 3rem;
    overflow: hidden;
}

.champion-info {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #111827, #111827);
    color: rgb(4, 130, 33);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.champion-info img {
    width: 120px;
    margin-bottom: 1.5rem;
}

.champion-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-align: center;
    max-width: 600px;
}

.champion-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 400px;
}
.year-highlight {
    font-size: 2.2rem;
    margin-top: 1rem;
    font-weight: 600;
    color: #facc15;
    /* Yellow highlight */
}

.video-container {
    flex: 2;
    min-width: 300px;
    max-height: 100vh;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

@media (max-width: 768px) {
    .champion-section {
        flex-direction: column;
    }

    .video-container,
    .champion-info {
        height: 30vh;
    }
    .champion-info h2 {
            font-size: 2.1rem;
        }
    
    .champion-info p {
            font-size: 1.2rem;
        }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*/

/*carousel arrow section */


.carousel-section {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}
.carousel-section {
    margin-bottom: 4rem;
    /* adjust if needed */
}
.carousel-slide img {
    max-height: 90vw;
    /* prevents overly tall images */
}
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 31.3333%; /*make 31 instead of 33 for avoiding cutting off*/
    padding: 0 10px;
    box-sizing: border-box;

}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/*use a wrapper to make all images same size*/
.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* 👈 Keeps same width:height for all images */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 Ensures image fills the wrapper without stretching */
    object-position: top center;
        /* Adjust focus area */
    display: block;
}


.team-year {
        margin-top: 0.75rem;
        font-size: 1.1rem;
        color: #fbbf24;
        /* yellow tone */
}

/* Arrows */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots */
.carousel-dots {
    margin-top: 1rem;
}

.carousel-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #2563eb;
}

/* Responsive */
@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
        padding: 0;
        /* Remove padding to avoid overflow */
    }

    .carousel-track {
        gap: 0;
        /* No gap between slides */
    }

    .image-wrapper {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .image-wrapper img {
        object-fit: contain;
        /* Use 'contain' to ensure full image is visible */
    } }



/* WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWw*/


/*join us section with php code of this */
.contact-form {
    padding: 60px 20px;
    background-color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-content,
.member-benefits {
    flex: 1 1 45%;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.contact-content p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #006400;
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.form input[type="file"] {
    padding: 5px;
}

.form button {
    background-color: #006400;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.form button:hover {
    background-color: #004d00;
}

.member-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.9rem;
    color: #1f2937;
    /* Optional: dark gray for better readability */
    text-align: center;
}

/* Animated underline */
.member-benefits h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%) scaleX(0);
    width: 30%;
    height: 3px;
    background-color: #fbbf24;
    /* Warm yellow */
    transition: transform 0.4s ease;
    transform-origin: center;
}

.member-benefits h3:hover::after {
    transform: translateX(-50%) scaleX(1); }

.member-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    max-width: 600px;
}

.member-benefits li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    /* Increase vertical spacing between items */
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}



/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}

/* Responsive: slightly reduce font size and spacing on small screens */
@media (max-width: 600px) {
    .member-benefits h3 {
        font-size: 1.5rem;
    }

    .member-benefits li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    } }

/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*/


/* join us button for the land page */

.join-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #2a9d8f;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    
}

.join-button:hover {
    background-color: #21867a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-txt h1 {
        font-size: 24px;
        text-align: center;
        padding: 0 15px;
    }
    
    .join-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*/



/*our football team*/
.team-section {
    padding: 60px 20px;
    text-align: center;
    background-color: none;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.team-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));*/
    grid-template-columns: repeat(4, 1fr); /* 👈 4 per row */
    gap: 30px; /* 🔹 Controls gap between player cards or in 2rem*/
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
}
.founder-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    /* 👈 4 per row */
    gap: 40px;
    /* 🔹 Controls gap between player cards or in 2rem*/
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: none;
    box-shadow: 0 6px 12px rgba(2, 48, 16, 0.1);
    cursor: pointer;
}

.player-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    margin-bottom: 0;
        /* ensures image touches admin-info */
}

.player-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 49, 10, 0.75);
    color: white;
    padding: 20px 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
}
.admin-info {
    position: relative;
    bottom: 80px;
    left: 0;
    right: 0;
    background: rgba(2, 49, 10, 0.75);
    color: white;
    padding: 20px 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center; 
}

.admin-info h3 {
    font-size: 1.1rem;
    margin-bottom: none;
    /* 🔹 Controls gap between h3 and p */
}

.player-card:hover img {
    transform: scale(1.1);
}

.player-card:hover .player-info {
    transform: translateY(0);
}

.player-info h3 {
    margin: 0;
    font-size: 18px;
}

.player-info p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.4;
}

/*responsive mode*/
@media (max-width: 1024px) {
    .team-grid ,
    .founder-grid{
        grid-template-columns: repeat(3, 1fr);
        /* 3 per row */
    }
}

@media (max-width: 768px) {
    .team-grid ,
    .founder-grid{
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row */
    }
}

@media (max-width: 480px) {
    .team-grid ,
    .founder-grid{
        grid-template-columns: 1fr;
        /* 1 per row */
    }
}





/*new responseive*/

/* honours */
.honours-section {
    padding: 60px 20px;
    background-color: #f0f0f5;
    text-align: center;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
}
.honours-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}


.honours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.honour-card {
    background: rgba(22, 141, 6, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.honour-card:nth-child(2) {
    animation-delay: 0.2s;
}

.honour-card:nth-child(3) {
    animation-delay: 0.4s;
}

.honour-card:nth-child(4) {
    animation-delay: 0.6s;
}

.honour-card:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.honour-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

.icon {
    font-size: 40px;
    color: gold;
    margin-bottom: 10px;
}

.trophy-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.honour-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.trophy-count {
    font-size: 18px;
    font-weight: bold;
    color: #ffe600;
    margin-bottom: 5px;
}

.years {
    font-size: 14px;
    color: #ddd;
}


/* Responsive Design */
@media (max-width: 900px) {
    .honours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .honours-grid {
        grid-template-columns: 1fr;
    }

    .honours-section h2 {
        font-size: 1.8rem;
    }

    .honour-card {
        padding: 16px;
    } }












/* Section styling */
/* Base Styles */
.contact-section1 {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
}

/* Left Column: Boxes */
.contact-boxes {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.box {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    padding-left: 30px;
}

.icon {
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: #f3971b;
}

/* Right Column: Map */
.contact-map {
    flex: 2;
    min-width: 300px;
    min-height: 100%;
    height: 400px;
    /* default height */
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-boxes{
        gap: 5px;
    }
    .contact-map {
        height: 300px;
        /* Ensure it takes enough height in vertical layout */
        margin-top: 15px;
        
    }
}

/* Optional: Clear fix for any float issues */
.contact-section1::after {
    content: "";
    display: block;
    clear: both;
}



/*contact form section*/

.contact-form {
    float: left;
    width: 100%;
    padding: 60px 10px;
    background-color: white;
    padding-top: 60px;
    padding-bottom: 40px;
}
.contact-form .contact-content{
    margin: auto;
    max-width: 650px;
    padding-top: 0px;
}
.contact-form .contact-content p {
    margin: auto;
    padding: 35px 0px;
    color: #060621;
    font-size: 22px;
    font-weight: bold;
    padding-top: 0px;
    font-size: bold;
    text-align: center;
}
.contact-form .contact-content input,
.contact-form .contact-content textarea{
    height: 45px;
    border: none;
    border-left: 2px solid transparent;
    padding: 10px 15px;
    color: #130d34;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    width: 100%;
    background-color: #a3bc9d;
    transition: border .5s ease;
}

.contact-form .contact-content input:focus,
.contact-form .contact-content textarea:focus{
    border-color: rgb(210, 159, 37);;
}

.contact-form .contact-content textarea{
    height: 150px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 800px;
}

.contact-form .contact-content button{
    display: block;
    margin: auto;
}

/*file attachment class*/
input[type=file] {
    display: block;
    font-style: oblique;    
}
#file-text{
    font-size: 14px;
    color:#0e0a25;  
}
input[type="file"]::file-selector-button {
    margin-right: 15px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #061e4f;
    -webkit-text-fill-color: #130d34;
    -webkit-box-shadow: 0 0 0px 1000px #be8e1b inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Footer section */

footer {
    width: 100%;
    bottom: 0;
    float: left;
    background: linear-gradient(to right, rgb(0, 128, 0), #064115);
    color: #fff;
    padding: 40px 0 30px;
    border-top-left-radius: 125px; /*125px*/
    font-size: 13px;
    line-height: 20px;
    
}

.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    
}

.col{
    flex-basis: 25%;
    padding: 10px;
}

.logo {
    width: 90px;
    margin-bottom: 10px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.logo {
    width: 90px;
    margin-bottom: 10px;
}
.footer-container img.logo {
    width: 100%;
    /* Makes it expand to the container width */
    max-width: 220px;
    /* Adjust this as needed */
    height: auto;

    
    margin: 20px auto;
    padding: 10px 20px;
}


footer .logo-text a {
    font-size: 16px;
    display: inline-block;
    padding: 5px 0px;
    color: rgb(238, 241, 247);
    font-weight: 600;
    letter-spacing: 2px;
}

footer .logo-text a span {
    color: #f3971b;
}
.logo-text{
    float: right;
    padding: 20px;
    margin-left: -10px; 
}
.footer-container{
    display: flex;
}

.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 20.5px;
    
}
.col p{
    font-size: 14px;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px; 
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li{
    list-style: none;
    margin-left: 0;
    margin-bottom: 12px;
}


/* Hover effect */
.footer-links a:hover {
    color: #f39c12;
}
.social-icons i:hover {
    color: #f39c12;
    transform: scale(1.2);
    /* Slightly enlarge icons on hover */
}

.social-icons .fa{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
    padding-left: 0px;   
}
.privacy {
    color: #ca4515;
}
.privacy-content{
    padding-left: 70px;
    padding-right: 20px;
    padding-bottom: 30px;
}

.underline{
    width: 100%;
    height: 5px;
    background: #8f97aa;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #f3971b;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10x;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left:100%
    }
}
@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .col{
        flex-basis: 100%;
    }
    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%;
    }  
}

/* Footer section */


.trigger-main{
    position: absolute;
    top: 15px;
    right: 0px;
    display: none;
}

.trigger-main a{
    display: inline-block;
    position: relative;
    z-index: 210;
}

.trigger-main a span{
    display: block;
    height: 2px;
    width: 30px;
    background-color: #f3971b;
    margin-bottom: 8px;
    transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
}

.trigger-main a span:nth-child(1){
    transform-origin: left top;
}
.trigger-main a span:nth-child(2){
    transform-origin: left bottom;
}
.trigger-main a.active span:nth-child(1){
    -webkit-transform: rotate(45deg) translateY(-7px);
    transform: rotate(45deg) translateY(-7px);
}
.trigger-main a.active span:nth-child(2){
    -webkit-transform: rotate(45deg) translateY(7px);
    transform: rotate(-45deg) translateY(7px);
}

.trigger-main a+a {
    margin-left: 20px;
    /* Adjust as needed : adding gap between the a elements*/
}



.join1-btn {
    background-color: #238aa7;
    color: white;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 12px;
    /* Adjust to fit text */
    text-align: center;
    line-height: 1.1;
    padding: 5px;
    /* optional, for visual balance */
}

.join1-btn:hover {
    background-color: none;
}


/* This is a extra div created for background color similar to heading bar*/
.provision-container2 {
    padding: 30px 0px 0px 0px;
    margin: auto;
    padding-top: 20px;
    background: linear-gradient(to right, #064f31, #023304);
    height: 80px;
}
.provision-container1 h2.title::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    left: 50%;
    margin-left: -40px;
    top: 50px;
    background-color: #f3971b;
}


/*gallery test */
.gallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    padding: 5px;
    padding-top: 0px;
}

.gallery>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.gallery .tall {
    grid-row: span 2;
}


.gallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.gallery>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.gallery .wide {
    grid-column: span 2;
}
.gallery-text {
    padding: 30px 10px;
}
.gallery-text p{
    padding: 10px 0 0 0px;
    font-size: 16px;
    font-weight: 200px;
}
.gallery-text li{
    padding-left: 50px;
    margin: 5px;
    margin-left: 50px;
}
.gallery-text h4{
    padding-left: 50px;
    margin: 5px;
    margin-left: 50px;
    padding: 10px;
}

/*new contact */

/* Responsive part */

@media (max-width: 991px){
    .trigger-main{
        display: block;
    }

    header .container{
        position: relative;
    }
    .container{
        max-width: 750px;
    }

    .expertise .expertise-content .card .box h3{
        min-height: 50px;
    }

    header{
        position: fixed;
        background: linear-gradient(to right, #2d5811, #050218);
    }

    header .navbar{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: linear-gradient(to right, #2d5811, #050218);
        z-index: 200;
        padding-top: 80px;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        transition: transform .5s ease;
        -webkit-transition: -webkit-transform .5s ease;
    }

    header .navbar.open{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    header .navbar ul li{
        display: block;
    }
}

/*@media (max-width: 767px){*/
@media (min-width: 481px) and (max-width: 768px){

.home .home-text h3{
    font-size: 40px; 
}
.home .home-text h2{
    font-size: 25px;
}
.home .home-text h6 {
    font-size: 3.3vw;
}
@media (min-aspect-ratio: 16/9) {
    .back-video {
        width: 100%;
        height: auto;

    }
}

@media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100%;

    }
}

.home .home-text{
    left: 0;
    padding: 0px 15px;
}


.about .about-content .img{
    width: 100%;
}
.about .about-content .description{
    width: 100%;
}

.expertise .expertise-content .card{
    width: 33%;
}

.skills .skills-content .card{
    width: 100%;
}
}

@media(max-width: 500px){
    .expertise .expertise-content .card{
    width: 100%;
}

.expertise .expertise-content .card .box h3{
    min-height: auto;
}
.contact .contact-logo .box{
    width: 100%;
}

footer .footer-content .box{
    width: 100%;
}
footer {
    width: 100%;
}

}


