/*
  © 2025 Andries Molatlhegi (M-Sithole Digital Agency)
  Licensed under the MIT License.
  https://opensource.org/licenses/MIT
*/



/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px; /* reduced from 35px */
    padding: 25px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional smooth opening */
  }



@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    @media (min-width: 992px) {
  .navbar .navbar-nav {
    flex-wrap: wrap;
  }
}


    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, 0.6);
    z-index: 1;
    padding: 0 15px;
}

.carousel-item video {
    object-fit: cover;
    height: 70vh;
}

@media (max-width: 768px) {
    .carousel-item video {
        height: 50vh;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Header for Inner Pages */
.page-header {
    background:  url(../img/03.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.page-header {
    background: linear-gradient(rgba(28, 114, 72, 0.492), rgba(32, 125, 80, 0.366)), url(../img/03.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


.about-img {
    position: relative;
    display: inline-block;
}

.hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-img:hover .hover-text {
    opacity: 1;
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}



/*** Fact Container ***/
.fact {
  background-color: #2e7d32;
  padding: 60px 0;
}

.fact-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.fact-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.fact-item h1,
.fact-item p {
  color: #fff;
  margin-bottom: 10px;
}


/*** Service ***/
/* Container for both sections */

  
  /* Coaching for Children section */
  .coaching-for-children {
    width: 60%;
    padding: 20px;
    position: relative;
    text-align: center;
  }
  
  .coaching-for-children h2 {
    font-size: 24px;
    color: #333;
  }
  
  .coaching-for-children p {
    font-size: 16px;
    color: #666;
  }
  
  /* Gallery section */
  .gallery {
    width: 35%;
    padding: 20px;
    position: relative;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 24px;
    color: #333;
  }
  
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  /* Styling for both sections */
  .service-item {
    position: relative;
    text-align: center;
  }
  
  .service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
  }
  
  .service-item:hover .service-img img {
    transform: scale(1);
  }
  
  .service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
  }
  
  .service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
  }
  
  .service-item .service-text h4,
  .service-item .service-text p {
    transition: .3;
  }
  
  .service-item:hover .service-text h4 {
    color: #FFFFFF;
  }
  
  .service-item:hover .service-text p {
    color: var(--light);
  }
  
  .service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
  }
  
  .service-item:hover .service-text .btn-square {
    background: var(--light);
  }
  
  .service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
  }
  
  .service-item:hover .service-text .btn {
    width: 112px;
  }
  
  /* Gallery image styling */
  .gallery-container img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
  }
  

/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


a.text-decoration-none {
  color: inherit;
}
a.text-decoration-none:hover {
  color: inherit;
}



/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}






/*******************************/
/******* Testimonial CSS *******/
/*******************************/
/* Testimonial Section */
.testimonial-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.testimonial-section .section-title {
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-section .section-subtitle {
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    background-color: #f1f1f1;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-item {
        max-width: 90%;
    }
}


.text-center {
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: -10px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}








/* Event & Booking Section Styles */
.event-booking {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

/* Video Background Styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    position: absolute;
    top: 0;
    left: 0;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Banner Styling */
.banner-container {
    position: relative;
    margin-bottom: 50px;
}

.banner {
    max-width: 100%;
    height: 50%; /* Reduce the height to half */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover; /* Ensure the image covers the entire area without distortion */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner {
        height: 25%; /* Adjust based on screen size */
    }
}

@media (max-width: 992px) {
    .banner {
        height: 20%; /* Adjust based on screen size */
    }
}

@media (max-width: 768px) {
    .banner {
        height: 15%; /* Adjust based on screen size */
    }
}

@media (max-width: 576px) {
    .banner {
        height: 12.5%; /* Adjust based on screen size */
    }
}


/* Booking Form Styling */
.booking-container {
    z-index: 10;
    position: relative;
}

.booking-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.booking-container .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.booking-container .btn-primary {
    background-color: #1ca60d;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.booking-container .btn-primary:hover {
    background-color: #0d4d0a;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .event-booking {
        padding: 50px 0;
    }

    .booking-container h1 {
        font-size: 2rem;
    }

    .video-background video {
        height: auto;
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .banner {
        margin-bottom: 30px;
    }
}
/* General Styles for the Services Section */
.services {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #f9f9f9; /* Light background color */
}

.services .container {
    max-width: 1200px; /* Container width */
}

.services .small-title {
    font-size: 14px;
    color: #333;
}

.services .text-warning {
    color: #f39c12; /* Custom color for the strong element */
}

.services h2 {
    font-size: 36px; /* Main heading size */
    margin-bottom: 40px; /* Space below heading */
    color: #333; /* Heading color */
}

.nav-tabs {
    border-bottom: none; /* Remove bottom border of tabs */
}

.nav-tabs .nav-link {
    border: 1px solid #ddd; /* Border around tab */
    border-radius: 4px 4px 0 0; /* Rounded corners on top */
    padding: 15px 20px; /* Padding inside tabs */
    color: #333; /* Text color */
    background-color: #fff; /* Tab background color */
    text-align: left; /* Align text to the left */
}

.nav-tabs .nav-link.active {
    background-color: #f39c12; /* Active tab background color */
    color: #fff; /* Active tab text color */
    border-color: #f39c12; /* Border color of active tab */
}

.nav-tabs .nav-link h3 {
    margin: 0; /* Remove margin from heading */
    font-size: 18px; /* Heading size inside tab */
}

.nav-tabs .nav-link span {
    display: block; /* Make span block for better spacing */
    font-size: 14px; /* Font size for description */
    color: #666; /* Description color */
}

.tab-content {
    padding: 20px; /* Padding inside tab content */
    background-color: #fff; /* Background color of content area */
    border: 1px solid #ddd; /* Border around content */
    border-radius: 0 0 4px 4px; /* Rounded corners on bottom */
}

.tab-content img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 4px; /* Rounded corners for images */
}

