:root {
    --top-bar-height: 46px;
}

.po-header-area {
    left: 0;
    top: 60px;
    z-index: 999;
    width: 100%;
    position: absolute;
}

/*==================================
    Top Bar Area CSS
====================================*/
.tracking-widest {
  letter-spacing: 0.1em;
}

.top-bar-area {
    padding: 10px 0;
    font-size: 14px;
    color: #ecf0f1;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    transition: .3s;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    position: absolute;
}

.top-bar-contact a,
.top-bar-contact span {
    color: #ecf0f1;
    margin-right: 25px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-contact a:hover {
    color: #ffffff;
    /* Brighter color on hover */
}

.top-bar-contact i {
    margin-right: 8px;
    color: #ecf0f1;
    /* An accent color for icons, change as you like */
}

.top-bar-social {
    text-align: right;
}

.top-bar-social ul.social-icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-bar-social ul.social-icon li {
    display: inline-block;
    margin-left: 15px;
}

.top-bar-social ul.social-icon li a {
    color: #ecf0f1;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.top-bar-social ul.social-icon li a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* General Body & Section Styles */
body {
    background-color: #f4f7f6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

.bio-section {
    padding: 60px 20px;
}

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

/* The Main Biography Card */
.bio-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.bio-image-wrapper {
    flex: 0 0 35%;
}

.bio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-content {
    flex: 1;
    padding: 40px;
}

.bio-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.bio-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #16a085;
    margin: 5px 0 25px 0;
    font-style: italic;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Highlights Section (Awards & Roles) */
.highlights-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    border-bottom: 2px solid #16a085;
    padding-bottom: 8px;
    display: inline-block;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}

.highlights-list i {
    font-size: 1.2rem;
    color: #16a085;
    margin-right: 15px;
    margin-top: 4px;
    width: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 820px) {
    .bio-card {
        flex-direction: column;
    }

    .bio-image-wrapper {
        flex-basis: auto;
        height: 400px;
        /* Fixed height for the image on mobile */
    }

    .bio-content {
        padding: 30px;
    }

    .bio-name {
        font-size: 2.2rem;
    }
}

/* ============================================ */
/* Awards & Recognition Styling          */
/* ============================================ */

.awards-recognition {
    padding: 60px 0;
    background-color: var(--awards-bg-color);
    font-family: 'Arial', sans-serif;
}

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

.awards-recognition .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 50px;
    position: relative;
}

.awards-recognition .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

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

.award-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.award-icon {
    font-size: 3rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.award-details {
    flex-grow: 1;
}

.award-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin: 0 0 5px 0;
}

.award-issuer {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-text-color);
    margin: 0 0 15px 0;
    font-style: italic;
}

.award-description {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .awards-recognition {
        padding: 40px 0;
    }

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

    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .award-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .award-icon {
        margin-top: 0;
    }
}

/* Award css end */

/* --- Newspaper Clip Section --- */


.newspaper-section {
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.clippings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
}

.clipping-card {
    background-color: #ffffff;
    padding: 25px 30px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clippings-grid .clipping-card:nth-child(odd) {
    transform: rotate(-1.5deg);
}

.clippings-grid .clipping-card:nth-child(even) {
    transform: rotate(1deg);
}

.clipping-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.clipping-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clipping-source {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.clipping-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.clipping-excerpt {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.clipping-link {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    background-image: #0056b3;
    font-weight: 500;
    transition: color 0.2s ease;
}

.clipping-link:hover {
    color: #003d80;
    text-decoration: underline;
}

/* Gallery Container - uses CSS Grid for a responsive layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 20px auto;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.photo-card:hover {
    transform: scale(1.03);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.photo-card:hover .photo-info {
    opacity: 1;
    transform: translateY(0);
}

.photo-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.photo-info p {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
}

/* Photo css end */
/*
========================================
VIDEO GALLERY STYLES
========================================
*/

.video-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    padding: 25px;
    max-width: 1400px;
    margin: 20px auto;
}

.video-card {
    background-color: #2c2c2c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #f0f0f0;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);/
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(4px);
}

.play-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transform: translateX(2px);
}

.video-card:hover .play-icon {
    background-color: #16a085;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px 20px 20px;
}

.video-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.video-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cccccc;
}

/* Container: Creates a grid layout (3 columns on desktop) */
.video-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card: Styling the box */
.video-card {
    display: block;
    /* Makes the anchor tag a block */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    /* Removes underline from text */
    transition: transform 0.3s ease;
    color: inherit;
}

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

/* Thumbnail Wrapper: Forces a specific height */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    /* <--- This restricts the height */
    overflow: hidden;
    background-color: #000;
}

/* Image: Forces the image to fit the wrapper */
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crops the image nicely without stretching */
    opacity: 0.9;
}

/* Play Icon: Centers it over the image */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

/* Text Area */
.video-info {
    padding: 20px;
}

