:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --nav-bg: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --bg-red:#1A56DB ;
    --bg-blue: #2563eb; 
    --bg-orange:#f47400;
}

/* Dark mode variables */


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: din-2014, sans-serif;
    background-color: black;
    overflow: hidden;
}

body {
    background-color: black;
    overflow-y: auto;
} 

/*Navbar Start */

.navbar {
    background: rgba(231, 232, 232, 0.5); /* Light grey with transparency */
    backdrop-filter: blur(10px); /* Blur effect */
    border-radius: 50px; /* Smooth rounded corners */
    margin: 10px auto; /* Centers the navbar */
    width: fit-content; /* Adjust width based on content */
    max-width: 100%; /* Prevents it from being too wide */
    transition: background 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    justify-content: center; /* Ensures items inside stay centered */
    align-items: center;
    /* Minimal padding for structure */
}

.nav-link {
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    color: #323232 !important;
}


.btn-quotes {
    background-color :var(--bg-orange);
    color: white !important;
    
    padding: 8px 25px !important;
    margin-left: 25px;
}

.btn-quotes:hover {
    background-color:#fff;
    color:var(--bg-orange) !important;
}

.navbar-toggler {
border-color: rgba(255,255,255,0.5);
}





/*Navbar End */



/* Updated Hero Banner start */
.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
   
}

@media (max-width: 768px) {
  .hero-banner {
    height: auto; /* Mobile devices ke liye height adjust */
  }
  p.hero-cta.text-center.mb-3 
  {
    font-size: 30px;
  }
}




.hero-banner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));*/
    z-index: 1;
}


.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align to the bottom by default */
    padding: 3rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
  }
  
  @media (max-width: 768px) {
    .hero-content {
      justify-content: flex-start; /* Align to the top for smaller screens */
      height: auto; /* Adjust height dynamically */
    }
  }
  
.hero-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    z-index:1;
}

.hero-text-group {
    text-transform: uppercase;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
    margin: 0; /* Reduce external spacing */
    line-height: 1.2; /* Adjust spacing between lines */
}

.hero-brand {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    
    color: white;
    padding: 0.3rem 0.8rem;
    display: inline-block;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;

}

.hero-cta {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin: 0.8rem 0;
    
    font-family: 'Bebas Neue', sans-serif; 
    
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#ff9b29, #ff5c00 60%);
    -webkit-background-clip: text;
    background-clip: text;
    padding-right: 4px;
}


