
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    /* Bold Headings */
    h1, h2, h3, h4, h5{
        font-family: 'Rajdhani', sans-serif;

    }

    /* Normal Text (Paragraphs, Other Texts) */
    body, p, span, a, li ,h6{
        font-family: 'Rubik', sans-serif;
        font-weight: normal;
    }
/* ✅ Prevent scrolling caused by zoom effect */
html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}



.bolder-heading {
    font-size: 20px;
    background: rgba(182, 245, 155, 0.37);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight:bold;
}


/* ========================== header section ========================= */
/* Navbar Styles */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    transform: translateY(0);
}

/* Navbar when scrolled */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

/* Navbar hide/show on scroll */
.navbar.scroll-up {
    transform: translateY(0);
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

/* Navbar Links */
.nav-item a {
    color: white !important;
    margin: 0 5px;
    padding: 5px 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Change Navbar Links Color on Scroll */
.navbar.scrolled .nav-item a {
    color: #333 !important;
}

/* Navbar Hover Effect */
.nav-item a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #7ED956;
    transition: width 0.3s ease-in-out;
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 100%;
}

/* Navbar Brand/Logo */
.navbar-brand img {
    width: 200px;
    transition: width 0.3s ease-in-out;
}

.navbar.scrolled .navbar-brand img {
    width: 150px;
}

/* Navbar Button */
.nav-btn {
    background-color: #7ED956;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.nav-btn:hover {
    background-color: #6bc441;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-btn {
    background-color: #7ED956;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .navbar-brand img {
        width: 150px;
    }
    
    .navbar.scrolled .navbar-brand img {
        width: 120px;
    }
    
    .nav-item a {
        margin: 0 10px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar.scrolled {
        padding: 5px 0;
    }
    
    .navbar-brand img {
        width: 120px;
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        width: 100px;
    }
    
    .navbar.scrolled .navbar-brand img {
        width: 80px;
    }
}

/* Sidebar Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #222;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
}

.sidebar .nav-link {
    color: white;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: #7ED956;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-icon:hover {
    color: #7ED956;
}

.menu-icon {
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar.scrolled .menu-icon {
    color: #333;
}

.menu-icon:hover {
    color: #7ED956;
}





/* ✅ Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    pointer-events: auto;
}

/* ✅ Image Wrapper */
/* ✅ Image Wrapper */
.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
    .banner-container {
        height: 80vh; /* Adjust height for tablets */
    }
    
    .banner-img {
        height: 100%;
        object-fit: cover; /* Ensures proper scaling */
    }
    .banner-video {
        height: 100%;
        object-fit: cover; /* Ensures proper scaling */
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 60vh; /* Adjust height for mobile */
    }

    .banner-img {
        height: 100%;
        object-fit: cover; /* Ensures proper fit */
    }
    .banner-video {
        height: 100%;
        object-fit: cover; /* Ensures proper fit */
    }
}

/* ✅ Video Wrapper (Background Video) */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    object-fit: cover; /* Ensures the image covers the container */
    z-index: -1;  /* Ensures it's behind other elements */
}

/* ✅ Video Itself (Acts like a background image) */
.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures it fills the entire container */
}

/* ✅ Dark Overlay */
.banner-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1; /* Ensures overlay is above video */
}


/* ✅ Apply Smooth Zoom-Out Effect to Image */
.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 0.7s ease-out forwards;
}
.zoom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 0.7s ease-out forwards;
}

/* ✅ Dark Overlay */
.banner-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* ✅ Heading Wrapper */
.heading-wrapper {
    position: absolute;
    top: 40%;
    left: 0px;
    /* transform: translate(-50%, -50%); */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    flex-direction: column;
    width: 60%; /* Wrapper takes 60% width */
    margin: 0 auto; /* Center it */
}