.tab-content h5 {
    font-size: 24px; /* Heading size in content */
    margin: 20px 0; /* Margin above and below heading */
    color: #333; /* Heading color */
}

.tab-content p, .tab-content ul {
    font-size: 16px; /* Font size for paragraphs and lists */
    color: #666; /* Text color */
}

.tab-content ul {
    list-style: disc; /* Bullet points for list */
    margin-left: 20px; /* Space before list */
}

.tab-content ul li {
    margin-bottom: 10px; /* Space between list items */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-tabs .nav-link {
        padding: 10px 15px; /* Reduce padding on smaller screens */
    }

    .services h2 {
        font-size: 28px; /* Smaller heading size on smaller screens */
    }
}

@media (max-width: 576px) {
    .services .container {
        padding: 0 15px; /* Padding for smaller screens */
    }

    .nav-tabs .nav-link {
        font-size: 14px; /* Smaller text size for tabs */
    }

    .tab-content h5 {
        font-size: 20px; /* Smaller heading size in content */
    }

    .tab-content p {
        font-size: 14px; /* Smaller font size for paragraphs */
    }
}
/* General Styles for the Services Section */
.services {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #f9f9f9; /* Light background color */
}

.services .container {
    max-width: 1200px; /* Container width */
}

.services .small-title {
    font-size: 14px;
    color: #333;
}

.services .text-warning {
    color: #f39c12; /* Custom color for the strong element */
}

.services h2 {
    font-size: 36px; /* Main heading size */
    margin-bottom: 40px; /* Space below heading */
    color: #333; /* Heading color */
}

.nav-tabs {
    border-bottom: none; /* Remove bottom border of tabs */
}

.nav-tabs .nav-link {
    border: 1px solid #ddd; /* Border around tab */
    border-radius: 4px 4px 0 0; /* Rounded corners on top */
    padding: 15px 20px; /* Padding inside tabs */
    color: #333; /* Text color */
    background-color: #fff; /* Tab background color */
    text-align: left; /* Align text to the left */
}

.nav-tabs .nav-link.active {
    background-color: #f39c12; /* Active tab background color */
    color: #fff; /* Active tab text color */
    border-color: #f39c12; /* Border color of active tab */
}

.nav-tabs .nav-link h3 {
    margin: 0; /* Remove margin from heading */
    font-size: 18px; /* Heading size inside tab */
}

.nav-tabs .nav-link span {
    display: block; /* Make span block for better spacing */
    font-size: 14px; /* Font size for description */
    color: #666; /* Description color */
}

.tab-content {
    padding: 20px; /* Padding inside tab content */
    background-color: #fff; /* Background color of content area */
    border: 1px solid #ddd; /* Border around content */
    border-radius: 0 0 4px 4px; /* Rounded corners on bottom */
}

.tab-content img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 4px; /* Rounded corners for images */
}

.tab-content h5 {
    font-size: 24px; /* Heading size in content */
    margin: 20px 0; /* Margin above and below heading */
    color: #333; /* Heading color */
}

.tab-content p, .tab-content ul {
    font-size: 16px; /* Font size for paragraphs and lists */
    color: #666; /* Text color */
}