.gradient-text {
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(#fff, #6fd0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*text-align: center;*/
    font-style: italic;
    font-family: 'Raleway', sans-serif;
}
/* Enhanced Buttons */
/* Hero bottom content layout */
.hero-bottom-content {
    display: flex;
    flex-direction: row; /* Arrange text and buttons horizontally */
    align-items: center; /* Vertically align the items to the center */
}

@media (max-width: 768px) {
    .hero-bottom-content {
        padding-top: 400px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .hero-cta{
        margin-left:30%;
    }
    .gradient-text
    {
        margin-left: 30%;
    }
}

/* Medium Mobile Devices (520px and below) */
@media (max-width: 520px) {
    .hero-bottom-content {
        padding-top: 220px;
        gap: 1.25rem;
    }
    
    .hero-cta {
        font-size: 2.5rem;
        margin-left:10%;
    }
    .gradient-text
    {
        margin-left: 10%;
    }
}

/* Small Mobile Devices (375px and below) */
@media (max-width: 375px) {
    .hero-bottom-content {
        padding-top: 200px;
        gap: 1rem;
    }
    
    .hero-cta {
        font-size: 2.5rem;
        margin-left:0%;
    }
    .gradient-text
    {
        margin-left: 0%;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .hero-bottom-content {
        padding-top: 150px;
        gap: 0.75rem;
    }
    
    .hero-cta {
        font-size: 1.75rem;
    }
}

/* Ensure the buttons are aligned next to the text without extra space */
.hero-buttons {
display: flex;
flex-direction: column;  /* Stack buttons vertically */
align-items: flex-start; /* Align buttons to the left */
}

/* Hero buttons container */
.hero-buttons {
display: flex;
flex-direction: column;  /* Stack buttons vertically */
gap: 1rem; /* Add space between buttons */
}

/* Styling for individual buttons */
.hero-btn {
    background: #2563eb; /* Default blue background */
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    
}
.hero-btn{
    width:430px;
}
/* Hover Effects */
.hero-btn:hover {
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    opacity: 0.95; /* Slight opacity change */
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .hero-cta {
        font-size: 2rem;
    }
    
    .hero-subline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
      margin-left:25%;
    }
    
   
}

@media (max-width: 425px) {

    .hero-buttons {
      margin-left:0;
      
    }
}
@media (max-width: 320px) {
   

    .hero-buttons  {
        width: 150px; /* Fixed width for buttons */
        margin: 0px;
        font-size: 1px;
    }
}

/* Updated Hero Banner End */


@media (max-width: 768px) {
    .hero-buttons .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .col-12 {
        width: 100%;
        text-align: center;
    }

    .hero-btn {
        text-align: center;
        width: 270px;
        padding: 10px;
        font-size: 12px;
    }
}
@media (max-width: 320px) {
    .hero-buttons .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .col-12 {
        width: 100%;
        text-align: center;
    }

    .hero-btn {
         text-align: center;
        margin-left:53px;
        width: 200px;
        padding: 10px;
        font-size: 10px;
    }
}


/* why Choose Us Section Start*/

.reviews-section {
padding: 2rem;
background: #f5f5f5;
min-height: 100vh;
}

.section-title {
text-align: center;
margin-bottom: 2rem;
font-size: 1.5rem;
color: #333;
}

.reviews-container {
max-width: 800px;
margin: 0 auto;
}

.review-card {
background: white;
padding: 1.5rem;
margin: 1rem 0;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease-out;
}

.review-card.active {
opacity: 1;
transform: translateY(0);
}

.review-text {
font-size: 1.1rem;
color: #444;
line-height: 1.6;
margin-bottom: 1rem;
}

.review-author {
font-weight: bold;
color: #666;
text-align: right;
font-style: italic;
}

/* Delay animations for staggered effect */
.review-card:nth-child(1) { transition-delay: 0.2s; }
.review-card:nth-child(2) { transition-delay: 0.4s; }
.review-card:nth-child(3) { transition-delay: 0.6s; }


/* why Choose Us Section End*/














/* About Us Section Start*/

.club-section {
    display: flex;
    align-items: center;
    color: white;
    margin-top: -50px;
    padding: 50px 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.club-content {
    flex: 1;
    padding: 40px;
    margin-top: 20px;
    text-align: left;
    max-width: 600px;
}
.club-content h1 {
    font-size: 2rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}
.club-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: white;
    max-width: 100%;
    text-align: justify;
}
.club-content p strong {
    color: #f47400;
    font-weight: bold;
}
.club-image {
    flex: 1;
    text-align: center;
    padding: 20px;
    max-width: 600px;
}
.club-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.book-now-btn {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.book-now-btn:hover {
    background-color: #e64c2e;
}
@media (max-width: 768px) {
    .club-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }
    .club-content {
        padding: 20px;
        margin-top: 20;
        max-width: 100%;
    }
    .club-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    .club-content p {
        font-size: 1rem;
        text-align: justify;
    }
    .club-image {
        padding: 10px;
        max-width: 100%;
    }
}


/* About Us Section End*/


.review-container {
    text-align: center;
}

.review-content {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: white;
    margin-bottom: 10px;
}

.review-content::after {
content: "";
display: block;
width: 50%; /* Controls the length of the line */
height: 2px; /* Thickness of the line */
margin: 10px auto 0; /* Centers the line */
background: linear-gradient(to right, #00AEEF, #19B829); /* Two-color gradient */
border-radius: 4px;

}
/*Why Choose Us Start*/

.container-review {
        display: flex;
        gap: 50px;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
        margin-top: 30px;
    }

.card {
        color: white;
        padding: 20px;
        /* border-radius: 15px; */
        width: 300px;
        text-align: center;
        font-family: Arial, sans-serif;
        position: relative;
        overflow: hidden;
        /* box-shadow: 0 0 15px rgba(0, 255, 200, 0.3); */
        border: 1px solid #3f3f46;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 400px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* White glow effect */
        border: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
        
    }
    .card-1 {
    /* background: linear-gradient(to right, #2C2C2C, #1A1A1A); */
    background-color:#27272a;
    
    position: relative;
}
.card-1::before,
.card-2::before,.card-3::before {
content: "";
position: absolute;
bottom: 0;
width: 100%;
height: 150px;
background-size: contain;
background-repeat: no-repeat;
opacity: 3;
margin-bottom: 10px;
}

.card-1::before {
background-image: url('../img/img1.avif');
background-position: left bottom;
}

.card-2::before {
background-image: url('../img/img2.avif');
background-position: right bottom;

}
.card-3::before {
background-image: url('../img/img3.avif');
background-position: right bottom;

}

    .card-2 {
        background-color:#27272a;
    }
    .card-3 {
        background-color:#27272a;
    }
    .card h2 {
        font-size: 20px;
        font-weight: bold;
    }
    .card p {
        font-size: 18px;
        margin: 10px 0;
        color: #cccccc;
        flex-grow: 1;
    }
    .stars {
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }
    .stars img {
        width: 30px;
        margin: 0 3px;
    }
    .author {
        font-size: 16px;
        font-weight: bold;
        margin-top: 10px;
    }
    @media (max-width: 900px) {
        .container {
            flex-direction: column;
            align-items: center;
        }
    }
/*Why Choose Us Start*/




        /*OUR AMAZING COACHES /Advisory Section Start */

.advisory-section {
    text-align: center;
    padding: 20px 20px;
    position: relative;
    font-family: "Poppins", sans-serif;
    color: white;
    background-color:#27272a;
}

.advisory-title {
    font-size: 30px;
    font-weight: 700;
    /*font-style: italic;*/
}

.advisory-title span {
    color: var(--bg-orange);
    border-bottom: 3px solid var(--bg-orange);
}

.advisory-description {
    font-size: 17px;
    opacity: 0.85;
    margin: 10px 0 35px;
}

/* Advisors */
.advisor-card {
    text-align: center;
    padding: 20px;

    border-radius: 12px;
}

.advisor-card img {
    width: 150px;
    height: 150px;

    border: 4px solid #fff;
    object-fit: cover;
}

.advisor-card h5 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.advisor-card p {
    font-size: 15px;
    opacity: 0.8;
}

/* Side Images */
.advisor-left-img,
.advisor-right-img {
    position: absolute;
    top: 50%;
    width: 100px;
    opacity:3;
    transform: translateY(-50%);
}

.advisor-left-img {
    left: 25px;
}

.advisor-right-img {
    right: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .advisor-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .advisor-left-img,
    .advisor-right-img {
        display: none;
    }
}

 /*OUR AMAZING COACHES /Advisory Section End */

/* Read More Btn Start*/

.book-now-btn {
    display: flex;
    align-items: center;
    background-color:var(--bg-orange); /* Green Button */
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    cursor: pointer;
    outline: none;
    position: relative;
}

.book-now-btn span {
    margin-right: 10px;
}

.arrow-circle {
    width: 30px;
    height: 30px;
    background-color: var(--bg-color); /* Lighter Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-circle::before {
    content: "→";
    font-size: 19px;
    color: black;
}

.book-now-btn:hover {
    background-color:var(--bg-blue); /* Darker green on hover */
}



 /* Read More Btn End*/





/*Our Latest Event/featurrs Section Start*/

.features-section {
text-align: center;
padding: 20px;
color: var(--bg-color);
}

.features-section h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.features-section p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.main-video video {
width: 100%;
height: 400px;

border-radius: 30px;
}
.main-video img {
    width: 100%;
    height: 400px;
    
    border-radius: 30px;
    }

/* Video Text Styling */
.video-text {
    text-align: left;
    padding: 20px;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto; /* Adjust height dynamically */
    background-color: #27272a;
    max-width: 600px; /* Limits width for better readability */
    margin: auto; /* Center content */
}

/* Heading */
.video-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--bg-orange);
}

/* Paragraph */
.video-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .video-text {
        text-align: center; /* Center content for better mobile view */
        padding: 15px;
        max-width: 90%; /* Ensures it doesn't take full width */
        height: auto; /* Let content determine height */
    }

    .video-text h3 {
        font-size: 1.5rem; /* Slightly smaller heading on mobile */
    }

    .video-text p {
        font-size: 1rem; /* Adjust font size for readability */
        line-height: 1.5;
    }
}