.video-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.video-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/*
========================================
VIDEO GALLERY STYLES END
========================================
*/
/* Wildlifet css Start */
html {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

header {
    /*background: rgba(20, 20, 20, 0.7);*/
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2E7D32;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #2E7D32;
    transform: translateY(-3px);
}

/* Wildlife */
/* =========================================
   WILDLIFE SECTION STYLES (No Variables)
   ========================================= */

/* --- Section Layout --- */
.wildlife-section {
    padding: 100px 0;
    color: #ffffff;
}

.wild-subtitle {
    display: block;
    color: #16a085;
    /* Gold */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wild-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000000;
    /* White */
}

.wild-desc {
    color: #272727;
    /* Light Gray */
    max-width: 600px;
    margin: 0 auto;
}

/* --- The Wild Card --- */
.wild-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wild-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #16a085;
    /* Gold Border on Hover */
}

/* Image Box */
.wild-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.wild-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wild-card:hover .wild-img-box img {
    transform: scale(1.1);
}

/* Badge (Top Right) */
.wild-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: #16a085;
    /* Gold Text */
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #16a085;
    /* Gold Border */
}

/* Content Area */
.wild-content {
    padding: 25px;
    position: relative;
}

.wild-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
    /* White */
}

.wild-content .location {
    font-size: 13px;
    color: #16a085;
    /* Gold */
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.wild-content .desc {
    font-size: 15px;
    color: #2b2b2b;
    /* Light Gray */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Button Adjustment for Smaller Cards --- */
.sm-btn {
    padding: 10px 25px !important;
    font-size: 12px !important;
}

/* End Wildlife */



/* --- Destination Cards --- */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3,
.card p {
    padding: 0 20px;
    color: #2f2f2f;
}

.card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #000000;
}

.card p {
    padding-bottom: 20px;
}

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

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #4CAF50;
    border-color: transparent;
}

.contact-form textarea {
    resize: vertical;
}

/* Custom CSS for Nature Page */


/* Gallery Item Styling */
.nature-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.nature-gallery .gallery-item:hover {
    transform: translateY(-5px);
}

.nature-gallery .gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;

}

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

/* Caption Styling */
.nature-gallery .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nature-gallery .gallery-item:hover .caption {
    opacity: 1;
}

.nature-explorer-section .rounded-lg {
    border-radius: 0.5rem !important;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: background-color 0.3s;
}

.btn-success:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
}



/* --- 1. Base & Utility --- */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.heading-primary {
    font-family: 'Merriweather', serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3.5em;
    margin-bottom: 10px;
}

.heading-secondary {
    font-family: 'Merriweather', serif;
    color: #004d40;
    /* Dark Teal */
    font-size: 2.5em;
    margin-bottom: 40px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Header Block (Nav) --- */
.site-header {
    background-color: #00695c;
    /* Primary Dark Teal */
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav__logo {
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: 'Merriweather', serif;
}

.site-nav__list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

.site-nav__link:hover {
    background-color: #00897b;
    /* Lighter Teal for hover */
    border-radius: 5px;
}

/* --- 3. Hero Block --- */
.hero-section {
    background: url('https://via.placeholder.com/1600x600?text=Lush+Indian+Countryside') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section>* {
    z-index: 2;
}

.hero-section__text {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    background-color: #ff9800;
    /* Orange */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: #fb8c00;
}

/* --- 4. Card Section (Featured Tours) --- */
.tours-section {
    padding: 60px 0;
    text-align: center;
}

.card-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tour-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 30%;
    /* Flexible size */
    min-width: 300px;
    transition: transform 0.3s;
    text-align: left;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tour-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.tour-card__content {
    padding: 15px 20px 20px;
}

.tour-card__title {
    font-size: 1.5em;
    margin-top: 0;
}

.tour-card__link {
    display: inline-block;
    color: #00695c;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s;
}

.tour-card__link:hover {
    color: #004d40;
}

/* --- 5. About Section (Lalit) --- */
.about-section {
    background-color: #e8f5e9;
    padding: 60px 20px;
    text-align: center;
}

.about-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}



/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .card-grid {
        gap: 20px;
    }

    .tour-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 650px) {
    .tour-card {
        flex: 1 1 100%;
        /* Single column stack */
        margin-bottom: 20px;
    }

    .heading-primary {
        font-size: 2.5em;
    }

    .hero-section__text {
        font-size: 1em;
    }

    .site-nav {
        flex-direction: column;
    }

    .site-nav__list {
        margin-top: 10px;
    }
}


@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }
}

/* Wildlifet css End*/

/* Heritag Css Start*/
.heritage-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem 2rem;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.heritage-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heritage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #3d2c22;
}

.card-location {
    font-size: 0.9rem;
    color: #9a8c85;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.card-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #338109;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.card-btn:hover {
    background-color: #033f10;
}

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

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Heritag Css End*/

/* Portraits Css Start */
.portrait-gallery-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1rem 2rem;
}

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

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.portrait-card {
    position: relative;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.portrait-image {
    width: 100%;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;

    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.card-overlay .photo-credit {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: #d0d0d0;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

/* Hover Effects */
.portrait-card:hover .portrait-image {
    transform: scale(1.05);
}

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

.portrait-card:hover .card-overlay h3,
.portrait-card:hover .card-overlay .photo-credit {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .portrait-gallery-container {
        padding: 1rem;
    }

    .masonry-grid {
        column-count: 1;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }
}

/* Portraits Css End*/

.bg-white {
    background-color: #fff !important;
}