* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--body-bg-color) !important;
    font-family: var(--font-family) !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 22px;
    color: var(--text-black);
    margin-bottom: 0 !important;
}

p {
    font-size: 16px;
    color: var(--text-custom-color) !important;
}

ul {
    padding: 0 !important;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

header {
    width: 100%;
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header_flex {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: -10px !important;
}

.nav-links li a {
    font-size: 18px;
    color: var(--text-black);
    font-weight: 600;
}

.nav-links li a:hover {
    color: var(--text-color);
}

.navLink.NavActive,
.dropdownToggle.NavActive {
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

/* Optional for dropdown appearance consistency */
.dropdown-menu .dropdown-item.NavActive {
    background-color: var(--border-color);
    color: #fff;
}

.dropdown button {
    border: none !important;
    background: transparent !important;
    font-size: 18px;
    color: var(--text-black);
    font-weight: 600;
}

.dropdown-menu a {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.dropdown-menu a:active {
    background: transparent !important;
    color: var(--text-color) !important;

}

/* hero section styling start */
.hero_section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.hero_bg_img {
    width: 100%;
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero_bg_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero_bg_img h2,
.hero_bg_img .hero_content {
    position: relative;
    z-index: 1;
}



.hero_bg_img h2 {
    position: relative;
    z-index: 2;
    font-size: 50px;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 20px !important;
}

.hero_bg_img p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white) !important;
}

.hero_content .buttons {
    margin-top: 30px;
}

.hero_content .hero_button {
    padding: 10px 40px;
    margin: 0 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    background: #ff5a5a;
    color: #fff;
    font-size: 18px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.hero_content .hero_button:hover {
    border: 2px solid #ff5a5a;
    background: transparent;
    color: #ff5a5a;
}

/* .hero_content .hero_button:last-child {
    background: rgba(255, 255, 255, 0.9);
    color: #111;
} */

.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.owl-theme .owl-nav {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
}

.owl-theme .owl-nav button {
    background: #fff !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    transition: 0.3s;
}

.owl-theme .owl-nav button:hover {
    background: #ff5a5a !important;
    color: #fff !important;
}



/* contact section styling start */
.same_banner {
    width: 100%;
    padding: 60px 0;
    background: var(--bg-color);
}

.same_banner .contact_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.same_banner .contact_content h2 {
    font-size: 35px;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 20px !important;
}

.same_banner .contact_content p {
    color: var(--text-white) !important;
    font-size: 18px;
    font-weight: 500;
}

.contact_section {
    width: 100%;
    background: var(--bg-white);
    color: var(--text-color);
    padding: 80px 0;
}

.contact_flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact_left {
    flex: 1 1 45%;
    text-align: center;
}

.contact_left img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact_info {
    display: flex;
    gap: 20px;
}

.contact_box {
    width: 100%;
    height: 200px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.contact_box:hover{
    transform: translateY(-8px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contact_info h2,
.contact_info h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact_info p {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 500
}

.contact_box a {
    color: var(--text-color);
    font-weight: 600;
}

/* 
.contact_right {
    flex: 1 1 45%;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact_right h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px !important;

}

.contact_right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact_right input::placeholder,
.contact_right textarea::placeholder {
    color: var(--text-color);
}

.contact_right input,
.contact_right textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    background: rgb(240, 240, 240);
}

.contact_right button {
    background: var(--bg-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact_right button:hover {
    background: var(--bg-color);
} */


.map_section {
    width: 100%;
}

.map_section .map {
    width: 100%;
    height: 400px;
}
.map_section .map iframe{
    width: 100%;
    height: 100%;
}



/* footer section styling start */
.footer_section {
    background: var(--footer-bg-color);
    color: #fff;
    padding: 50px 20px 20px;
    text-align: center;
    position: relative;
}

.footer_flex_area {
    display: flex;
    gap: 50px;

}

.footer_left p {
    color: var(--text-white) !important;
    text-align: left;
}

.footer_link_flex {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.footer_link_flex h5 {
    color: var(--text-white);
    font-size: 22px;
    font-weight: 600;
}

.footer_link_flex .quick_links {
    text-align: left;
}

.footer_link_flex .quick_links p,
.footer_link_flex .quick_links a {
    color: var(--text-white) !important;
}

.footer_link_flex .quick_links ul li {
    margin-bottom: 4px;
}

.footer_link_flex .quick_links ul li a {
    color: var(--text-white) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer_link_flex .quick_links ul li a:hover {
    color: var(--text-red-color) !important;
    margin-left: 5px;
}

.Newsletter_flex {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgb(244, 243, 243);
}

.Newsletter_flex h5,
.Newsletter_flex p {
    color: var(--text-white) !important;
    text-align: left;
}

.footer_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.footer_gallery .footer_gallery_img {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
}

.footer_gallery .footer_gallery_img .gallery_img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.footer_gallery .footer_gallery_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 2;
}

.footer_gallery .footer_gallery_img:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.footer_gallery .footer_gallery_img:hover .gallery_img {
    transform: scale(1.08);
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer_flex {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
}

.footer_logo img {
    width: 100%;
    height: 100%;
}

.footer_logo h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Footer Menu */
.footer_menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer_menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    font-weight: 500;
}

.footer_menu li a:hover {
    color: #e63946;
}

.footer_social {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.footer_social .social_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.footer_social .social_icon a {
    color: var(--text-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer_social a:hover {
    color: #e63946;
    transform: scale(1.2);
}

/* Bottom Text */
.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.footer_bottom p {
    margin: 0;
    font-size: 16px;
    color: var(--text-white) !important;
}

.footer_bottom a {
    color: var(--text-white);
    transition: all 0.4s ease;
}

.footer_bottom a:hover {
    text-decoration: underline !important;
    color: var(--text-white);

}

/* about section styling start */
.about-section {
    background-color: #fff;
}

.About_flex {
    display: flex;
    gap: 40px;

}

.about-section h2 {
    color: #0d1b2a;
    font-size: 2rem;
    line-height: 1.3;
}

.about-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.about_img {
    width: 450px;
    height: 330px;
    overflow: hidden;
    border-radius: 10px;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.about_img img:hover {
    transform: scale(1.03);
}

.right_content h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-red-color);
}

.right_content .heading {
    font-size: 45px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 50px;
}

.right_content .about_btn {
    background: var(--bg-red-color);
    color: var(--text-white);
    padding: 8px 40px;
    margin-top: 20px !important;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.right_content .about_btn:hover {
    background: transparent;
    border: 2px solid var(--bg-red-color);
    color: var(--text-red-color);
}

.right_content .year_box {
    width: 50%;
    height: 100px;
    padding: 0 30px;
    border: 1px solid rgb(235, 232, 232);
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.right_content .year_box h3 {
    width: 170px;
    font-size: 60px;
    font-weight: 700;
    color: var(--text-color);
}

.right_content .year_box p {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 0 !important;
    color: var(--text-red-color) !important;
}

.about-section .btn {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-section .fw-bold {
    color: #002b5b;
}

/* skills section styling start */
.back_img {
    width: 100%;
    height: 500px;
    background-image: url("../images/skills_img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
}

.back_img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 1;
}

.back_img .skills_content {
    position: relative;
    width: 60%;
    z-index: 2;
}

.back_img .skills_content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px !important;
    color: var(--text-white);
}

.back_img .skills_content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px !important;
    color: var(--text-white) !important;
}

.back_img .skills_content .join_btn {
    border: none;
    background: var(--bg-red-color);
    color: var(--text-white);
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    margin-top: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.back_img .skills_content .join_btn:hover {
    background: transparent;
    border: 2px solid var(--bg-red-color);
    color: var(--text-red-color);
}


/* upcoming match section styling start */
.upcoming_section {
    width: 100%;
    padding: 40px 0;
    background: rgb(238, 237, 237);
}

.upcoming_text {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-red-color);
    position: relative;
    margin-bottom: 20px;
}

.upcoming_text::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 2.5px;
    border-radius: 10px;
    background: var(--bg-red-color);
    left: 0;
    bottom: 0;
}

.upcoming_flex {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.upcoming_left_section .upcoming_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-white);
    padding: 21px 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.upcoming_left_section .upcoming_box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--bg-color);
    transition: all 0.4s ease;
    z-index: 0;
}

.upcoming_left_section .upcoming_box:hover::after {
    width: 100%;
}

.upcoming_left_section .upcoming_box .upcoming_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    position: relative;
    transition: opacity 0.3s ease;
}

.upcoming_left_section .upcoming_box:hover .upcoming_content {
    opacity: 0;
}

.upcoming_left_section .upcoming_box .upcoming_hover_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-weight: 500;
    text-align: center;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.upcoming_left_section .upcoming_box:hover .upcoming_hover_text {
    opacity: 1;
}


.upcoming_left_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upcoming_left_section .upcoming_box h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
}

.upcoming_left_section .upcoming_box img {
    width: 80px;
    height: 100%;
}

.upcoming_left_section .upcoming_box .upcoming_circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    color: var(--text-white);
}

.upcoming_right_section {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.upcoming_right_section .upcoming_img_wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.upcoming_right_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.upcoming_right_section .upcoming_img_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1;
}

.upcoming_right_section:hover .upcoming_img_wrap::after {
    background: rgba(0, 0, 0, 0.3);
}

.upcoming_right_section:hover img {
    transform: scale(1.05);
}


/* infinite carousel section styling start */
.infinite_carousel {
    width: 100%;
    padding-top: 40px;
}

.carousel_main_img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.carousel_main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel_main_img:hover img {
    transform: scale(1.05);
}

.carousel_main_img .carousel_text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-color);
    padding: 10px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel_main_img:hover .carousel_text {
    height: 100%;
    background: rgba(0, 43, 91, 0.8);
}

.carousel_main_img .carousel_text h2 {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-white);
    text-align: center;
    margin: 0;
}



.testimonial_section {
    background: #f8f9fa;
    text-align: center;
}

.testimonial_section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
}

.testimonial_item {
    width: 60%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.testimonial_item p {
    font-size: 16px;
    color: var(--text-custom-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testi_flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testi_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testi_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testi_content {
    text-align: left;
}

.testi_content p {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-bottom: 0 !important;
}

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

.team-section {
    padding: 40px 0px;
    background: #f7f9fc;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-custom-color);
    text-align: center;
    margin-bottom: 50px;
}

.team-row {
    display: flex;
    /* align-items: center; */
    gap: 40px;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 20px;
    transition: all 0.3s ease;
}

.team-row.reverse {
    flex-direction: row-reverse;
}

.team-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.team-left {
    width: 340px;
    height: 350px;
}
.team-left img{
    width: 100%;
    height: 100%;
}

.team-left img {
    width: 350px;
    height: 350px;
    border-radius: 12px;
    object-fit: fill;
}

.team-right {
    flex: 1;
}

.team-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--text-custom-color);
}

.team-role {
    font-size: 15px;
    color: #e63946;
    margin-bottom: 0px !important;
    letter-spacing: 1px;
}

.team-right strong {
    color: var(--text-custom-color);
    display: block;
    margin-bottom: 0px !important;
}

.team-right p {
     color: var(--text-custom-color) !important;
    text-align: justify;
    /* line-height: 1.7; */
    font-size: 15px;
    /* margin-bottom: 10px; */
}

.ballhockey-gallery {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.gallery-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    border-radius: 12px;
}

/* Overlay effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.overlay i {
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
    height: 100%;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* Popup Modal */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.popup-img {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.arrow:hover {
    color: #ffcc00;
}

.arrow.left {
    left: 80px;
}

.arrow.right {
    right: 80px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === Section Styling === */
.video-section {
    padding: 40px 0px;
    text-align: center;
}

.video-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.video-thumb {
    position: relative;
    width: 380px;
    height: 215px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.video-thumb:hover {
    transform: scale(1.03);
    box-shadow: none;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: url('../images/youtube.svg') center/contain no-repeat;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: 0.3s ease;
}

.video-thumb:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* === Popup Styling === */
.video_popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video_popup iframe {
    width: 80%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

.video_close {
    position: absolute;
    top: 40px;
    right: 60px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    font-weight: bold;
}


@media (max-width: 768px) {
    .bars_icon {
        display: block !important;
    }

    .nav-links {
        display: none;
    }

    .team-row {
        flex-direction: column;
        text-align: center;
    }

    .team-left img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .team-right {
        padding-top: 15px;
    }

    .video-thumb {
        width: 100%;
        height: 200px;
    }

    .video_popup iframe {
        width: 95%;
        height: 250px;
    }

    .footer_top {
        flex-direction: column;
        text-align: center;
    }

    .footer_menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero_bg_img h2 {
        font-size: 24px;
    }

    .hero_bg_img p {
        font-size: 13px;
    }

    .hero_section {
        width: 100%;
        height: 400px;
    }

    .About_flex {
        flex-direction: column;
        gap: 20px;
    }

    .right_content .heading {
        font-size: 25px;
        line-height: 30px;
    }

    .back_img .skills_content {
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .back_img .skills_content h2 {
        font-size: 22px;
    }

    .back_img .skills_content p {
        font-size: 15px;
    }

    .back_img {
        width: 100%;
        height: 422px;
    }

    .footer_flex_area {
        flex-direction: column;
        gap: 50px;
    }

    .footer_link_flex {
        flex-wrap: wrap;
    }

    .footer_section {
        padding: 20px 0px;
    }

    .same_banner .contact_content h2 {
        font-size: 22px;
    }

    .same_banner .contact_content p {
        color: var(--text-white) !important;
        font-size: 14px;
        font-weight: 500;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .ballhockey-gallery {
        padding: 20px 0px;
    }

    .gallery-title {
        font-size: 24px;
    }

    .team-row.reverse {
        flex-direction: column;
    }

    .contact_info {
        flex-direction: column;
        gap: 20px;
    }

    .contact_info h2,
    .contact_info h3 {
        font-size: 24px;
    }

    .about_img {
        width: 100%;
        height: 250px;
        overflow: hidden;
        border-radius: 10px;
    }

    .footer_logo img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #fff;
    }

    .hero_content .hero_button {
        padding: 6px 20px;
        font-size: 16px;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .video-section h2 {
        font-size: 22px;
    }

    .footer_gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
}



.bars_icon {
    display: none;
    padding: 0 4px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    background: transparent;
    font-size: 24px;
    color: var(--text-color);
}

.offcanvas-header {
    border-bottom: 1px solid lightgray;
}

.offcanvas-body .nav-links {
    display: block !important;
}

.offcanvas-body .nav-links li {
    margin-bottom: 10px;
}

.offcanvas-body .nav-links .dropdown {
    margin-bottom: 10px;
}

.offcanvas-body .nav-links li a {
    color: var(--text-color) !important;
}

.offcanvas-body .footer_social .social_icon {
    background: var(--bg-color);
    color: var(--text-white);
    transition: all 0.4s ease;
}

.footer_left_logo {
    width: 320px;
}