/* Video Thumbnails Section */
.video-thumbnails {
    display: flex;
    justify-content: center; /* Center thumbnails */
    flex-wrap: wrap;
    gap: 15px; /* Adds spacing between thumbnails */
    margin-top: 20px;
}

/* Individual Thumbnail */
.thumbnail {
    width: 150px;
    cursor: pointer;
    text-align: center;
}

/* Thumbnail Image */
.thumbnail img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.thumbnail img:hover {
    transform: scale(1.1);
}

/* Thumbnail Caption */
.thumbnail p {
    font-size: 1rem;
    margin-top: 5px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .video-thumbnails {
        justify-content: center; /* Ensures thumbnails stay in the center */
        gap: 10px; /* Adjust spacing for smaller screens */
    }

    .thumbnail {
        width: 100px; /* Slightly smaller thumbnails on mobile */
    }

    .thumbnail p {
        font-size: 0.9rem; /* Adjust caption size for better readability */
    }
}

@media (max-width: 768px) {
.main-video video {
height: 300px;
margin-top: 0%;
}

.video-text {
margin-top: 20px;
}
}





/*Our Latest Event/featurrs Section End*/





/*experience-section Start*/

/* Experience Section Start */
.experience-section {
    position: relative;
    min-height: 300px; /* Adjusted for better responsiveness */
    background-image: url('../img/std.jpg'); /* Replace with your image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 50px 20px; /* Added padding for better spacing */
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
}

