/* Navbar Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand {
    padding: 0;
}

.header-logo {
    height: 60px;
    width: auto;
}

.navbar-toggler {
    border-color: var(--light);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.nav-link {
    color: var(--light) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
    font-weight: 600;
    transform: translateY(-2px);
}

.nav-link.btn.btn-primary {
    background: transparent !important;
    border: none;
    color: var(--light) !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500;
    box-shadow: none;
}

.nav-link.btn.btn-primary:hover {
    color: var(--accent) !important;
    font-weight: 600;
    transform: translateY(-2px);
}

.nav-link.btn {
    font-weight: 600;
    padding: 0.625rem 1.25rem !important;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--light);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: auto;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--light);
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 76px);
    position: relative;
    background: url('../images/hero-1.png') no-repeat center center;
    background-size: cover;
    margin-top: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

/* Welcome Section */
.welcome-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

.welcome-title {
    color: var(--primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.welcome-divider {
    position: relative;
    height: 2px;
    width: 100px;
    background-color: var(--accent);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-divider i {
    position: absolute;
    background-color: var(--light);
    color: var(--accent);
    padding: 0 1rem;
    font-size: 1.5rem;
    transform: translateY(-50%);
}

.welcome-text {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.welcome-features .feature-item {
    padding: 2rem;
    background-color: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.welcome-features .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.welcome-features .feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.welcome-features .feature-item:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.welcome-features .feature-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.welcome-features .feature-item p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Reserve Spot Section */
.reserve-spot-section {
    background: linear-gradient(120deg, #1f5a3f 0%, #2e6f4f 55%, #2a6649 100%);
    padding: 5rem 0;
    color: #f4f2e8;
}

.reserve-spot-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2.25rem;
    align-items: stretch;
}

.reserve-intro {
    padding: 1rem 0.25rem;
}

.reserve-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f3d470;
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.reserve-intro h2 {
    font-size: clamp(2rem, 4.8vw, 3.3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #ffffff;
}

.reserve-intro p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.reserve-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.reserve-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.reserve-highlights i {
    color: #20d18a;
}

.reserve-form-wrap {
    background: #f3eddf;
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.reserve-form-wrap::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(217, 203, 163, 0.35);
    pointer-events: none;
}

.reserve-form {
    position: relative;
    z-index: 1;
}

/* 5-step progress bar */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.booking-step-indicator {
    flex-shrink: 0;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    background: #e8e0d0;
    color: #8a8274;
    transition: all 0.25s ease;
}

.step-circle i {
    font-size: 0.85rem;
}

.step-line {
    flex: 1;
    max-width: 36px;
    height: 2px;
    background: #ddd4bf;
}

.booking-step-indicator.completed .step-circle {
    background: #a8c9a0;
    color: #2e6f4f;
}

.booking-step-indicator.active .step-circle {
    background: #2e6f4f;
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 111, 79, 0.35);
}

/* Step panels */
.booking-panel {
    display: none;
    animation: fadeStep 0.3s ease;
}

.booking-panel.active {
    display: block;
}

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

.booking-panel-title {
    color: #285239;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-panel-title i {
    color: #2e6f4f;
    font-size: 1rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    color: #285239;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.reserve-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 0.5rem;
}

.reserve-full {
    grid-column: 1 / -1;
}

.reserve-form .form-control,
.reserve-form .form-select {
    border: 1px solid #dbd1bd;
    border-radius: 12px;
    padding: 0.78rem 1rem;
    color: #274c35;
    background: #fff;
}

.reserve-form .form-control:focus,
.reserve-form .form-select:focus {
    border-color: #2e6f4f;
    box-shadow: 0 0 0 0.22rem rgba(46, 111, 79, 0.15);
}

.reserve-form .form-control.is-invalid,
.reserve-form .form-select.is-invalid {
    border-color: #c0392b;
}

.is-invalid-group .option-pills,
.is-invalid-group.accommodation-cards {
    outline: 2px solid rgba(192, 57, 43, 0.35);
    border-radius: 14px;
    padding: 2px;
}

/* Pill options (slot & duration) */
.option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.option-pill-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1.5px solid #c9bfaa;
    background: #fff;
    color: #285239;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.option-pill-input:checked + .option-pill {
    background: #2e6f4f;
    border-color: #2e6f4f;
    color: #fff;
}

.option-pill:hover {
    border-color: #2e6f4f;
}

/* Accommodation cards */
.accommodation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.accommodation-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.accommodation-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 16px;
    border: 2px solid #ddd4bf;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    min-height: 130px;
}

.accommodation-card .acc-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.accommodation-card strong {
    color: #285239;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.accommodation-card small {
    color: #6c6454;
    font-size: 0.78rem;
    line-height: 1.3;
}

.accommodation-input:checked + .accommodation-card {
    border-color: #2e6f4f;
    background: #eef5ef;
    box-shadow: 0 4px 14px rgba(46, 111, 79, 0.15);
}

.accommodation-card:hover {
    border-color: #2e6f4f;
}

/* Guest counters */
.guest-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e0d8c8;
    color: #285239;
    font-weight: 500;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #2e6f4f;
    background: #fff;
    color: #2e6f4f;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-btn:hover {
    background: #2e6f4f;
    color: #fff;
}

.counter-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #285239;
}

/* Review summary */
.booking-summary {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e0d8c8;
    padding: 1rem 1.15rem;
    display: grid;
    gap: 0.55rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
    color: #285239;
}

.booking-summary-row span:first-child {
    color: #6c6454;
    flex-shrink: 0;
}

.booking-summary-row span:last-child {
    font-weight: 600;
    text-align: right;
}

/* Navigation buttons */
.reserve-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.booking-back-btn {
    border: 1.5px solid #2e6f4f;
    color: #2e6f4f;
    background: transparent;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
}

.booking-back-btn:hover {
    background: #2e6f4f;
    color: #fff;
}

.booking-next-btn {
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    background: #2e6f4f;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(46, 111, 79, 0.3);
    margin-left: auto;
}

.booking-next-btn:hover {
    background: #24563d;
    color: #fff;
}

.reserve-submit-btn {
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    background: #2e6f4f;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(46, 111, 79, 0.3);
    margin-left: auto;
}

.reserve-submit-btn:hover {
    background: #24563d;
    color: #fff;
}

/* Thank you success screen */
.booking-success {
    text-align: center;
    padding: 2.5rem 1.5rem;
    animation: fadeStep 0.4s ease;
}

.booking-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #e8f5ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-success-icon i {
    font-size: 2.5rem;
    color: #2e6f4f;
}

