/* --- Feedback Section Modern Design --- */

/* 1. Section Background Split */
.feedback-modern-bg {
    background: linear-gradient(90deg, #f3f4f6 0%, #f3f4f6 55%, #ffffff 55%, #ffffff 100%);
}

/* 2. Feedback Badge (Gold Text) */
.feedback-badge {
    color: #16a085;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
}

/* 3. Star Rating Icons */
.rating-box {
    gap: 20px;
}

.rating-box .stars i {
    color: #16a085;
    font-size: 18px;
    margin-right: 3px;
}

/* 4. The Form Card (Shadow & Border) */
.feedback-form-card {
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    background-color: #ffffff;
    border-radius: 7px;
}

/* 5. Input Fields Styling */
.feedback-input {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    transition: 0.3s;
}

/* Height specific for Select and Textarea */
.feedback-input.select-h {
    height: 55px;
}

.feedback-input.textarea-h {
    height: 120px;
    resize: none;
}

/* Focus Effect */
.feedback-input:focus {
    border-color: #ccc;
    background: #ffffff;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .feedback-modern-bg {
        background: #f3f4f6;
        /* Solid color on mobile */
    }

    .po-join-team {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

/* Section Background */
.join-page-section {
    background-color: #f4f6f8;
    /* Soft gray/blue tint */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* LEFT SIDE: Text Content */
.join-content-side {
    padding-right: 50px;
}

.join-sub-badge {
    display: inline-block;
    background-color: #16a085;
    /* Light orange bg */
    color: #ffffff;
    /* Orange text */
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.join-main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.join-desc {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Features List */
.join-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #222222;
}

.join-features i {
    height: 25px;
    width: 25px;
    background-color: #1abc9c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
}

/* RIGHT SIDE: Form Card */
.join-form-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffffff;
}

.custom-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.custom-input {
    height: 50px;
    background-color: #f8f9fa;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding-left: 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.1);
    outline: none;
}

.btn-submit-pro {
    width: 100%;
    height: 55px;
    border-radius: 80px;
    background: linear-gradient(90deg, #376d1e 0%, #0f9cb3 100%);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-pro:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .join-content-side {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .join-features {
        display: inline-block;
        text-align: left;
    }
}


/* =========================================
   AWARDS SECTION STYLES (No Hover Version)
   ========================================= */

/* --- 1. Color Variables --- */
:root {
    /* Your Brand Colors */
    --brand-green: #28a745;
    --brand-gold: #ffc107;
    --bg-light-green: #e8f5e9;

    /* Text & Backgrounds */
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --card-bg: #ffffff;
    --border-color: #f0f0f0;
}

/* --- 2. Section Layout --- */
.awards-recognition {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* --- 3. Grid System --- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- 4. Card Styling (Static) --- */
.award-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    position: relative;
    /* Static shadow so it doesn't look too flat */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* --- 5. Icon Styles (Static) --- */
.award-icon {
    min-width: 60px;
    height: 60px;
    background: var(--bg-light-green);
    /* Light Green Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    border: 2px solid transparent;
}

.award-icon i {
    font-size: 24px;
    color: #16a085;
    /* Green Icon */
}

/* --- 6. Typography --- */
.award-details {
    flex: 1;
}

.award-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.award-issuer {
    font-size: 13px;
    font-weight: 700;
    color: #16a085;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.award-description {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* --- 7. Responsive Adjustments --- */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .award-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Explore Seections */
/* =========================================
   EXPLORE PAGE STYLES (Redesigned)
   ========================================= */

/* --- Typography Helpers --- */
.explore-subtitle {
    color: #16a085;
    /* Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.explore-title {
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    /* Dark Green */
    margin-bottom: 0;
}

/* --- 1. HERO SEARCH SECTION --- */
.explore-hero-search {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=1421&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    margin-top: -5px;
}

.hero-subtitle {
    display: block;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #16a085;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.search-glass-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 50px;
    display: inline-block;
    width: 100%;
    max-width: 800px;
}

.search-form-flex {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.search-input-group i {
    color: #0b2e1e;
    font-size: 18px;
    margin-right: 15px;
}

.search-input-group input,
.search-input-group select {
    border: none;
    width: 100%;
    outline: none;
    font-size: 16px;
    color: #333;
}

.border-left {
    border-left: 1px solid #eee;
}

.search-btn-wrapper button {
    background: #0b2e1e;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn-wrapper button:hover {
    background: #16a085;
    color: #0b2e1e;
}

/* --- 2. VISUAL CATEGORIES (Circles) --- */
.explore-visual-cats {
    background: #ffffff;
}

.visual-cat-item {
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.cat-img-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #eee;
    /* Outer ring */
    transition: 0.3s;
}

.cat-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-cat-item h5 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
}

.visual-cat-item:hover .cat-img-circle {
    box-shadow: 0 0 0 3px #004541;
    /* Gold ring on hover */
    transform: scale(1.05);
}

.visual-cat-item:hover .cat-img-circle img {
    transform: scale(1.1);
}

.visual-cat-item:hover h5 {
    color: #0b2e1e;
}

/* --- 3. POPULAR DESTINATIONS (Previous Grid - No Changes Needed) --- */
.bg-light-pattern {
    background-color: #fdfbf7;
}

.view-all-btn {
    color: #0b2e1e;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #16a085;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dest-card-lg {
    height: 100%;
    min-height: 400px;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    z-index: 2;
}

.dest-badge {
    background: #16a085;
    color: #0b2e1e;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.dest-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dest-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.dest-link {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 40px;
    height: 40px;
    background: #F6E9E3;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.dest-link:hover {
    background: #FA793D;
    color: #0b2e1e;
}

/* --- 4. SPOTLIGHT MOSAIC --- */
.spotlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spotlight-lg {
    height: 500px;
}

.spotlight-sm {
    height: 240px;
    /* Half of large - gap */
}

.spotlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spotlight-card:hover img {
    transform: scale(1.05);
}

.spotlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

.spotlight-tag {
    background: #16a085;
    color: #0b2e1e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.spotlight-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.spotlight-sm .spotlight-content h3 {
    font-size: 20px;
}

.spotlight-btn {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #0b2e1e;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.spotlight-btn:hover {
    background: #16a085;
}

.text-link {
    color: #16a085;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
}

/* --- 5. VLOG SECTION --- */
.latest-vlog-section {
    padding: 60px 0 100px;
}

.vlog-box {
    border-radius: 20px;
    padding: 50px;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.vlog-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vlog-desc {
    color: #373737;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.vlog-btn {
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}



.video-thumbnail-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    transition: 0.3s;
}

.play-button-overlay:hover {
    background: #16a085;
    border-color: #16a085;
    color: #0b2e1e;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .search-form-flex {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }

    .search-input-group {
        width: 100%;
        background: #fff;
        margin-bottom: 10px;
        border-radius: 30px;
    }

    .search-btn-wrapper {
        width: 100%;
    }

    .search-btn-wrapper button {
        width: 100%;
    }

    .border-left {
        border-left: none;
    }

    .vlog-box {
        padding: 30px;
    }
}


/* =========================================
   ABOUT PAGE
   ========================================= */

/* --- Layout & Spacing --- */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-content-wrapper {
    padding-right: 50px;
}

/* --- Typography --- */
.about-subtitle {
    display: inline-block;
    color: #16a085;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: left;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
}

.highlight-text {
    font-weight: 600;
    color: #1a1a1a;
    border-left: 4px solid var(--brand-accent, #16a085);
    padding-left: 15px;
    margin: 30px 0;
    font-style: italic;
}

/* --- Image Styling --- */
.about-img-area {
    position: relative;
    z-index: 1;
}

.about-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Decorative Shape behind image */
.about-img-area::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--brand-accent, #07fbff);
    border-radius: 20px;
    z-index: -1;
}

/* --- Stats Counter (Optional visual flair) --- */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-accent, #16a085);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-img-area::before {
        display: none;
        /* Hide decorative border on mobile */
    }
}

/* --- Page Spacing --- */
.heritage-section {
    padding: 80px 0;
    background-color: #fff;
}

/* --- The Single Hero Image --- */
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft modern shadow */
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 500px;
}

.hero-image-wrapper:hover {
    transform: translateY(-5px);
    /* Subtle lift effect on hover */
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Right Side Content --- */
.heritage-details {
    padding-left: 50px;
    /* Space between image and text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.category-badge {
    display: inline-block;
    background-color: #16a085;
    /* Light green bg */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.details-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
}

.details-desc {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Modern Icon List */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns for details */
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    background-color: #f4f4f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27ae60;
    font-size: 18px;
}

.feature-text h6 {
    margin: 0;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.feature-text p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* CTA Button */
.btn-explore {
    background: linear-gradient(90deg, #376d1e 0%, #0f9cb3 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-explore:hover {
    background-color: transparent;

}

/* --- Bottom Gallery --- */
.gallery-section {
    margin-top: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .heritage-details {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-image-wrapper {
        min-height: 350px;
    }

    .details-title {
        font-size: 36px;
    }
}

/* =========================================
   EDITORIAL SERVICE STYLE (Zig-Zag Layout)
   ========================================= */

/* --- Variables --- */
:root {
    --gold: #16a085;
    --dark-green: #0b2e1e;
    --text-black: #1a1a1a;
    --text-gray: #555;
    --bg-white: #ffffff;
}

.service-editorial-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

/* --- Typography --- */
.editorial-subtitle {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.editorial-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 60px;
}

/* --- Row Spacing --- */
.service-row {
    margin-bottom: 100px;
    /* Space between each service section */
}

/* Remove bottom margin from the last row */
.service-row:last-child {
    margin-bottom: 0;
}

/* --- Image Styling --- */
.service-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-img-wrapper:hover img {
    transform: scale(1.05);
}

/* --- Floating Number Badge (01, 02...) --- */
.service-number {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    color: var(--dark-green);
    font-size: 24px;
    font-weight: 800;
    padding: 15px 30px;
    border-top-left-radius: 20px;
}

/* --- Content Styling --- */
.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* --- Bullet List Styling --- */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 15px;
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .service-row {
        margin-bottom: 60px;
        text-align: center;
        /* Center align on mobile */
    }

    /* On mobile, remove the Zig-Zag. Stack everything normally */
    .service-row.flex-row-reverse {
        flex-direction: row !important;
        /* Force normal order */
    }

    .ps-lg-5,
    .pe-lg-5 {
        padding: 0 !important;
        /* Remove side padding on mobile */
    }

    .service-content {
        margin-top: 30px;
    }

    .service-list li {
        justify-content: center;
        /* Center list items on mobile */
    }
}

/* Rural India Photo */
/* --- Featured Section --- */
.rural-section {
    padding: 100px 0;
    background-color: var(--rural-bg);
}

.rural-subtitle {
    display: block;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.rural-title {
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
}

/* --- Grid Layout --- */
.rural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- Card Styling --- */
.rural-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px 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);
}

.rural-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Area */
.rural-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.rural-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rural-card:hover .rural-card__image {
    transform: scale(1.1);
}

.rural-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand-gold);
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Content Area */
.rural-card__content {
    padding: 25px;
}

.rural-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.rural-card__text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.rural-btn {
    text-decoration: none;
    color: var(--earth-brown);
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rural-btn:hover {
    color: var(--brand-green);
    gap: 12px;
    /* Moves arrow slightly */
}

/* --- About Guide Section --- */
.rural-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.guide-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.guide-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Floating Badge on Profile Pic */
.guide-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guide-badge .count {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.guide-badge .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.guide-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.guide-features {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #16a085;
}

.feature-item i {
    color: #16a085;
    font-size: 18px;
}

.rural-btn-dark {
    background: linear-gradient(90deg, #376d1e 0%, #0f9cb3 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.rural-btn-dark:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .rural-grid {
        grid-template-columns: 1fr;
    }

    .guide-features {
        flex-direction: column;
        gap: 15px;
    }
}


/* --- Section Layout --- */
.news-section {
    padding: 100px 0;
    background-color: var(--news-bg);
}

.news-subtitle {
    display: block;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-header);
    margin-bottom: 20px;
}

.news-desc {
    color: var(--text-body);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* --- News Card --- */
.news-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Image Wrapper */
.news-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-box img {
    transform: scale(1.05);
}

/* Date Badge */
.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-gold);
}

/* Category Tag */
.news-category {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--brand-gold);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Content Area */
.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.news-meta i {
    color: var(--brand-gold);
}

.news-content h3 {
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content h3 a {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-header);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card:hover h3 a {
    color: var(--brand-gold);
}

.news-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes button down */
}

/* Link Button */
.news-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    color: var(--brand-gold);
    gap: 10px;
}

/* --- Pagination --- */
.news-pagination {
    display: inline-flex;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-green);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--brand-green);
    color: var(--brand-gold);
    border-color: var(--brand-green);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .news-title {
        font-size: 32px;
    }
}

