@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    /* Reduced from 1rem to 0.5rem */
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
}

/* Keep the existing navbar-brand styles for fallback */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    /* Reduced from 1.8rem */
    color: #D5F637 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.7rem;
    /* Reduced from 1rem */
    padding: 0.3rem 1rem !important;
    /* Reduced padding */
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    /* Added smaller font size */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: #D5F637;
    color: black !important;
    transform: translateY(-2px);
}

.cart-btn {
    background: transparent;
    border: 2px solid #D5F637;
    color: #D5F637;
    padding: 0.5rem 1.2rem;
    /* Increased from 0.3rem 0.8rem */
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    /* Increased from 0.9rem */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-btn:hover {
    background: #D5F637;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 246, 55, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    background: #000;
    /* Changed from blue gradient to simple black */
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-bg {
    display: none;
    /* Hide the blue SVG background overlay */
}

.carousel-inner,
#heroCarousel {
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: relative;
    height: 100vh;
    width: 100%;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active::before {
    opacity: 0.8;
}

.carousel-item:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1564769662533-4f00a87b4056?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
}

.carousel-item:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1455729552865-3658a5d39692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

.carousel-item:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1455735459330-969b65c65b1c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1965&q=80');
}

.carousel-item:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1551698618-1dfe5d97d256?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