.banner-heading {
    font-size: 56px;
    font-weight: bold;
    font-family: "Rajdhani", sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    animation: headingMoveUp 0.5s ease-out forwards;
    letter-spacing: 1.5px;
    position: relative;
    width: auto;
    white-space: nowrap;
    
    /* Extra Bold Effect */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1); /* White outline */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Soft shadow for depth */
}




.heading-bg p {
    font-size: 20px;
    color: white;
    text-align: left;
    margin: 0;
    animation: headingMoveUp 1s ease-out forwards;

}
.heading-bg p a{
    text-decoration: none;
    color: white;
    /* font-weight: bold; */
}
.heading-bg p a:hover{
    text-decoration: none;
    color: #6ef435;
}
.heading-bg p span{
    color: #6ef435;
    /* font-weight: bold; */
}
@media (max-width: 1020px) {
    .banner-container {
        height: 75vh;
    }
    .banner-heading {
        font-size: 40px;
    }
    .heading-bg p {
        font-size: 16px;
    }
}

/* ✅ Responsive Fixes */
@media (max-width: 760px) {
    .banner-container {
        height: 70vh;
    }
    .banner-heading {
        font-size: 32px;
    }
    .heading-bg p {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .banner-container {
        height: 60vh;
    }
    .banner-heading {
        font-size: 24px;
    }
    .heading-bg p {
        font-size: 12px;
    }
}






/* ================================= about section ========================== */
/* General Styling */
.about-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    height: auto;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    height: 100%;
}

.content-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    background: white;
    padding: 30px;
    height: 100%;
}

.about-text {
    flex: 1;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.about-text h2 {
    margin-top: 10px;
    font-weight: bold;
    -webkit-text-stroke: 1px black; /* Green outline */

}

.about-text p {
    text-align: left;
}

/* Modern Button Style */
.styled-btn {
    background: #7ED956;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    border: 2px solid #7ED956;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(110, 244, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Text and arrow container */
.styled-btn .btn-text,
.styled-btn .btn-arrow {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.styled-btn .btn-arrow {
    margin-left: 8px;
}

/* White hover effect (left to right) */
.styled-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

/* Hover states */
.styled-btn:hover::before {
    left: 0;
}

.styled-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Active/click state */
.styled-btn:active {
    transform: scale(0.98);
}

/* Ensures text remains black */
.styled-btn:hover .btn-text,
.styled-btn:hover .btn-arrow {
    color: black !important;
}

.about-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    overflow: hidden;
    max-height: 550px;

}

.about-media img {
    object-fit: cover;
    border-radius: 50px;
}

.about-media video {
    object-fit: cover;
}

.why-small-txt {
    background-color: #d6fec3;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1020px) {
    .content-wrapper {
        flex-direction: row; /* Keeps image left, text right */
        align-items: center;
        text-align: left;
    }

    .about-text {
        order: 2;
    }

    .about-media {
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: auto;
        max-height: 550px;
        overflow: hidden;
    }

    .about-media img, 
    .about-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 !important;
    }
}

@media (max-width: 760px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        font-size: 14px;
        order: 2;
    }
    .about-text h2 {
        text-align: left;
        font-size: 20px;

    }

    .about-media {
        order: 1;
        width: 100%;
        max-height: 500px;
        overflow: hidden;
    }

    .about-media img, 
    .about-media video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0 !important;
    }
    .about-section {
        padding: 0px;
    }
}

@media (max-width: 320px) {
    .about-text {
        font-size: 13px;
        padding: 0px;
    }

    .about-text h2 {
        text-align: left;
        font-size: 18px;
        text-align: justify;
    }

    .about-media {
        width: 100%;
        max-height: 500px;
        overflow: hidden;
    }

    .about-media img, 
    .about-media video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0 !important;
    }
    .about-section {
        padding: 0px;
    }
  
}
     
    


/* ---------------------------- about small box details ---------------------------- */
/* Section Styling */
.about-detail-section {
    background-color: #f8f9fa;
    padding: 30px 0;
}

