:root {
    --primary: #FF3607;
    --primary-dark: #f43003;
    --secondary: #111111;
    --dark: #222222;
    --text: #666666;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Base Styles */
* {
    box-sizing: border-box;
}

* a {
    text-decoration: none;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    padding-top: 80px;
    /* For fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary);
}

/* Utility Classes */
.section {
    padding: 50px 0;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 94, 20, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 94, 20, 0.3);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-gradient {
    background: var(--gradient) !important;
}

.text-gradient {
    background: var(--gradient);
    background-clip: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
/* .navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
} */

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: var(--white) !important;
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--white) !important;
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-toggler {
    color: var(--secondary) !important;
}

.navbar-brand img {
    height: 40px;
    outline: none;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 800;
    padding: 8px 15px !important;
    margin: 0 5px;
    text-transform: uppercase;
    position: relative;
    color: black;
    transition: all 0.3s ease;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 100%;
    color: #000;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    color: black !important;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.15);
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.navbar .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--gradient) !important;
    color: white;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0.1rem;
    display: none;
}

/* Desktop Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar .nav-item:hover>.dropdown-menu,
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile Dropdown */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
    }

    .dropdown-submenu .dropdown-menu {
        left: 15px;
        margin-left: 15px;

    }

    .nav-link {
        color: var(--secondary) !important;
        padding: 10px 0 !important;
        margin: 0;
    }

    .nav-link:before {
        display: none;
    }

    .btn-primary.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 15px;
        display: block !important;
    }
}

/* Dropdown chevron rotation */
.fa-chevron-down {
    transition: transform 0.3s ease;
    margin-left: 5px;
    font-size: 0.8em;
}

/* Submenu styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    display: none;
}

/* Show submenu when parent is active */
.dropdown-submenu.show>.dropdown-menu,
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .dropdown-submenu>.dropdown-menu {
        position: static;
        margin-left: 15px;
        margin-top: 0;
        border-left: 2px solid rgba(0, 0, 0, 0.1);
        overflow-y: scroll !important;
    }

    .dropdown-menu {
        margin-top: 0 !important;
    }
}

/* Desktop specific styles */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
    }
}



/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: var(--light);
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    color: var(--secondary);
    /* padding: 100px 0; */
    margin-top: -80px;
}

.hero-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-combo {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
}