.carousel-item:nth-child(5)::before {
    background-image: url('https://images.unsplash.com/photo-1520045892732-304bc3ac5d8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
}

.carousel-item .row {
    height: 100%;
    align-items: center;
    padding: 0 15px;
    margin: 0;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin-left: 5%;
    position: relative;
    z-index: 3;
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: hidden;
}

.hero-title .line-1 {
    display: block;
    transform: translateX(-100%);
    transition: transform 0.8s ease-out;
    transition-delay: 0.5s;
}

.hero-title .line-2 {
    display: block;
    transform: translateX(100%);
    transition: transform 0.8s ease-out;
    transition-delay: 0.7s;
}

.carousel-item.active .hero-title .line-1,
.carousel-item.active .hero-title .line-2 {
    transform: translateX(0);
}

.hero-title .highlight {
    color: #D5F637;
    text-shadow: 0 0 20px rgba(213, 246, 55, 0.5);
}

.view-more-btn {
    background: #D5F637;
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.carousel-item.active .view-more-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Navigation Dots */
.hero-nav {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-nav-dot {
    width: 35px;
    /* Reduced from 50px */
    height: 35px;
    /* Reduced from 50px */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0.7rem 0;
    /* Reduced from 1rem */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    /* Added smaller font size */
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-dot.active {
    background: #D5F637;
    color: black;
    border-color: #D5F637;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(213, 246, 55, 0.7);
    font-weight: 700;
}

/* Remove the countdown after element */
.hero-nav-dot.active::after {
    display: none;
}

/* Features Section */
.features-section {
    background: #1a2332;
    padding: 5rem 0;
    color: white;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(213, 246, 55, 0.1);
    border: 2px solid #D5F637;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #D5F637;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #D5F637;
    color: black;
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #0d0d0d;
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-video-container {
    height: 450px;
    background: url('https://www.connectingtraveller.com/images/localtip/1711392328WhatsApp%20Image%202024-03-24%20at%2022.50.50_7c591b05.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #D5F637;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(213, 246, 55, 0.4);
}

.play-button i {
    color: #000;
    font-size: 30px;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(213, 246, 55, 0.6);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
}

.section-title .highlight {
    color: #D5F637;
    margin: 0 0.5rem;
    display: inline-block;
}

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(213, 246, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: #D5F637;
    font-size: 1.8rem;
}

.about-feature-content {
    flex: 1;
    min-width: 0;
    /* Prevents flex item from overflowing */
}

.about-feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    word-wrap: break-word;
}

.about-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.read-more-btn {
    background: #D5F637;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.read-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(213, 246, 55, 0.3);
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .about-video-container {
        margin-bottom: 2.5rem;
        height: 350px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-feature-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-nav {
        display: none;
    }

    .navbar-nav {
        text-align: center;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-feature {
        flex-direction: column;
    }

    .about-feature-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .about-feature-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .about-video-container {
        height: 250px;
    }

    .about-desc {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 20px;
    }
}

/* Programs Section */
.programs-section {
    background: #1a2332;
    padding: 5rem 0;
    position: relative;
}

.programs-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.programs-title .highlight {
    color: #ff0000;
    margin: 0 0.5rem;
}

.program-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.program-icon {
    font-size: 3.5rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.program-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
    text-transform: uppercase;
}

.program-desc {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .program-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .programs-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .programs-title {
        font-size: 2rem;
    }

    .program-title {
        font-size: 1.5rem;
    }
}

/* Sports Ticker */
.sports-ticker {
    background: #D5F637;
    color: black;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 0; /* Added to ensure seamless connection with cards section */
}

.ticker-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-weight: 800 !important;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-style: italic;
    font-family: 'Inter Tight', sans-serif;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.4s;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.6s;
}

/* Coaching Sessions and Camps Section */
.coaching-section {
    background-color: #000;
    color: #fff;
    padding: 5rem 0;
    position: relative;
}

.coaching-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.coaching-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 80%;
    line-height: 1.6;
}

.join-btn {
    background-color: #c20000;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #ff0000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.coaching-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.weekly-card {
    background: url('https://play-lh.googleusercontent.com/PHE5jFnMzhaCzQkKoPUBkkWswUszB_Bbt73jSS7eBJ7SFIcQ3PjSAtpmXbuXvHJ2xN0Z') center/cover no-repeat;
}

.why-card {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 3rem 2rem;
}

.why-card::before {
    display: none;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.camps-card {
    background: url('/assets/images/IMG_9433.JPG') center/cover no-repeat;
}

.coaching-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.coaching-card-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.coaching-card-btn {
    width: 45px;
    height: 45px;
    background: #c20000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.coaching-card-btn:hover {
    background: #ff0000;
    color: #fff;
    transform: scale(1.1);
}

.learn-more-btn {
    background: #c20000;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    background-color: #000;
    padding: 5rem 0;
    color: #fff;
    position: relative;
}

.faq-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-image-container img {
    border-radius: 15px;
    max-height: 500px;
    object-fit: cover;
}

.question-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.question-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #c20000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(194, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(194, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(194, 0, 0, 0);
    }
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-btn-color: #fff;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #fff;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem;
    background-color: transparent;
    color: white;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .faq-title {
        font-size: 3rem;
    }

    .faq-image-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .accordion-button {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 2rem;
    }
}

/* Caution Tape Section */
.caution-tape-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: black;
}

#caution-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.caution-tape-section #caution-wrapper {
    position: relative;
    height: 200px;
}

.caution-mango {
    position: relative !important;
    text-align: center;
    overflow: hidden;
    font-family: impact;
    color: black;
    background-color: yellow;
    border: 2px solid black;
    transition: opacity 0.2s linear;
    pointer-events: auto;
}

.caution-mango:hover {
    opacity: 0.2 !important;
}

.caution-tape-section span {
    position: relative;
}

.caution-conveyer1 {
    animation-name: caution-shift;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes caution-shift {
    from {
        left: 0%;
    }

    to {
        left: 5%;
    }
}

.caution-conveyer2 {
    animation-name: caution-shift2;
    animation-duration: 50s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    backface-visibility: hidden;
}

@keyframes caution-shift2 {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

.caution-stripes {
    background: repeating-linear-gradient(45deg,
            yellow,
            yellow 25px,
            black 25px,
            black 50px);
}

/* Exploration Banner Section */
.exploration-banner-section {
    background-color: #ffda07;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.exploration-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.exploration-heading {
    font-size: 4.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}

.exploration-script {
    font-family: 'Brush Script MT', cursive;
    font-weight: 400;
    text-transform: none;
    font-size: 5rem;
    position: relative;
    top: 5px;
}

@media (max-width: 991px) {
    .exploration-heading {
        font-size: 3.5rem;
    }

    .exploration-script {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .exploration-heading {
        font-size: 2.8rem;
    }

    .exploration-script {
        font-size: 3.2rem;
    }
}

@media (max-width: 576px) {
    .exploration-heading {
        font-size: 2rem;
    }

    .exploration-script {
        font-size: 2.4rem;
        top: 3px;
    }
}

/* Logo Section */
.logo-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.logo-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: opacity(0.9); /* Removed grayscale, kept slight opacity */
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: opacity(1); /* Full opacity on hover */
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .logo-section-title {
        font-size: 2rem;
    }

    .logo-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .logo-section {
        padding: 3rem 0;
    }

    .logo-section-title {
        font-size: 1.8rem;
    }

    .logo-item {
        padding: 0.8rem;
    }

    .logo-item img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-section-title {
        font-size: 1.5rem;
    }

    .logo-item img {
        max-height: 40px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #111;
    padding: 5rem 0 2rem;
    color: #fff;
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #D5F637;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #D5F637;
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #D5F637;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-menu a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #D5F637;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-menu a:hover {
    color: #D5F637;
    padding-left: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: #D5F637;
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #D5F637;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1a2332;
    padding: 3.5rem 0; /* Increased from 3rem but still less than original 5rem */
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/IMG_9407.JPG') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.testimonials-title .highlight {
    color: #D5F637;
    margin: 0 0.5rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem; /* Increased from 1.5rem */
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slider {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.8rem; /* Increased from 1.5rem */
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(200, 255, 0, 0.1);
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(213, 246, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #D5F637;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 12.8em; /* 8 lines × 1.6 line-height */
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #D5F637;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem; /* Reduced from 2rem */
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(213, 246, 55, 0.5);
    color: #D5F637;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(213, 246, 55, 0.2);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .testimonials-title {
        font-size: 3rem;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonial-controls {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #111;
    padding: 5rem 0 2rem;
    color: #fff;
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #D5F637;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #D5F637;
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #D5F637;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-menu a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #D5F637;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-menu a:hover {
    color: #D5F637;
    padding-left: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: #D5F637;
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #D5F637;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}

.google-logo {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

/* Gallery Section */
.gallery-section {
    background-color: #1a2332;
    padding: 5rem 0;
    position: relative;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.gallery-title .highlight {
    color: #D5F637;
    margin: 0 0.5rem;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 250px;
    margin-bottom: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Reduced scale effect without overlay */
}

.view-all-btn {
    background: #D5F637;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-all-btn:hover {
    background: rgba(213, 246, 55, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .gallery-title {
        font-size: 3rem;
    }
    
    .gallery-item {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-item {
        height: 200px;
        margin-bottom: 1rem;
    }
}