/* Experience Content */
.experience-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap on smaller screens */
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Experience Item */
.experience-item {
    text-align: center;
    min-width: 150px; /* Prevents shrinking */
    flex: 1; /* Ensures even distribution */
    transition: transform 0.3s ease-in-out;
}

.experience-item:hover {
    transform: translateY(-5px); /* Subtle hover effect */
}

.experience-item h2 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    animation: countUp 2s ease-out;
}

.experience-item p {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

/* Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .experience-content {
        gap: 20px; /* Reduce spacing on tablets */
    }
    .experience-item h2 {
        font-size: 2.5rem;
    }
    .experience-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .experience-section {
        min-height: auto;
        background-attachment: scroll; /* Disable fixed background on mobile for better performance */
    }

    .experience-content {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        gap: 15px;
    }

    .experience-item {
        width: 90%; /* Better readability */
        max-width: 300px; /* Prevents it from being too wide */
    }

    .experience-item h2 {
        font-size: 2rem; /* Reduce size for smaller screens */
    }

    .experience-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-item h2 {
        font-size: 1.8rem;
    }
    .experience-item p {
        font-size: 0.9rem;
    }
}

/*experience-section End*/


/*Footer -section Start*/

/* Footer Styling */
.footer {
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-column h3 {
    color: var(--bg-orange);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left; /* Align text to the left for larger screens */
    margin-left: 35px; /* Provide space on the left side for larger screens */
}

/* ✅ Responsive adjustments */
@media (max-width: 1024px) {
    .footer-column h3 {
        font-size: 18px; /* Slightly smaller font on medium screens */
        margin-left: 20px; /* Reduced margin for smaller screens */
    }
}

@media (max-width: 768px) {
    .footer-column h3 {
        font-size: 16px; /* Smaller font size for mobile */
        margin-left: 0; /* Remove left margin for full-width mobile */
        text-align: center; /* Center-align text on mobile */
        margin-bottom: 15px; /* Ensure spacing at the bottom */
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 14px; /* Even smaller font on very small screens */
        margin-left: 0; /* No margin on very small screens */
        text-align: center; /* Ensure centered text */
        margin-bottom: 12px; /* Bottom margin for small screens */
    }
}

.footer-column p {
    color: var(--bg-color);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.links {
    list-style: none;
}

.links li {
    margin-bottom: 8px;
}

.links a {
    text-decoration: none;
    color: var(--bg-color);
    transition: color 0.3s ease;
}

.links a:hover {
    color: var(--bg-orange);
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%; /* Full width columns on mobile */
        margin: 10px 0;
    }

    .social-icons {
        justify-content: center;
    }

    .links {
        text-align: center;
        margin-right: 40px;
    }
}

.footer-bottom {
    text-align: center;
    color: #8b8b97;
    padding: 10px 0;
    font-size: 14px;
}


/*Footer -section End */



/*Whats App Btn Start */

.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: white;
width: 55px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
margin-right: 20px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
text-decoration: none;


}

.whatsapp-float:hover {
transform: scale(1.1);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 45px; /* Smaller width on mobile */
        height: 45px; /* Smaller height on mobile */
        font-size: 25px; /* Smaller font size on mobile */
        bottom: 15px; /* Adjusted position for better fit on small screens */
        right: -20px; /* Adjusted position for small screens */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 40px; /* Even smaller width for very small screens */
        height: 40px; /* Even smaller height for very small screens */
        font-size: 20px; /* Even smaller font size for very small screens */
        bottom: 10px; /* Adjusted position for very small screens */
        right: -20px; /* Adjusted position for very small screens */
    }
}
/*Whats App Btn End */




/*about us  Page  Start*/




/* Background section styling */