/* Flexbox for equal height */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Box Styling */
.about-detail-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Makes all boxes equal height */
}

.about-detail-box:hover {
    transform: translateY(-5px);
}

/* Icon Styling */
.about-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.about-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Heading Styling */
.about-detail-heading {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Paragraph Styling */
.about-detail-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    flex-grow: 1; /* Ensures text takes remaining space */
}

/* Responsive Styling */
@media (max-width: 1020px) {
    .about-detail-box {
        padding: 20px;
    }
    .about-detail-heading {
        font-size: 20px;
    }
    .about-detail-text {
        font-size: 15px;
    }
}

@media (max-width: 760px) {
    .about-detail-box {
        padding: 15px;
    }
    .about-detail-heading {
        font-size: 18px;
    }
    .about-detail-text {
        font-size: 14px;
    }
    .about-detail-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 320px) {
    .about-detail-box {
        padding: 10px;
    }
    .about-detail-heading {
        font-size: 16px;
    }
    .about-detail-text {
        font-size: 12px;
    }
    .about-detail-icon {
        width: 50px;
        height: 50px;
    }
}




    

/* -------------------------- Mission vision Section ------------------------- */
        .mission-section{
            background-color: #f9f9f9;
        
        }
        /* Mission Section */
        .mission-row {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            background-color:white;
            box-shadow:0px 0px 9px 0px #efecec;
        }
        
        /* Alternating row direction */
        .mission-row-reverse {
            flex-direction: row-reverse;
        }
        
        /* Content Styling */
        .mission-content {
            padding: 30px;
        }
        
        .mission-heading {
            font-size: 45px;
            margin-bottom: 15px;
            color: #333;
            font-weight: bold;
        }
        
        .mission-text {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }
        
        /* Image Styling */
        .mission-image {
            width: 100%;
            height: 450px; /* Consistent image height */
            overflow: hidden;
        }
        
        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures all images fit without distortion */
        }
        
        /* Responsive Styling */
/* Responsive Media Queries */
@media (max-width: 1020px) {
    .mission-heading {
        font-size: 25px;
    }
    .mission-text {
        font-size: 15px;
        /* padding: 0 30px; */
    }
}

@media (max-width: 760px) {
    .mission-row {
        flex-direction: column-reverse !important;
        text-align: center;
    }
    .mission-heading {
        font-size: 22px;
        text-align: left;

    }
    .mission-text {
        font-size: 14px;
        /* padding: 0 20px; */
        text-align: left;

    }
    .mission-image img {
        width: 100%;
        display: block;
        margin: auto;
    }
}

@media (max-width: 320px) {
    .mission-heading {
        font-size: 22px;
        text-align: left;

    }
    .mission-text {
        font-size: 14px;
        /* padding: 0 15px; */
        text-align: left;
    }
    .mission-image img {
        width: 100%;
    }
}
    
    







/* -------------------------- Modern Boxing Section ----------------------- */
.boxing-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6ef435, #2a8f1d);
}


.boxing-card {
    width: 95%;
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.boxing-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.boxing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.boxing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.boxing-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: white;
    text-align: left;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.boxing-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.boxing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6ef435;
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: none;
    cursor: pointer;
}

.boxing-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.boxing-btn svg {
    position: relative;
    z-index: 2;
    margin-left: 10px;
    transition: all 0.3s ease;
    stroke: black;
}

.boxing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.boxing-btn:hover {
    color: black;
}

.boxing-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.boxing-btn:hover svg {
    transform: translateX(5px);
}

.boxing-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 244, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.hover-content {
    text-align: center;
    padding: 30px;
    color: black;
}

.hover-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hover-arrow {
    font-size: 2rem;
    font-weight: bold;
    animation: bounce 2s infinite;
}

/* Animation Effects */
.boxing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.boxing-card:hover .boxing-image {
    transform: scale(1.1);
}