.hero-image-combo img {
    position: absolute;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


.video-background-container {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.video-background-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-content {
    z-index: 10;
    width: 90%;
    max-width: 1200px;
}

.video-content h1,
.logo {
    font-size: 72px;
    background: -webkit-linear-gradient(#222222, #f72222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-content a {
    border-radius: 10px;
    background-image: radial-gradient(circle farthest-corner at 50.3% 55.8%, var(--primary) 0.8%, rgba(93, 17, 17, 1) 100.2%);
    color: #ddd;
}

.video-content a:hover {
    width: 150px;
    height: 50px;
}


@media (max-width: 768px) {
    .video-content h1 {
        font-size: 2.5rem;
    }

    .video-content p {
        font-size: 1rem;
    }
}




/* Slider Section */
.slider-section {
    padding: 80px 0;
    position: relative;
}

.slider-section .carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.slider-content {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.slider-image {
    flex: 1;
}

.slider-image img {
    width: 600px;
    height: 400px;
    margin: 0 20px 0 20px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-text {
    flex: 1;
    padding: 40px;
}

.slider-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.slider-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text);
}

.slider-text a {
    border-radius: 10px;
}

.carousel-inner {
    padding: 0px 40px 0px 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(252, 146, 146, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}


/* About Section */
.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(54, 41, 41, 0.3) 0px 19px 38px, rgba(241, 141, 141, 0.22) 0px 15px 12px;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.experience-badge h3 {
    font-size: 50px;
    margin-bottom: 0;
    color: var(--white);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 24px;
}




/* About Owner Section */
.owner-img {
    text-align: center;
    padding: 20px;
}

.owner-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 5px solid goldenrod;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owner-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.owner-bio p {
    margin-bottom: 15px;
}

.owner-achievements {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.owner-achievements li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.owner-achievements i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.owner-social .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Filter Buttons (Shared between Classes and Gallery) */
.filter-btn,
.gallery-filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    margin: 5px;
}

.filter-btn:after,
.gallery-filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover,
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    color: var(--primary);
}

.filter-btn.active:after,
.filter-btn:hover:after,
.gallery-filter-btn.active:after,
.gallery-filter-btn:hover:after {
    width: 100%;
}

/* Classes Section */
.classes-filter,
.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.class-card,
.trainer-card,
.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.class-card:hover,
.trainer-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.class-img,
.trainer-img {
    position: relative;
    overflow: hidden;
}

.class-img img,
.trainer-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.class-card:hover .class-img img,
.trainer-card:hover .trainer-img img {
    transform: scale(1.1);
}

.class-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.class-content,
.trainer-content {
    padding: 25px;
}

.class-content h3,
.trainer-content h3 {
    margin-bottom: 10px;
}

.class-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.class-meta span {
    display: flex;
    align-items: center;
}

.class-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.class-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Updated Counter Section Styles */
.counter-section {
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.counter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(" {{ asset('webiste/images/images/pattern.png') }}") repeat;
    opacity: 0.1;
    z-index: 0;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.counter-item:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.counter-item:hover .counter-icon {
    background: var(--white);
    transform: rotateY(180deg) scale(1.1);
    color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.counter-item h3 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.counter-item h3:after {
    content: '+';
    position: absolute;
    right: -20px;
    top: 10px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.counter-item p {
    font-size: 20px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animation for counters */
@keyframes counterPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.counter-item h3.animated {
    animation: counterPulse 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .counter-section {
        padding: 80px 0;
    }

    .counter-item {
        padding: 30px 15px;
    }

    .counter-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .counter-item h3 {
        font-size: 50px;
    }

    .counter-item p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .counter-section {
        padding: 60px 0;
    }

    .counter-item {
        padding: 25px 15px;
    }

    .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .counter-item h3 {
        font-size: 40px;
    }

    .counter-item p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .counter-section {
        padding: 50px 0;
    }

    .counter-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .counter-item h3 {
        font-size: 36px;
    }

    .counter-item h3:after {
        right: -15px;
        top: 5px;
        font-size: 20px;
    }

    .counter-item p {
        font-size: 14px;
    }
}

/* Trainers Section */
.trainer-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(248, 64, 3, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-social {
    bottom: 0;
}

.trainer-social a {
    color: var(--white);
    margin: 0 10px;
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trainer-social a:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.trainer-content p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}


.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    border-radius: 4px;
}

.gallery-filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    color: var(--primary);
}

.gallery-filter-btn.active:after,
.gallery-filter-btn:hover:after {
    width: 100%;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 15px;
}


.gallery-item {
    position: relative;
    border-radius: 8px;
    height: 300px;
    width: 100%;
    border: 3px solid var(--primary);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery{
    max-height: 950px;
    overflow-y: auto;
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: rgb(247, 204, 189) rgba(255, 255, 255, 0.1);
}

.gallery-img,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-video {
    background-color: #000;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-img,
.gallery-item:hover .gallery-video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    width: 100%;
}

h3.gallery-title {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: white !important;
}

.gallery-category {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.gallery-zoom,
.gallery-play {
    font-size: 20px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-zoom:hover,
.gallery-play:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }

    .gallery-filter-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-title {
        font-size: 14px;
    }

    .gallery-category {
        font-size: 12px;
    }

    .gallery-zoom,
    .gallery-play {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }


    .gallery-filter {
        justify-content: space-around;
    }

    .gallery-filter-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}



/* Add to styles.css */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 5px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--light);
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: var(--gradient);
    color: var(--white);
}

.pagination-btn.active {
    background: var(--gradient);
    color: var(--white);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: auto;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 50px;
    position: relative;
}

.lightbox-img,
.lightbox-video {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    display: none;
}

.lightbox-img.active,
.lightbox-video.active {
    display: block;
}

.lightbox-caption {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(54, 54, 54, 0.7); */
    color: white;
    padding: 20px;
    text-align: center;
}

.lightbox-title {
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
}

.lightbox-category {
    color: var(--primary);
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 100px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav-btn {
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav-btn:hover {
    background: var(--primary);
}

/* @media (max-width: 767px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .lightbox-content {
        height: 60vh;
        padding: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
} */

@media (max-width: 767px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .lightbox-content {
        height: 60vh;
        padding: 20px;
    }

    .lightbox-close {
        top: 100px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}


/* Pricing Section */
.pricing-card.popular {
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.pricing-card.popular:before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    padding: 30px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pricing-header .price {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-header .price span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 10px;
    color: var(--primary);
}


/* News and Events Section */
.news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.news-section .section-title {
    margin-bottom: 40px;
}

.news-section .section-title h2 {
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.news-section .section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
}

.news-section .section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text);
}

/* Add this to your styles.css file */
.news {
    height: 550px;
    overflow-y: auto;
    scrollbar-width: thin;
    /* For Firefox */

    scrollbar-color: rgb(247, 204, 189) rgba(255, 255, 255, 0.1);

    /* scrollbar-color: linear-gradient(to top, #a8edea 0%, #fed6e3 100%); */
}



/* For WebKit browsers (Chrome, Safari) */
.news::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.news::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.news::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
    background-image: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
}

.news::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

/* Custom scrollbar without arrows */
.news::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.news::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.news::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.news::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.news {
    scroll-behavior: smooth;

}

/* News Cards */
.news-card {
    /* background: var(--white); */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: rgb(239, 104, 67) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: #f1f1f1; */
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 250px;
    max-height: 350px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    /* background-color: #f1f1f1; Fallback background for transparent images */
}

.news-card:hover .news-img img {
    transform: scale(1.02);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.news-content {
    padding: 10px;
    /* flex: 0 0 auto; */
}

.news-content h3 {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.4;
    color: var(--secondary);
}

/* Events List */

.events {
    height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    /* For Firefox */

    scrollbar-color: rgb(247, 204, 189) rgba(255, 255, 255, 0.1);
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    padding: 20px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: flex-start;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-dark);
}

.event-date {
    display: flex;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    text-align: center;
    background: rgba(255, 54, 7, 0.1);
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
}

.event-day {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
    width: 100%;
}

.event-month {
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    display: block;
    width: 100%;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--secondary);
}

.event-details p {
    margin-bottom: 5px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.event-location {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 14px;
    margin-top: 10px;
    justify-content: space-between;
}

.event-location i {
    margin-right: 5px;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* Section Headings */
.news-section h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.news-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .news-section {
        padding: 70px 0;
    }

    .news-img {
        min-height: 220px;
        max-height: 300px;
    }

    .event-day {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .news-section {
        padding: 60px 0;
    }

    .news-img {
        min-height: 200px;
        max-height: 280px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .event-item {
        flex-direction: column;
    }

    .event-date {
        margin-right: 0;
        margin-bottom: 15px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 10px 15px;
    }

    .event-day {
        font-size: 28px;
        margin-right: 15px;
        width: auto;
    }

    .event-month {
        width: auto;
        font-size: 13px;
    }

    .event-details h4 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 50px 0;
    }

    .news-section .section-title h2 {
        font-size: 32px;
    }

    .news-img {
        min-height: 180px;
        max-height: 250px;
    }

    .news-content {
        padding: 15px;
    }

    .news-content h3 {
        font-size: 17px;
    }

    .news-meta {
        gap: 10px;
    }

    .event-item {
        padding: 15px;
    }

    .event-details h4 {
        font-size: 16px;
    }

    .event-details p {
        font-size: 13px;
    }

    .event-location {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--primary);
        font-size: 13px; 
        margin-top: 10px;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .news-section {
        padding: 40px 0;
    }

    .news-section .section-title h2 {
        font-size: 28px;
    }

    .news-section .section-title p {
        font-size: 16px;
    }

    .news-img {
        min-height: 160px;
        max-height: 220px;
    }

    .news-content h3 {
        font-size: 16px;
    }

    .news-meta {
        font-size: 13px;
    }

    .event-day {
        font-size: 24px;
    }

    .event-month {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .news-img {
        min-height: 140px;
        max-height: 200px;
    }

    .news-date {
        top: 10px;
        left: 10px;
        font-size: 12px;
        padding: 3px 10px;
    }

    .news-content {
        padding: 12px;
    }

    .news-content h3 {
        font-size: 15px;
    }

    .news-content p {
        font-size: 14px;
    }

    .event-item {
        padding: 12px;
    }

    .event-date {
        padding: 8px 12px;
    }

    .event-day {
        font-size: 22px;
    }
}



/* Updated Contact Section Styles */
.contact-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

.contact-section .section-title h2 {
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.contact-section .section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
}

.contact-info,
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary);
}

.contact-info h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-dark);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 54, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--gradient);
    color: white;
    transform: rotate(15deg);
}

.contact-item h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.contact-item p,
.contact-item address {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}

.contact-item a {
    color: var(--text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 54, 7, 0.2);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary);
}

.contact-form h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

.contact-form .form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 54, 7, 0.25);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .contact-item {
        padding: 15px 10px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.footer:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255, 54, 7, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.footer-col {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-align: center;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.footer-col:hover h3:after {
    width: 80px;
}

.footer-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-links a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-contact {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-contact li {
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: dodgerblue;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .footer-col {
        text-align: left;
    }

    .footer-col h3 {
        text-align: left;
    }

    .footer-col h3:after {
        left: 0;
        transform: none;
    }

    .footer-col:hover h3:after {
        left: 0;
        transform: none;
    }

    .footer-col p {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        padding: 0;
        border-radius: 0;
        background: transparent !important;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-contact li {
        padding-left: 30px;
    }

    .footer-contact i {
        position: absolute;
        left: 0;
        top: 5px;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }

    .footer-contact li {
        font-size: 14px;
    }

    .footer-links {
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: auto;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close-btn {
    position: absolute;
    top: 100px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close-btn:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav-btn {
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav-btn:hover {
    background: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 60px;
    }

    .hero-image-combo {
        height: 450px;
    }

    .hero-image-combo .kick-img {
        max-width: 350px;
    }

    .hero-image-combo .red-img {
        max-width: 400px;
    }

    .pricing-card.popular:before {
        right: -30px;
        padding: 5px 30px;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .experience-badge {
        padding: 20px;
        right: -20px;
        bottom: -20px;
    }

    .experience-badge h3 {
        font-size: 40px;
    }

    .hero-image-combo {
        height: 650px;
        margin-top: 50px;
    }

    .hero-image-combo .kick-img {
        max-width: 400px;
        margin-left: 100px;
    }

    .hero-image-combo .red-img {
        max-width: 700px;
        top: 30px;
    }

    .trainer-img img {
        height: 250px;
    }

    .section {
        padding: 80px 0;
    }

    .slider-content {
        flex-direction: column;
        min-height: auto;
    }

    .slider-image {
        margin-bottom: 30px;
    }

    .slider-text {
        padding: 20px;
        text-align: center;
    }

    .slider-text h3 {
        font-size: 30px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .owner-img {
        margin-bottom: 40px;
    }

    .owner-img img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-btns .btn {
        margin: 5px 0;
        display: block;
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-img {
        margin-bottom: 50px;
    }

    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
        display: inline-block;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:before {
        right: -25px;
        top: 15px;
        padding: 5px 25px;
        font-size: 12px;
    }

    .hero-image-combo {
        height: 600px;
        margin-top: 30px;
    }

    .hero-image-combo .kick-img {
        max-width: 250px;
        top: 80px;
    }

    .hero-image-combo .red-img {
        max-width: 600px;
        top: 20px;
    }

    .trainer-img img {
        height: 220px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-col {
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-img {
        height: 100%;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .filter-btn,
    .gallery-filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .pricing-card.popular:before {
        right: -20px;
        top: 10px;
        padding: 5px 20px;
        font-size: 10px;
    }

    .hero-image-combo {
        height: 400px;
    }

    .hero-image-combo .kick-img {
        max-width: 250px;
        margin-left: 50px;
    }

    .hero-image-combo .red-img {
        max-width: 400px;
        top: 15px;
    }

    .class-meta {
        flex-direction: column;
        gap: 10px;
    }

    .trainer-img img {
        height: 200px;
    }

    .pricing-header .price {
        font-size: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 4px;
        padding: 12px;
    }

    .gallery-filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .hero-image-combo {
        height: 350px;
    }

    .hero-image-combo .kick-img {
        max-width: 200px;
        margin-left: 50px;
    }

    .hero-image-combo .red-img {
        max-width: 400px;
    }

    .navbar-brand img {
        height: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .filter-btn,
    .gallery-filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .class-category {
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* Navbar Adjustments */
@media (min-width: 1200px) and (max-width: 1600px) {

    /* Specific adjustments for 1440px range */
    .navbar {
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 12px !important;
        font-size: 14px;
    }

    /* Ensure dropdowns have enough space */
    .dropdown-menu {
        min-width: 200px;
    }

    /* Logo text adjustments */
    .logo-text {
        margin-left: 10px !important;
    }

    .logo-text .logo {
        font-size: 16px !important;
    }

    .logo-text div {
        font-size: 12px !important;
    }
}

/* Additional responsive tweaks */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-link {
        padding: 8px 10px !important;
        font-size: 13px;
        margin: 0 3px;
    }

    .navbar-brand img {
        height: 45px;
    }
}

/* For extra large screens (1600px and above) */
@media (min-width: 1600px) {
    .navbar {
        padding: 20px 0;
    }

    .nav-link {
        padding: 10px 18px !important;
        font-size: 16px;
        margin: 0 8px;
    }
}