/* Global Styles */
:root {
    --primary-color: #5a9149;
    --secondary-color: #ffd700;
    --dark-color: #32492c;
    --light-color: #f9faf5;
    --text-dark: #2d3748;
    --text-light: #777;
    --text-color: #333;
    --white: #fff;
    --black: #000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --spacing-lg: 5rem;
    --spacing-md: 3rem;
    --spacing-sm: 1.5rem;
    --border-radius: 12px;
    --arrow-color: #a28a04;
    --arrow-hover: #5a9149;

    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: black;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(16, 16, 16, 0.2), rgba(0, 0, 0, 0.2));
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInOut 24s infinite;
}
.hero-background img.active {
    opacity: 1;
}

.hero-background img:nth-child(1) { animation-delay: 0s; }
.hero-background img:nth-child(2) { animation-delay: 6s; }
.hero-background img:nth-child(3) { animation-delay: 12s; }
.hero-background img:nth-child(4) { animation-delay: 18s; }

@keyframes fadeInOut {
    0%, 100%   { opacity: 0; }
    10%, 25%   { opacity: 1; }
    35%, 100%  { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(25, 61, 28, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
    opacity: 0.8;
    display: block;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Styles */
/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 450px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }

    .hero {
        padding-top: 60px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem;
    }
}

/* Featured Activities */
.featured-activities {
    background: var(--light-color);
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 3rem; /* Add padding to prevent arrows overlapping cards */
}

.activities-carousel {
    overflow: hidden;
    width: 100%;
}

.activities-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    padding: 0.5rem 0; /* Add some vertical padding */
}

.activity-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    flex: 0 0 calc(25% - 1.125rem); /* 4 cards accounting for gap */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    margin: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover .card-title {
    opacity: 0;
    transform: translateY(20px);
}

.activity-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 2rem;
    text-align: center;
    transition: opacity 0.4s ease;
}

.activity-card:hover .card-overlay {
    opacity: 1;
}

.card-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--arrow-color);
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: white;
    color: var(--arrow-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .activity-card {
        flex: 0 0 calc(33.333% - 1rem); /* 3 cards */
        height: 550px;
    }
}