.boxing-card:hover .boxing-card-hover {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

/* Responsive Design */
@media (max-width: 1199px) {
    .boxing-card {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .boxing-card {
        height: 350px;
    }
    
    .boxing-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .boxing-card {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .boxing-content {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .boxing-card {
        height: 250px;
    }
    
    .boxing-content h3 {
        font-size: 1.3rem;
    }
    
    .boxing-btn {
        padding: 10px 20px;
    }
}




.programs-banner-section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.program-banner {
    position: relative;
    width: 100%;
    height: 70vh; /* You can change this to 30vh if needed */
    margin-bottom: 2rem;
    overflow: hidden;
}

.banner-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Ensures the top part of the image is always visible */
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.program-banner:hover .banner-image {
    transform: scale(1.05);
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Black shade with 50% opacity */
}

.banner-content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    z-index: 2;
    padding: 0 15px; /* Added padding for better mobile display */
}

/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 0.5rem;
    width: 100%;
    -webkit-text-stroke: 2px #7ED956; /* Green outline */
    color: #7ED956;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

.banner-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 600px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.banner-action a .banner-btn {
    background-color: white;
    color: #7ED956;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-action a .banner-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #7ED956;
}

.banner-action a .banner-btn:hover {
    background-color: #7ED956;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.banner-action a .banner-btn:hover svg {
    transform: translateX(3px);
    color: white;
}

.no-programs-banner {
    background: #333; /* Changed to dark background */
    color: white;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-programs-content {
    padding: 2rem;
    text-align: center;
}

.no-programs-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.no-programs-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.no-programs-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .banner-title {
        font-size: 1.6rem;
    }
    
    .banner-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .program-banner {
        height: 60vh; /* Adjusted for tablet */
        margin-bottom: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-btn {
        padding: 0.5rem 1.5rem;
    }
    
    .banner-content1 {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .program-banner {
        height: 50vh; /* Adjusted for mobile */
    }
    
    .banner-title {
        font-size: 1.4rem;
    }
    
    .banner-description {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .banner-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }
    
    .no-programs-content {
        padding: 1rem;
    }
    
    .no-programs-content h3 {
        font-size: 1.3rem;
    }
    
    .no-programs-content p {
        font-size: 0.9rem;
    }
}












/* ------------------------------start the index page-------------------------------------------- */
/* Home Banner Section */
.home-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
        filter: none; /* ✅ Ensures no color/brightness filter is applied */
        opacity: 1;
    }
    100% {
        transform: scale(1.1); /* ✅ Only zoom effect */
        filter: none; /* ✅ Ensures the image does not turn black */
        opacity: 1;
    }
}

/* .banner-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
} */

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

/* ✅ Active Slide - Only Image Zooms Out */
.banner-slide.active {
    opacity: 1;
}

.banner-slide.active .banner1-img {
    transform: scale(1); /* Smooth zoom-out effect */
}

/* ✅ Fix text animation to move only vertically */
@keyframes slideUp {
    0% {
        transform: translateY(50px); /* Only move up */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* Keep it centered */
        opacity: 1;
    }
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 5;
    width: 90%;
}

/* ✅ Animate h1 with 1s delay */
.banner-slide.active .banner-content h1 {
    animation: slideUp 1s ease-in-out forwards;
}
/* ✅ Animate a with 2s delay */
.banner-slide.active .banner-content p {
    animation: slideUp 1.5s ease-in-out forwards;
}

/* ✅ Animate a with 2s delay */
.banner-slide.active .banner-content a {
    animation: slideUp 1.5s ease-in-out forwards;
}
.banner-content h1 {
    font-size: 70px;
    color: #7ED956; /* Removes the inside color */
    margin-bottom: 5px;
    font-weight: bold;
    -webkit-text-stroke: 2px #7ED956; /* Green outline */
}


.banner-content p{
    font-size: 16px;
    padding-bottom: 50px;
    color: rgb(255, 255, 255);
    width: 70%;
    margin: auto;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 5px;
    background: white;
    border-radius: 20%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #7ED956;
    width: 30px;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    .banner-content p{
        font-size: 13px;
        padding-bottom: 50px;
        color: rgb(255, 255, 255);
        width: 70%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .home-banner, .banner-slideshow {
        height: 100vh;
    }
    .banner-content h1 {
        font-size: 1.8rem;
    }
    .banner-content p {
        font-size: 0.85rem;
    }
    .btn-outline {
        padding: 8px 16px;
        font-size: 14px;
    }
    .dot {
        width: 10px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .home-banner, .banner-slideshow {
        height: 100vh;
    }
    .banner-content {
        width: 100%;
        padding: 10px;
    }
    .banner-content h1 {
        font-size: 1.5rem;
    }
    .banner-content p {
        font-size: 0.8rem;
    }
    .btn-outline {
        padding: 6px 12px;
        font-size: 12px;
    }
    .dot {
        width: 8px;
        height: 4px;
    }
}






.testimonial-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    position: relative;
}

.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(126, 217, 87, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 15s infinite linear;
    z-index: 0;
    opacity: 0.3;
}

.section-subtitle {
    color: #393939;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
} */

.testimonial-carousel-container {
    position: relative;
    padding: 0 50px;
}

.testimonial-carousel {
    display: flex;
}

.testimonial-card {
    padding: 15px;
    position: relative;
    height: auto;
}

.card-inner {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(126, 217, 87, 0.1);
}




/* Dynamic height adjustment */
.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonial-carousel .testimonial-card {
    flex: 1;
}

/* Rest of your styles remain the same */
.user-avatar {
    position: relative;
    margin-bottom: 25px;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7ED957, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.user-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #7ED957;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    z-index: 3;
    border: 3px solid #2b2b2b;
}

.stars {
    color: gold;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(126, 217, 87, 0.2);
    position: absolute;
    top: 10px;
    right: 30px;
    line-height: 1;
    font-family: serif;
}

.testimonial-text {
    color: #d1d1d1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.user-info {
    margin-top: auto;
}

.user-name {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-title {
    color: #7ED957;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .testimonial-carousel-container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-item {
        width: 50% !important; /* Force 2 items in tablet view */
    }
    
    .testimonial-card {
        padding: 10px;
    }
    
    .card-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .testimonial-carousel .owl-item {
        width: 100% !important; /* Force 1 item in mobile view */
    }
    
    .testimonial-carousel-container {
        padding: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    .custom-next, .custom-prev{
        display:none !important;
    }
}

/* Navigation styles remain the same */
.custom-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.custom-prev, .custom-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(126, 217, 87, 0.8);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}









    /* Base Container */
    .container1 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        padding:20px 30px 50px;
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at 30% 50%, rgba(126, 217, 87, 0.05) 0%, transparent 50%);
    }

    /* Left Section - Enhanced */
    .leftsection1 {
        width: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 40px;
        perspective: 1000px;
    }

    .imagebox1 {
        position: relative;
        z-index: 2;
        transform-style: preserve-3d;
    }

    .hover-3d {
        max-width: 100%;
        height: auto;
        position: relative;
        z-index: 2;
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                    filter 0.6s ease;
        transform: translateZ(20px);
        filter: drop-shadow(0 15px 20px rgba(0,0,0,0.2));
    }

    .imagebox1:hover .hover-3d {
        transform: translateZ(40px) rotateY(-5deg) rotateX(5deg);
        filter: drop-shadow(0 25px 30px rgba(0,0,0,0.3));
    }

    .image-reflection {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, rgba(126, 217, 87, 0.3), transparent);
        transform: scaleY(-1);
        opacity: 0.6;
        filter: blur(10px);
        z-index: 1;
        transition: all 0.6s ease;
    }

    .imagebox1:hover .image-reflection {
        opacity: 0.8;
        height: 40%;
    }

    /* Green Box - Enhanced */
    .greenbox1 {
        position: absolute;
        background: #7ED957;
        width: 80%;
        height: 50%;
        bottom: 0;
        z-index: 1;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 20px 40px rgba(126, 217, 87, 0.3);
        transform-style: preserve-3d;
        transition: transform 0.6s ease;
    }

    .greenbox1:hover {
        transform: translateY(-10px) rotateX(5deg);
    }

    .fitness-text {
        font-size: 11rem;
        color: rgba(0, 0, 0, 0.2);
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 32%;
        text-shadow: 5px 5px 0 rgba(0,0,0,0.05);
        transition: all 0.5s ease;
    }

    .greenbox1:hover .fitness-text {
        color: rgba(0, 0, 0, 0.25);
        text-shadow: 8px 8px 0 rgba(0,0,0,0.08);
    }

    /* Floating Dots Background */
    .floating-dots {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(0,0,0,0.1) 1px, transparent 1px);
        background-size: 30px 30px;
        animation: float 15s infinite linear;
        z-index: 0;
        opacity: 0.5;
    }

    /* Right Section - Enhanced */
    .rightsection1 {
        width: 50%;
        text-align: justify;
        padding: 50px;
        position: relative;
    }

    .text-gradient {
        background: linear-gradient(90deg, #7ED957, #4CAF50);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .rightsection1 p {
        font-size: 15px;
        color: #333;
        margin: 10px 0;
        line-height: 1.6;
        position: relative;
        padding-left: 20px;
    }

    .rightsection1 p::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        height: 60%;
        width: 4px;
        background: #7ED957;
        border-radius: 2px;
    }

    /* Button - Enhanced with Magnetic Effect */
    .btn1 {
        background: #7ED956;
        color: white;
        padding: 12px 30px;
        font-weight: bold;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        font-size: 18px;
        position: relative;
        overflow: hidden;
        border: 2px solid #7ED956;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(126, 217, 87, 0.3);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        transform-style: preserve-3d;
    }

    .btn-text, .btn-arrow {
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .btn-arrow {
        margin-left: 8px;
    }

    .btn-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle, white 1px, transparent 1px);
        background-size: 10px 10px;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn1::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: white;
        transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 1;
    }

    .btn1:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 30px rgba(126, 217, 87, 0.4);
    }

    .btn1:hover::before {
        left: 0;
    }

    .btn1:hover .btn-arrow {
        transform: translateX(8px);
    }

    .btn1:hover .btn-particles {
        opacity: 0.2;
        animation: particles 1s linear infinite;
    }

    .btn1:active {
        transform: scale(0.98);
    }

    .btn1:hover .btn-text,
    .btn1:hover .btn-arrow {
        color: black !important;
    }

    /* Animations */
    @keyframes float {
        0% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-20px) translateX(20px); }
        100% { transform: translateY(0) translateX(0); }
    }

    @keyframes particles {
        0% { background-position: 0 0; }
        100% { background-position: 50px 50px; }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .container1 {
            flex-direction: column;
            height: auto;
            padding: 30px;
        }

        .leftsection1 {
            width: 100%;
            margin-bottom: 40px;
        }

        .greenbox1 {
            width: 60%;
            height: 40%;
        }

        .fitness-text {
            font-size: 8rem;
            margin-top: 15%;
        }

        .rightsection1 {
            width: 100%;
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        .fitness-text {
            font-size: 5rem;
        }

        .btn1 {
            padding: 10px 25px;
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .fitness-text {
            font-size: 3.5rem;
        }

        .rightsection1 p {
            font-size: 14px;
        }
    }



    .footer {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        color: white;
        padding: 60px 20px 30px;
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(126, 217, 87, 0.2);
    }
    
    .footer-bg-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }
    
    .footer-bubble {
        position: absolute;
        border-radius: 50%;
        background: rgba(126, 217, 87, 0.05);
        animation: float 15s infinite linear;
    }
    
    .footer-bubble:nth-child(1) {
        width: 200px;
        height: 200px;
        top: -50px;
        left: -50px;
        animation-duration: 20s;
    }
    
    .footer-bubble:nth-child(2) {
        width: 300px;
        height: 300px;
        bottom: -100px;
        right: -100px;
        animation-duration: 25s;
    }
    
    .footer-bubble:nth-child(3) {
        width: 150px;
        height: 150px;
        top: 30%;
        right: 20%;
        animation-duration: 18s;
    }
    
    .footer-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        position: relative;
        z-index: 1;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: #7ED957;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-link {
        color: #bbb;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 8px 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .link-icon {
        margin-right: 10px;
        color: #7ED957;
        transform: translateX(-5px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .footer-link:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .footer-link:hover .link-icon {
        transform: translateX(0);
        opacity: 1;
    }
    
    .footer-about-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #ddd;
        text-align: justify;
    }
    
    .footer-newsletter {
        display: flex;
        margin-top: 20px;
    }
    
    .footer-newsletter input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 5px 0 0 5px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        outline: none;
    }
    
    .footer-newsletter input::placeholder {
        color: #aaa;
    }
    
    .newsletter-btn {
        padding: 0 20px;
        background: #7ED957;
        color: black;
        border: none;
        border-radius: 0 5px 5px 0;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .newsletter-btn:hover {
        background: #6bc440;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-copyright {
        margin: 0;
        font-size: 14px;
        color: #999;
    }
    
    .social-icons {
        display: flex;
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background: #7ED957;
        color: black;
        transform: translateY(-3px);
    }
    
    /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 70px;
        right: 30px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .whatsapp-float img {
        width: 100%;
        height: auto;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .whatsapp-pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(126, 217, 87, 0.4);
        border-radius: 50%;
        z-index: 1;
        animation: pulse 2s infinite;
    }
    
    .whatsapp-float:hover img {
        transform: scale(1.1);
    }
    
    /* Scroll to Top Button */
    #scrollTop {
        position: fixed;
        bottom: 20px;
        right: 37px;
        width: 40px;
        height: 40px;
        background: rgba(126, 217, 87, 0.9);
        color: black;
        border: none;
        border-radius: 50%;
        display: none;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    #scrollTop:hover {
        background: #7ED957;
        transform: translateY(-5px);
    }
    
    /* Animations */
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
        100% { transform: translateY(0) rotate(0deg); }
    }
    
    @keyframes pulse {
        0% { transform: scale(0.8); opacity: 0.8; }
        70% { transform: scale(1.3); opacity: 0; }
        100% { transform: scale(0.8); opacity: 0; }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .whatsapp-float {
            bottom: 50px;
            right: 10px;
            width: 50px;
            height: 50px;
        }
        
        #scrollTop {
            width: 30px;
            height: 30px;
            bottom: 20px;
            right: 20px;
        }
    }



    /* ------------------------- boxing section ------------------------- */
    /* Section Header Styles */
.section-header {
    padding: 30px 10px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Title Styles */
/* .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
} */




/* Subtitle Styles */
/* .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
} */

/* Hover Effects */
.section-title:hover ~ .title-divider .divider-bar {
    background: linear-gradient(90deg, transparent, #2a8f1d, transparent);
    height: 3px;
}


/* Responsive Design */
@media (max-width: 1020px) {
    .section-header {
        padding: 50px 0; /* Reduce padding */
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 760px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 10px; /* Reduce bottom space */
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-top: 5px; /* Move subtitle closer to title */
    }
    
    .title-divider {
        margin: 15px auto; /* Adjust spacing */
    }

    .section-header {
        padding: 20px 0; /* Move the entire section up */
    }
}

@media (max-width: 320px) {
    .section-header {
        padding: 10px 0; /* Reduce padding further */
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 8%; /* Reduce gap */
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 7%; /* Move subtitle closer */
    }
    
    .divider-dot {
        margin: 0 8px;
    }
}