.booking-success h3 {
    color: #285239;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.booking-success p {
    color: #6c6454;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto 1.5rem;
}

.booking-success .booking-next-btn {
    margin-left: 0;
}

.reserve-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .reserve-spot-grid {
        grid-template-columns: 1fr;
    }

    .reserve-intro {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .reserve-spot-section {
        padding: 3.5rem 0;
    }

    .reserve-form-wrap {
        padding: 1.1rem;
        border-radius: 18px;
    }

    .reserve-form-grid {
        grid-template-columns: 1fr;
    }

    .accommodation-cards {
        grid-template-columns: 1fr;
    }

    .option-pills {
        flex-direction: column;
    }

    .option-pill {
        justify-content: center;
    }

    .reserve-actions {
        flex-direction: column;
    }

    .booking-next-btn,
    .reserve-submit-btn {
        width: 100%;
        margin-left: 0;
    }

    .booking-back-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .welcome-section {
        padding: var(--spacing-lg) 0;
    }

    .welcome-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-secondary);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 83, 57, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 483px;
    height: 363px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 500px) {
    .about-image {
        width: 100%;
        height: auto;
        aspect-ratio: 483/363;
    }
}



/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* About Us Page Styles */
.about-us-hero {
    padding: 120px 0 80px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    max-height: 100%;
}

.about-title {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

.about-content-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.mission-content {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.7;
    width: 100%;
    max-width: 550px;
    box-sizing: border-box;
    text-align: left;
    margin-top: 1rem;
}

.mission-text {
    width: 100%;
    box-sizing: border-box;
}

.about-content-wrapper p {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    max-width: 100%;
}

.about-image-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.about-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    z-index: 1;
    transform: translate(20px, -20px) rotate(15deg);
    transition: transform 0.3s ease;
    pointer-events: none;
    isolation: isolate;
}

.about-image-wrapper:hover .about-shape {
    transform: translate(20px, -20px) rotate(-15deg);
}

.our-story-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.story-image-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.story-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.story-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
    z-index: 1;
    transform: translate(-20px, 20px) rotate(-15deg);
    transition: transform 0.3s ease;
}

.story-image-wrapper:hover .story-shape {
    transform: translate(-20px, 20px) rotate(15deg);
}

/* Quote Styles */

.testimonials-section {
    margin-bottom: 1rem !important;
    padding-bottom: 0 !important;
}





.quote {
    font-style: italic;
    color: var(--primary);
    font-size: 1.2rem;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--accent);
}

.story-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.story-content {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 2rem;
    position: relative;
    z-index: 3;
    background-color: var(--light);
    border-radius: 20px;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .about-us-hero {
        padding: 100px 0 60px;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-image-wrapper,
    .story-image-wrapper {
        margin: 40px auto;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper,
    .story-image-wrapper {
        max-width: 100%;
        padding: 15px;
    }
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: var(--light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-logo img {
    filter: none;
    max-height: 60px;
    width: auto;
}

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

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Image Slider */
.image-slider-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.slider-container {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    display: flex;
    width: fit-content;
    animation: slide 40s linear infinite;
    will-change: transform;
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-item {
    position: relative;
    margin: 0 1rem;
}

.slider-image {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slider-item .watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: auto;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
}

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

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Team Members Section */
.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.team-members .team-member:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 300px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.team-member-image:hover {
    transform: scale(1.05);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member-designation {
    color: var(--dark);
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-members {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-section {
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

.developer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light);
    text-align: center;
}

.developer-credit a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--light);
}