.tab-content ul {
    list-style: disc; /* Bullet points for list */
    margin-left: 20px; /* Space before list */
}

.tab-content ul li {
    margin-bottom: 10px; /* Space between list items */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-tabs .nav-link {
        padding: 10px 15px; /* Reduce padding on smaller screens */
    }

    .services h2 {
        font-size: 28px; /* Smaller heading size on smaller screens */
    }
}

@media (max-width: 576px) {
    .services .container {
        padding: 0 15px; /* Padding for smaller screens */
    }

    .nav-tabs .nav-link {
        font-size: 14px; /* Smaller text size for tabs */
    }

    .tab-content h5 {
        font-size: 20px; /* Smaller heading size in content */
    }

    .tab-content p {
        font-size: 14px; /* Smaller font size for paragraphs */
    }
}

/* Tab Navigation */
.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
    border: none;
    padding: 15px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Initial shadow */
}

.nav-tabs .nav-link:hover {
    background-color: #f1f1f1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.nav-tabs .nav-link.active {
    background-color: #f7f7f7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Deeper shadow for active tab */
    z-index: 1; /* Ensure the shadow appears behind the active tab */
}

/* Tab Content */
.tab-content {
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Adding Shadow on Active Tab */
.tab-content .tab-pane {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content .tab-pane.show.active {
    opacity: 1;
    transform: scale(1);
}




/* Images */
.tab-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}


.team-building-section {


  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }

  #team-building {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    text-align: center;
  }

  .sub-title {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
  }

  .divider {
    height: 2px;
    background-color: #ddd;
    margin: 3rem 0;
  }

  .section-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .focus-areas {
    list-style-type: disc;
    margin-left: 2rem;
    font-size: 1.1rem;
  }

  .grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 3rem;
  }

  .activity-category {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .activity-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .activity-category h4 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 1rem;
  }

  .activity-category ul {
    list-style-type: none;
    padding: 0;
    font-size: 1rem;
    color: #555;
  }

  .cta-buttons {
    text-align: center;
    margin-top: 2rem;
  }

  .cta-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s;
  }

  .cta-btn:hover {
    background-color: #cc5200;
  }

  @media (max-width: 768px) {
    .grid-container {
      flex-direction: column;
      align-items: center;
    }

    .activity-category {
      width: 90%;
      margin-bottom: 2rem;
    }
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .col-md-4 {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
  
  @media (max-width: 767px) {
    .col-md-4 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
}





  .info-block {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.info-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
  filter: brightness(60%);
}

.info-block:hover img {
  transform: scale(1.05);
  filter: brightness(40%);
}

.info-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  background: rgba(115, 217, 202, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.info-block:hover .overlay {
  opacity: 1;
}

.info-block h5 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff; /* Ensures it’s white by default */
}


.info-block p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}




/* Title and Text */
.tab-content h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tab-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.tab-content ul {
    list-style: disc;
    margin-left: 20px;
}

.tab-content ul li {
    margin-bottom: 10px;
}









/* Tab Navigation */
.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Initial shadow */
    margin-bottom: 10px; /* Space between tabs */
}

.nav-tabs .nav-link:hover {
    background-color: #f1f1f1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.nav-tabs .nav-link.active {
    background-color: #f7f7f7;
    border-left: 4px solid #00ff48; /* Color indicator for the selected tab */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Deeper shadow for active tab */
    z-index: 1; /* Ensure the shadow appears behind the active tab */
}









/* Tab Content */
.tab-content {
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}










/* Adding Shadow on Active Tab */
.tab-content .tab-pane {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content .tab-pane.show.active {
    opacity: 1;
    transform: scale(1);
}








/* Images */
.tab-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}










/* Title and Text */
.tab-content h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tab-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.tab-content ul {
    list-style: disc;
    margin-left: 20px;
}

.tab-content ul li {
    margin-bottom: 10px;
}




.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-right 30s linear infinite;
}

.logo-item {
  flex: 0 0 150px;
  margin: 0 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Animation */
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}










/* Styling for Review Section */
.reviews {
    position: relative;
    padding: 100px 0;
    color: white;
}

.reviews .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.reviews #bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.reviews .banner-container {
    margin-bottom: 50px;
}

.reviews .carousel-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.reviews .carousel-item {
    text-align: center;
}

.reviews .carousel-item h5 {
    font-size: 24px;
    margin-bottom: 15px;
}

.reviews .carousel-item p {
    font-size: 18px;
}

.booking-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 15px;
}