@media (max-width: 900px) {
    .carousel-wrapper {
        padding: 0 2.5rem;
    }

    .activity-card {
        flex: 0 0 calc(50% - 0.75rem); /* 2 cards */
        height: 500px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .featured-activities {
        padding: 3rem 0;
    }

    .carousel-wrapper {
        padding: 0 2rem;
    }

    .activity-card {
        flex: 0 0 100%; /* 1 card */
        height: 550px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .activity-card {
        height: 380px;
    }

    .card-title {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .btn-primary {
        width: 35px;
        height: 35px;
    }
}
/* Updated Package Section */
.packages {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    background: var(--light-text);
    color:  var(--dark-color);
    margin-bottom: 0;
    line-height: 1.7;
}

.packages-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover,
.package-card.active { /* Added .active class for mobile */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .image-container img,
.package-card.active .image-container img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%);
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover .image-overlay,
.package-card.active .image-overlay {
    opacity: 1;
}

.package-card:hover .package-title,
.package-card.active .package-title {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    color: white;
    transition: all 0.4s ease;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.package-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.package-card:hover .package-details,
.package-card.active .package-details {
    opacity: 1;
}

.package-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.package-details li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.price-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 4rem;
    height: 4rem;
    background: rgba(42, 157, 143, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 3;
}

.price {
    display: flex;
}

.price span:first-child {
    font-size: 12px;
}

.price span:last-child {
    font-size: 20px;
    font-weight: 700;
}

.time-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(38, 70, 83, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 3;
    font-size: 0.9rem;
}

.time-icon {
    fill: white;
    width: 14px;
    height: 14px;
}

.cta-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 20%);
    opacity: 0;
}

.package-card:hover .cta-container,
.package-card.active .cta-container {
    transform: translateY(0);
    opacity: 1;
}

.cta-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 200px;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .packages-gallery {
        grid-template-columns: 1fr;
    }

    .image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .packages {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .package-details li {
        font-size: 0.85rem;
    }

    /* Mobile-specific styles */
    .package-card {
        cursor: pointer;
    }

    .package-card.active {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .image-container {
        height: 300px;
    }

    .image-content {
        padding: 1.5rem;
    }

    .package-title {
        font-size: 1.3rem;
    }

    .price-tag, .time-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .time-icon {
        width: 12px;
        height: 12px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .package-details {
        width: 90%;
    }

    .package-details li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}

/* Mobile touch interaction */
@media (hover: none) {
    .package-card {
        -webkit-tap-highlight-color: transparent;
    }

    .package-card:active {
        transform: scale(0.98);
    }
}


/* WWF video */
.wwf{
    background: var(--light-color);
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-card {
    width: 100%;
    max-width: 900px;
    background: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Info Section */
.safari-section {
    background: var(--light-color);
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2e3d31;
}

.safari-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.safari-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.safari-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 8px;
}



/* why us */
.why-choose-us {
    padding: 5rem 1rem;
    background-color: #f8faf9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a2e35;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2e7d32;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50px;
}


.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.whyus-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a2e35;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6d74;
    margin-bottom: 0;
}

/* Previous styles remain the same until .highlight-card */
.highlight-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #2e7d32;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.15);
    position: relative;
    grid-column: span 1; /* Or span 2 if you want it wider */
}

.highlight-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2e7d32;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-card .card-icon {
    color: #2e7d32;
    font-size: 1.75rem;
}

.highlight-card .whyus-title {
    color: #2e7d32;
    font-size: 1.3rem;
}

.highlight-card .card-text {
    color: #1a2e35;
    font-weight: 500;
}

@media (max-width: 768px) {
    .highlight-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* Media Section */
.media-section {
    background: var(--light-color);
    padding: 5rem 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.media-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Toggle Buttons Container */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem; /* Increased gap between toggle and grid */
}

.toggle-buttons {
    display: inline-flex;
    position: relative;
    padding: 6px;
    background: #f1f3f5;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem; /* Additional gap */
}

/* Toggle Button Styles */
.toggle-btn {
    position: relative;
    background: transparent;
    color: #495057;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.toggle-btn:hover {
    color: #00796b;
}

.toggle-btn.active {
    color: #ffffff;
}

/* Sliding Background Effect */
.toggle-buttons::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.toggle-buttons.video-active::after {
    transform: translateX(100%);
}

.toggle-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.toggle-btn.active i {
    color: #ffffff;
}

/* Media Grid Layout */
.media-container {
    width: 100%;
    margin: 0 auto;
}

.media-container.hidden {
    display: none;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.media-item, .video-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
}

.media-item:hover, .video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.media-item img, .video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Icon for Videos */
.video-item::after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0.8;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000; /* High enough to be above everything */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    z-index: 10002; /* Above the lightbox background */
    position: relative;
}

.close-btn {
    position: fixed; /* Changed from absolute to fixed */
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10003; /* Highest z-index */
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Ensure body content stays behind lightbox */
body.lightbox-open {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

/* Media items - ensure proper stacking */
.media-item, .video-item {
    position: relative;
    z-index: 1;
}

/* Toggle button active state */
.toggle-btn.active {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* View More Button */
.media-btn {
    text-align: center;
    margin-top: 3rem;
}

.btn-media-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-media-small:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .media-section {
        padding: 3rem 1rem;
    }

    .toggle-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        min-width: 100px;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .toggle-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .toggle-btn {
        width: 50%;
        min-width: auto;
    }

    .media-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* About Section *//* About Section */
.about-section {
    background-color: var(--light-color);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.about-content {
    flex: 1;
    min-width: 50%;
}

.about-image {
    flex: 1;
    min-width: 50%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    aspect-ratio: 1/0.8; /* Adjust this ratio based on your image proportions */
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column-reverse;
        gap: 2.5rem;
    }

    .about-content,
    .about-image {
        min-width: 100%;
    }

    .about-image {
        aspect-ratio: 16/9; /* More suitable for mobile layouts */
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section .container {
        gap: 2rem;
    }

    .about-image {
        border-radius: calc(var(--border-radius) * 0.8);
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 2.5rem 0;
    }

    .about-section .container {
        gap: 1.5rem;
    }

    .about-image {
        border-radius: calc(var(--border-radius) * 0.6);
    }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d3c34 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.03)"><polygon points="0,0 1000,100 1000,0"/></svg>');
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-section-subtitle {
    color: #f1e9d8;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 10px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-location {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-testimonial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 250px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-testimonial:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.empty-state h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 30px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: #dad6d6;
    transition: transform 0.3s ease;
}

.slider-arrow:hover {
    transform: scale(1.2);
}

.slider-arrow svg {
    display: block;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-grow: 1;
}

/* Hide all testimonials except first two by default */
.testimonial-card {
    display: none;
}

.testimonial-card:nth-child(1),
.testimonial-card:nth-child(2) {
    display: block;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 15px;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.2s;
}


/*FAQs*/
.faq-section {
    background: var(--light-color);
    padding: 4rem 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #2f3e46;
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    background-color: #f0f4f3;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border: 1px solid #d0d9d7;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-list details:hover {
    background-color: #e6f2ed;
    border-color: #b5d2c3;
}

.faq-list summary {
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
    color: #1d3c34;
}

.faq-list summary::marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin-top: 0.75rem;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call to Action */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpeg') no-repeat center center/cover;
    color: var(--white);
    min-height: 20rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: min(90%, 700px);
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(1rem, 3vw, 1.5rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.footer-about p {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(35px, 3.5vw, 40px);
    height: clamp(35px, 3.5vw, 40px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.footer-links a {
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-contact i {
    margin-right: clamp(0.5rem, 1vw, 0.75rem);
    color: var(--accent-color);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1rem, 2vw, 1.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .cta {
        min-height: 18rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .cta {
        min-height: 16rem;
        padding: 2.5rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links li,
    .footer-contact p {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 400px) {
    .cta {
        min-height: 14rem;
    }

    .social-links {
        justify-content: center;
    }
}