.privacy-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.privacy-card h3 {
    margin-top: 35px;
    font-size: 22px;
    color: #0f172a;
}

.privacy-card p,
.privacy-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.privacy-card ul {
    padding-left: 20px;
}

.last-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.privacy-contact-btn {
    margin-top: 40px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(90deg, #376d1e 0%, #0f9cb3 100%);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}


/* Itnenary Section */
/* Section Spacing */
.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

/* Custom Color Class for Icons */
.text-custom {
    color: #16a085 !important;
}

/* Left Side Styling */
.ls-2 {
    letter-spacing: 2px;
}

/* Day Timeline Border Changed to #16a085 */
.day-item {
    border-left: 3px solid #16a085;
    padding-left: 20px;
}

/* Right Side Form Wrapper */
.booking-wrapper {
    border: 1px solid #16a085;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

/* Blue Header */
.booking-header {
    background-color: #16a085;
    padding: 15px;
}

.booking-body {
    padding: 20px;
}

/* Custom Input Style */
.form-control-line {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-line:focus {
    outline: none;
    border-bottom: 2px solid #16a085;
}

.border-bottom-only {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
}

.form-label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.fs-14 {
    font-size: 14px;
}

/* Submit Button Changed to #16a085 */
.btn-submit {
    background-color: #16a085;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #138a72;
    /* Slightly darker shade for hover */
    color: #fff;
}

/* Start History section */

.timeline-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fc;
    padding: 60px 0;
    color: #333;
}

/* --- Top Section Layout --- */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.left-column {
    flex: 1;
    max-width: 50%;
}

.history-tag {
    display: inline-block;
    background-color: #fee2e2;
    color: #16a085;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.timeline-heading {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 0;
}

.year-highlight {
    color: #16a085;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    transition: opacity 0.3s ease;
}

.timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    transition: opacity 0.3s ease;
}

.right-column {
    flex: 1;
}

.image-container {
    overflow: hidden;
    border-radius: 12px;
    height: 350px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

/* --- Timeline Navigation Bar --- */
.timeline-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
    margin-top: 40px;
}

/* The grey line */
.timeline-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: #e5e7eb;
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    text-align: center;
    background-color: #f8f9fc;
    padding: 0 20px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item .year-label {
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

/* Active State */
.timeline-item.active .year-label {
    color: #16a085;
    font-size: 24px;
}

/* Buttons */
.arrow-btn {
    background-color: #fee2e2;
    color: #FA793D;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s;
}

.arrow-btn:hover {
    background-color: #FA793D;
    color: #fff
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .left-column {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .timeline-nav::before {
        display: none;
    }

    .timeline-nav {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

/* End history section */

/* FAQ */
/* static/css/faq.css */

/* static/css/faq_modern.css */

.faq-section-modern {
    padding: 80px 0;
    /* Previously var(--bg-light) */
    background-color: #f9fafb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container-modern {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header Area --- */
.faq-header-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.faq-tag-modern {
    display: inline-block;
    background-color: #16a085;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.faq-heading-modern {
    font-size: 42px;
    font-weight: 800;
    /* Previously var(--primary-color) */
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-description-modern {
    font-size: 18px;
    /* Previously var(--secondary-color) */
    color: #4b5563;
    line-height: 1.7;
}

/* --- Modern Accordion Styles --- */
.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    /* Previously var(--white) */
    background-color: #ffffff;
    border-radius: 16px;

    /* Previously var(--shadow-sm) */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

    border: 1px solid transparent;
    overflow: hidden;

    /* Previously var(--transition-smooth) */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state */
.accordion-item:hover {
    /* Previously var(--shadow-md) */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: #e5e7eb;
    transform: translateY(-2px);
}

/* Active State Styling */
.accordion-item.active {
    /* Previously var(--shadow-md) */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Previously var(--accent-color) */
    border-color: #16a34a;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    /* Previously var(--primary-color) */
    color: #111827;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header {
    /* Previously var(--accent-color) */
    color: #16a34a;
}

.accordion-icon {
    font-size: 16px;
    color: #9ca3af;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Rotate and color icon when active */
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    /* Previously var(--accent-color) */
    color: #16a34a;
}

/* The sliding body container */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-text-container {
    padding: 0 25px 30px 25px;
}

.accordion-text {
    /* Previously var(--secondary-color) */
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.accordion-text+.accordion-text {
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-heading-modern {
        font-size: 32px;
    }

    .accordion-header {
        padding: 20px;
        font-size: 16px;
    }

    .accordion-text-container {
        padding: 0 20px 25px 20px;
    }
}

/* END FAQ */

/* static/css/activities.css */

.activities-page {
    padding: 80px 0;
    background-color: #f8f9fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.activities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.activities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.activities-badge {
    display: inline-block;
    background: #16a085;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.activities-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.2;
}

.activities-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Grid Layout */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Individual Card Design */
.activity-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* Card Hover Effect */
.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e5e7eb;
}

/* Icon Box */
.activity-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon-box {
    transform: scale(1.1);
}

/* Specific Colors for Icons */
.icon-blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.icon-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.icon-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.icon-teal {
    background-color: #ccfbf1;
    color: #0d9488;
}

.icon-yellow {
    background-color: #fef9c3;
    color: #ca8a04;
}

.icon-rose {
    background-color: #ffe4e6;
    color: #e11d48;
}

.icon-indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

/* Text Content */
.activity-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.activity-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Optional "Read More" link style */
.activity-link {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.activity-card:hover .activity-link {
    opacity: 1;
    transform: translateY(0);
}

/* static/css/terms.css */

.terms-section {
    padding: 80px 0;
    background-color: #f9fafb;
    /* Very light grey background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #374151;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Area */
.terms-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.terms-badge {
    display: inline-block;
    background-color: #16a085;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.terms-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.1;
}

.terms-updated {
    font-size: 16px;
    color: #6b7280;
}

/* Layout: Sidebar + Content */
.terms-layout {
    display: flex;
    gap: 60px;
    position: relative;
}

/* Sticky Sidebar Navigation */
.terms-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.terms-nav {
    position: sticky;
    top: 100px;
    /* Sticks 100px from top of window */
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.terms-nav-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.terms-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav-item {
    margin-bottom: 10px;
}

.terms-nav-link {
    display: block;
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.terms-nav-link:hover {
    background-color: #f3f4f6;
    color: #111827;
}

/* Main Content Area */
.terms-content {
    flex: 1;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.terms-block {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
    /* Smooth scroll offset */
}

.terms-block:last-child {
    margin-bottom: 0;
}

.terms-block-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.terms-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4b5563;
}

.terms-list {
    margin-bottom: 15px;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Box at Bottom */
.contact-highlight {
    background-color: #f8fafc;
    border-left: 4px solid #16a085;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .terms-layout {
        flex-direction: column;
    }

    .terms-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    .terms-nav {
        position: static;
        /* Unstick on mobile */
    }

    .terms-content {
        padding: 30px;
    }
}

/* static/css/experience.css */

.experience-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.experience-image-wrapper {
    flex: 1;
    position: relative;
}

.experience-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 0px 0px #f0fdf4;
    border: 1px solid #e5e7eb;
}

.experience-content {
    flex: 1;
}

.experience-badge {
    display: inline-block;
    background: #16a085;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.experience-title {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 25px 0;
    line-height: 1.1;
}

.experience-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
    text-align: justify;
}


.experience-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #16a085;
}

.highlight-icon {
    font-size: 20px;
    color: #16a085;
    min-width: 24px;
}

.highlight-text {
    font-size: 15px;
    font-weight: 600;
    color: #282b30;
    margin: 0;
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .experience-container {
        flex-direction: column;
        gap: 50px;
    }

    .experience-image-wrapper {
        width: 100%;
        text-align: center;
    }

    .experience-img {
        box-shadow: 10px 10px 0px 0px #f0fdf4;
        /* Smaller shadow on mobile */
        max-height: 400px;
    }

    .experience-title {
        font-size: 32px;
    }
}


/* Start Support section */

.support-section {
    padding: 100px 0;
    background-color: #f3f4f6;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.support-info {
    flex: 1;
}

.support-tag {
    display: inline-block;
    color: #ffffff;
    /* Green */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    background: #16a085;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.support-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.1;
}

.support-desc {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #16a085;
}

.info-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0fdf4;
    color: #16a085;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 5px 0;
}

.info-content p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.info-link {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
}

.support-form-wrapper {
    flex: 1.2;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #16a085;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #376d1e 0%, #0f9cb3 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background-color: #15803d;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .support-container {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
        /* Stack inputs on mobile */
    }

    .full-width {
        grid-column: span 1;
    }

    .support-form-wrapper {
        padding: 25px;
    }
}

/* static/css/mosaic_gallery.css */

.portfolio-block {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.portfolio-content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header Section --- */
.portfolio-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-headline {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.intro-subtext {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Mosaic (Masonry) Layout --- */
.vertical-mosaic {
    /* Creates the staggered column layout */
    column-count: 3;
    column-gap: 24px;
}

.mosaic-tile {
    /* Prevents breaking inside columns */
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    border-radius: 16px;
    /* Slightly rounder corners */
    overflow: hidden;
    background-color: #f3f4f6;
    /* Soft shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    backface-visibility: hidden;
    /* Fixes flickering on some browsers */
}

.mosaic-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 5;
}

.tile-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-tile:hover .tile-image {
    transform: scale(1.08);
    /* Smoother zoom */
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .vertical-mosaic {
        column-count: 2;
        /* 2 Columns on Tablets/Laptops */
    }
}

@media (max-width: 600px) {
    .vertical-mosaic {
        column-count: 1;
        /* 1 Column on Mobile */
    }
}


/* reviews.css */

.reviews-container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* --- Form Section --- */
.review-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #22c55e;
    /* Green focus */
    outline: none;
}

.btn-submit {
    background-color: #22c55e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #16a34a;
}

/* --- Reviews Grid --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Style for uploaded reviewer photos */
.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #16a085;
    margin-right: 12px;
}

/* Style for the initial fallback circle */
.avatar-circle {
    width: 50px;
    height: 50px;
    background-color: #16a085;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Layout for the reviewer name and country */
.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-name {
    line-height: 1.2;
    font-weight: 600;
    color: #000000;
}

.star-rating {
    color: #ffc107;
    /* Gold */
    font-size: 14px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.review-date {
    display: block;
    font-size: 12px;
    color: #999;
    text-align: right;
}

/* Star Rating Logic */
.star-rating-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 20px;
}

.star-rating-box input {
    display: none;
}

.star-rating-box label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-box input:checked~label,
.star-rating-box label:hover,
.star-rating-box label:hover~label {
    color: #ffc107;
    /* Gold */
}


/* Container styling */
/* Container Layout */
/* 1. The Main Unified Card */
.join-form-card {
    background: #fff;
    /* White Background */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Nice floating shadow */
    overflow: hidden;
}

/* 2. Flex wrapper to put Text Left and Grid Right */
.card-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 3. Text Section Styling */
.text-section {
    flex: 0 0 35%;
    /* Takes up 35% of width */
    padding-right: 15px;
}

.text-section h3 {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 5px;
}

.text-section p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* 4. Grid Styling */
.social-grid {
    flex: 1;
    /* Takes up remaining space */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columns */
    gap: 12px;
}

/* 5. Individual Button Styling */
.social-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    /* Light Grey to stand out on white card */
    padding: 10px 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-item:hover {
    background: #fff;
    border-color: #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Icon Circles */
.icon-box {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Brand Colors */
.fb-bg {
    background-color: #3b5998;
}

.tw-bg {
    background-color: #1da1f2;
}

.yt-bg {
    background-color: #ff0000;
}

.insta-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Text Metrics */
.meta {
    display: flex;
    flex-direction: column;
}

.meta .count {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.meta .type {
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-top: 2px;
}

/* 6. Mobile Responsiveness */
@media (max-width: 576px) {
    .card-content-wrapper {
        flex-direction: column;
        /* Stack vertically on mobile */
        text-align: center;
    }

    .text-section {
        margin-bottom: 20px;
        padding-right: 0;
    }

    .text-section h3 br {
        display: none;
        /* Remove line break on mobile */
    }

    .social-grid {
        width: 100%;
        /* Full width grid */
    }
}