.cricket-section {
    background: url('../img/1.jpg') no-repeat center center/cover; /* Replace with actual background image */
    color: white;
    padding: 100px 0;
    position: relative;
}

/* Dark overlay for better text visibility */
.cricket-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

/* Ensure content appears above the overlay */
.cricket-content-container {
    position: relative;
    z-index: 1;
}

/* Styling for text content */
.cricket-text {
    max-width: 600px;
}
.highlight-text {
    font-weight: bold;
    /*font-style: italic;*/
    color: orange;
}
.quote-text {
    font-style: italic;
    opacity: 0.8;
}

/* Custom image grid styling */
.cricket-image-grid {
    display: flex;
    justify-content: flex-end; /* Align images to the right */
    gap: 15px;
}
.cricket-image-grid img {
    width: 60%;
    height: auto;
    max-width: 60%; /* Ensure the image doesn’t overflow */
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.cricket-image-grid img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cricket-image-grid {
        justify-content: center; /* Center images on smaller screens */
    }
}



 /* Facilities Section  Start*/

 .facilities-section {
    text-align: center;
    padding: 50px 20px;
    background-color: black;
    color: white;
}

.facilities-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Divider between heading and features */
.facilities-divider {
    width: 160px;
    height: 2px;
    background: linear-gradient(to right, #00AEEF, #19B829);
    margin: 10px auto 40px;
}

/* Features layout */
.facilities-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual feature card */
.facilities-feature {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* margin: 10px auto; */
}

.facilities-feature img {
    width: 70px;
    height: 70px;
    /* margin-right: 20px; */
}

.facilities-feature-content {
    text-align: left;
}

.facilities-feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f39c12; /* Orange text for headings */
}

.facilities-feature-content p {
    font-size: 0.9rem;
    color: #ccc;
}


/* Responsive adjustments */
@media (min-width: 768px) {
    .facilities-feature {
        width: 45%;
    }
}

@media (min-width: 1024px) {
    .facilities-heading {
        font-size: 2.5rem;
    }
    .facilities-feature-content h3 {
        font-size: 1.5rem;
    }
    .facilities-feature-content p {
        font-size: 1rem;
    }
}

 /* Facilities Section  End*/



/* Team Reviews Section Start */
        
 /* Team Reviews Section */
 .team-reviews-section {
    padding: 50px 20px;
    background: url('../img/1.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: white;
}

.team-reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.team-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Team Cards Container */
.team-cards-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    z-index: 1;
}

/* Team Cards Wrapper (for infinite sliding) */
.team-cards-wrapper {
    display: flex;
    animation: team-slide 20s linear infinite;
}

/* Individual Team Card */
.team-card {
    flex: 0 0 250px;
    margin: 0 15px;
    padding: 20px;
    background: rgba(39, 39, 42, 0.8);
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Animation for Infinite Sliding */
@keyframes team-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-heading {
        font-size: 2.5em;
    }

    .team-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 480px) {
    .team-heading {
        font-size: 2em;
    }

    .team-card {
        flex: 0 0 180px;
    }
}




/* Team Reviews Section Endd */






/*Gallery */

 /* Gallery Section */
 /* .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h3 {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
} */

/* Lightbox Modal */
/* .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.lightbox.active {
    display: flex;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5em;
    }

    .header p {
        font-size: 1.2em;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1em;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/*Gallery End*/


/*Contact Us Form Start */

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
  
}

.contact-us-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-us-header h1 {
    font-size: 2.5em;
    color: #f47400;
    margin-bottom: 15px;
}
.contact-us-header p {
    color: #f47400;
    margin-bottom: 15px;
}

.contact-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-us-form {
    background: #27272a;
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-us-group {
    margin-bottom: 20px;
}

.contact-us-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}

.contact-us-group input,
.contact-us-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-us-group textarea {
    height: 120px;
}

.contact-us-submit {
    background: #2563eb;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.contact-us-submit:hover {
    background: #f47400;
}

.contact-us-info {
    background-color: #27272a;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.contact-us-info-item {
    margin-bottom: 30px;
}

.contact-us-info-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #f47400;
}

.contact-us-info-item p {
    line-height: 1.6;
}

.contact-us-social-links {
    margin-top: 30px;
}

.contact-us-social-links a {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.contact-us-social-links a:hover {
    color: #f47400;
}

.contact-us-map {
    margin-top: 40px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-us-content {
        grid-template-columns: 1fr;
    }
    
    .contact-us-header h1 {
        font-size: 2em;
    }
}
/*Contact Us Form End */