/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Montserrat", sans-serif;

    transition: background 0.3s, color 0.3s;
}

body {
    background: #fdf7f7;
    color: #1a1a1a;
}

/* Navbar */

.nav-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 9999;
}


/* .navbar.scrolled {
    background: var(--nav);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
} */

.navbar.scrolled {
    background: var(--nav);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    backdrop-filter: blur(6px);
}

/* .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 15px 50px;
    transition: 0.3s;
    position: fixed;
    width: 100%;
} */
.navbar {
    position: fixed;
    top: 0;
    /* make sure it hugs the viewport top */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    /* sit above all other content */
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 15px 50px;
    transition: 0.3s;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a i {
    color: #b8860b;
}

.mode-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    background-color: #000;
    font-size: 22px;
    height: 38px;
    width: 38px;
    border-radius: 8px;
}

/* .mode-btn .i{

} */

/* Hamburger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #b8860b;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive navbar */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: var(--bg);
        text-align: center;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-left: 30px;
    }

    .menu-toggle {
        display: block;
    }

    .ps-footer-wrap {
        gap: 0px !important;

    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    /* color: #222222; */

}

.hero p {
    color: var(--text);
    margin: 20px 0;
    line-height: 1.6;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--para) !important;

    /* adds space between lines */

}

.btn-group {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-outline {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: #b8860b;
    border: none;
    color: #fff;
}

.btn-outline {
    background: none;
    border: 2px solid #b8860b;
    color: #b8860b;
}

/* Theme variables */
:root {
    --bg: #ffffff;
    --text: #222222;
    --para: #403f3f;
    --nav: #ffffff;
    --card: #fff;
    --accent: #6c4500;
    --muted: #006907;

}

body.dark {
    --bg: #222222;
    --text: #ffffff;
    --para: #E5E5E5;
    --nav: #222222;
    --card-bg: #2a2a2a;

}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 5% 8%; */
    /* padding: 50px !important; */
    padding: 120px 0px 20px 100px !important;
    flex-wrap: wrap;
    min-height: 100vh;
}

.hero-content {
    flex: 1 1 45%;
    max-width: 550px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

#role {
    color: #b8860b;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-block;
    opacity: 1;
    transition: opacity 0.5s;
    font-family: 'Oswald', sans-serif;

}

.hero p {
    /* color: #444; */
    font-size: 1rem;
    margin-bottom: 1.8rem;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #000;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.hero-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: end;
    align-items: end;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    height: 600px;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 100%;
        display: none;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links a {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        margin-top: 2rem;
    }

    .btn-group {
        justify-content: center;
    }

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

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode */
body.dark {
    background: #0d0d0d;
    color: #f5f5f5;
}

body.dark .nav-links {
    background: #1a1a1a;
}

body.dark .nav-links a {
    color: #f5f5f5;
}

body.dark .mode-btn {
    background: #fff;
    color: #000;
}

body.dark .btn-outline {
    border-color: #f5f5f5;
    color: #f5f5f5;
}

body.dark #role {
    color: #b8860b;
}

/* Mobile menu button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #b8860b;
    font-size: 26px;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

}


@media (max-width: 500px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5% 8%;
        padding: 50px !important;
        /* padding: 20px 0px 20px 100px !important; */
        flex-wrap: wrap;
        min-height: 70vh;
    }

    .hero-image {
        flex: 1 1 45%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image img {
        max-width: 80%;
        height: auto;
        border-radius: 12px;
        object-fit: contain;
        height: max-content;
    }

    .section-title {
        font-size: 14px !important;
    }

    .hero h1 {
        font-size: 22px !important;
        white-space: nowrap;
    }

    .hero {
        padding: 20px !important;
    }

    .hero p {
        text-align: left;
        /* make both edges even */
        line-height: 1.6;
    }

    .stats-bg img {
        height: 700px !important;
    }
}





/* ================= ABOUT SECTION ================= */
.about {
    padding: 20px 50px;
    /* background: linear-gradient(to bottom right, #fff8f5, #f9e9e2); */
    text-align: center;
}

.about.dark {
    background: #0f0f0f;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #252525;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

body.dark .section-title {
    color: #E5E5E5;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    object-fit: cover;
}

.about-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    height: 550px;
    perspective: 1000px !;
    /* Enables 3D effect */

}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.about-card {
    background: #dcd9d6;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.about-card h3 {
    color: #b8860b;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-card p {
    color: #252525;
    font-size: 15px;
    line-height: 1.6;
}

body.dark .about-card {
    background: #1d1d1d;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

body.dark .about-card h3 {
    color: #b8860b;
}

body.dark .about-card p {
    color: #E5E5E5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }


}

@media (max-width: 600px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 0px 25px;
    }

    .about-card {
        width: 100%;
        text-align: center;
    }

    .about-image img {
        width: 300px;
        max-width: 100%;
        border-radius: 10px;
        height: 300px;
        object-fit: cover;
    }
}

.about-card {
    border-top: 4px solid transparent !important;
    /* hidden by default */
    transition: border-color 0.3s ease !important;
    /* smooth animation */
    padding: 20px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.about-card:hover {
    border-top-color: #b8860b !important;
    /* red border appears on hover */
}


.section-title {
    /* position: relative; */
    /* display: inline-block; */
    /* font-family: 'Oswald', sans-serif; */
    font-size: 27px;
    color: var(--text);
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

/* yellow lines on both sides */
.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    /* line length */
    height: 3px;
    /* line thickness */
    background-color: #b8860b;
    /* yellow color */
    transform: translateY(-50%);
}

.section-title::before {
    left: -80px;
    /* distance from text */
}

.section-title::after {
    right: -80px;
}



.header {
    padding: 20px;
    /* background: rgba(0, 0, 0, 0.5); */
    /* backdrop-filter: blur(10px);
    position: sticky; */
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 80px !important;
}

.icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #d4a574 0%, #b8915f 100%);
    border-radius: 6px;
}

.header h1 {
    font-size: 18px;
    font-weight: 600;
}

.container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.scroll-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4a574 0%, #b8915f 100%);
    border-radius: 4px;
}

.episode-card {
    min-width: 280px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.episode-card:hover {
    transform: scale(1.05);
}

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

.episode-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.episode-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #1a1a1a;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 900px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.close-button:hover {
    background: white;
    transform: rotate(90deg);
}

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

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

.video-info {
    padding: 24px;
}

.video-info h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.video-info p {
    color: #aaa;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 16px;
    }

    .episode-card {
        min-width: 240px;
        height: 350px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::before {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .modal {
        padding: 10px;
    }

    .video-info h2 {
        font-size: 20px;
        color: var(--para);
    }
}

@media (min-width: 769px) {
    .scroll-container {
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .episode-card {
        flex: 1 1 calc(25% - 12px);
        min-width: 0;
    }

}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-info h2 {
    font-size: 20px;
    color: white;
}





/* Insights Section css */


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

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    justify-content: flex-start;
}

.filter-buttons button {
    border: 2px solid #dcdcdc;
    background: transparent;
    padding: 8px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text);
    transition: all .18s;
    font-size: 16px;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    height: 800px;
    gap: 22px;
}

.insight-card {
    background-color: #fff4e0;
    border: 2px solid rgba(0, 0, 0, 0.238);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 15, 15, 0.06);
    display: block;
    transition: transform 240ms ease, opacity 240ms ease;
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;

    /* height: 580px; */
}

.insight-card.hide {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.insight-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.insight-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--para) !important;
    color: var(--para);
    color: var(--nav);
    font-size: 12px;
    font-weight: 600;
    width: max-content;
}

.insight-content h3 {
    margin: 0;
    color: #b8860b;
    font-size: 16px;
    font-weight: 600;
}

.insight-content p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    font-size: 14px;
    gap: 8px;
}

.insight-footer .left,
.insight-footer .right {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #222222;
    cursor: pointer;
    /* <-- makes the hand pointer appear */

}

.insight-footer i {
    color: #b8860b;
}

@media (max-width:720px) {
    .container {
        margin: 20px auto;
    }

    .insight-img img {
        height: 150px;
    }
}


.Insights-p {
    color: #000 !important;
}


/* Passions & purpose */

/* ================= BIO SECTION ================= */
.bio {
    padding: 20px 50px;
    /* background: linear-gradient(to bottom right, #fff8f5, #f9e9e2); */
    text-align: center;
}

.bio.dark {
    background: #0f0f0f;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #252525;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

body.dark .section-title {
    color: #E5E5E5;
}

.bio-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding-top: 50px;
}

.bio-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 18px;
    height: 600px;
    object-fit: cover;
}

.bio-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 600px;
}

.bio-card {
    background: #dcd9d6;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.bio-card h3 {
    color: #b8860b;
    font-size: 18px;
    margin-bottom: 10px;
}

.bio-card p {
    color: #252525;
    font-size: 15px;
    line-height: 1.6;
}

body.dark .bio-card {
    background: #1d1d1d;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

body.dark .bio-card h3 {
    color: #b8860b;
}

body.dark .bio-card p {
    color: #E5E5E5;
}

@media (max-width: 992px) {
    .bio-container {
        flex-direction: column;
        text-align: center;
    }

    .bio-image {
        order: -1;
    }

    .bio-content {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

@media (max-width: 600px) {
    .bio-content {
        grid-template-columns: 1fr;
    }

    .bio {
        padding: 0px 25px;
    }

    .bio-card {
        width: 100%;
        text-align: center;
    }

    .bio-image img {
        width: 300px;
        max-width: 100%;
        border-radius: 10px;
        height: 300px;
        object-fit: cover;
    }

    .bio-container {
        padding-top: 20px !important;
    }
}

.bio-card {
    border-top: 4px solid transparent !important;
    transition: border-color 0.3s ease !important;
    padding: 20px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.bio-card:hover {
    border-top-color: #b8860b !important;
}

.section-title {
    font-size: 27px;
    color: var(--text);
    letter-spacing: 2px;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background-color: #b8860b;
    transform: translateY(-50%);
}

.section-title::before {
    left: -80px;
}

.section-title::after {
    right: -80px;
}




/* press section */
.theme-toggle {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.media-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #b8860b;
}

.card-description {
    color: var(--para);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
}

.card-tag {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.media-card:hover .card-tag {
    background-color: #b8860b;
    color: #222222;
    border-color: var(--accent);
}

/* Popup Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 95%;
    height: 90vh;
    max-width: 1200px;
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.modal-iframe {
    width: 100%;
    height: calc(90vh - 80px);
    border: none;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .header h1 {
        font-size: 24px;
    }

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

    .card-image {
        height: 240px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
        min-height: auto;
    }

    .modal-content {
        width: 98%;
        height: 80vh;
        border-radius: 12px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 16px;
    }

    .modal-iframe {
        height: calc(95vh - 70px);
    }

    .ps-details-area {
        text-align: center !important;
        padding-left: 0px !important;
    }

    .ps-footer-wrap {
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 20px;
    }

    .header {
        flex-direction: row;
        display: flex;
        gap: 15px;
        align-items: center;
        padding-left: 0px !important;
    }

    .theme-toggle {
        width: 100%;
    }

    .stats-bg {
        height: 700px !important;
    }

    .header h1 {
        font-size: 14px;
    }

    .section-title {
        font-size: 18px !important;
        font-weight: 600 !important;
    }

    .episode-card img {
        width: 260px !important;
    }

    .honors-section {
        padding: 0px !important;
    }

    .contact-section {
        padding: 40px 0px 40px 0px !important;
    }
}



/* awads sections */


.mode-toggle {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.mode-toggle:hover {
    transform: translateY(-2px);
    background-color: var(--accent);
    color: #222222;
}

.honors-section {
    position: relative;
    padding: 40px 0;
}

.honors-wrapper {
    position: relative;
    overflow: hidden;
}

.honors-container {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    animation: honorsScroll 30s linear infinite;
    width: fit-content;
}

.honors-container:hover {
    animation-play-state: paused;
}

@keyframes honorsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.honor-card {
    min-width: 220px;
    height: 220px;
    /* background-color: var(--card-bg); */
    background-color: whitesmoke;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.honor-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(216, 180, 116, 0.3);
}

.honor-card img {
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.scroll-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.scroll-control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: var(--accent);
    color: #222222;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 180, 116, 0.3);
}

.scroll-control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(216, 180, 116, 0.5);
}

.scroll-control-btn:active {
    transform: scale(0.95);
}

.scroll-control-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.auto-scroll-switch {
    margin-top: 20px;
    text-align: center;
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-left: 10px;
    vertical-align: middle;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-track {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: 0.4s;
    border-radius: 30px;
}

.slider-track:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider-track {
    background-color: var(--accent);
}

input:checked+.slider-track:before {
    transform: translateX(30px);
}

.honors-count {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: var(--para);
    font-weight: 600;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-box {
    position: relative;
    max-width: 600px;
    max-height: 80vh;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-box {
    transform: scale(1);
}

.popup-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--accent);
    color: #222222;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .honor-card {
        min-width: 180px;
        height: 180px;
    }

    .scroll-control-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 40px 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .honor-card {
        min-width: 160px;
        height: 160px;
    }

    .scroll-controls {
        gap: 10px;
    }
}






/* images section */


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

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.gallery-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    padding-top: 40px;
}

.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
}

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.photo-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Hidden images section */
.more-images {
    display: none;
}

.more-images.active {
    display: block;
}

/* Toggle Button */
.toggle-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #667eea;
    color: white;
}

.toggle-btn:active {
    transform: translateY(-1px);
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-fullscreen {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.close-fullscreen:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .photo-item {
        height: 200px;
    }

    .toggle-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}



.view-more-btn {
    background-color: #b8860b;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;

}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Dark Mode Support */
body.dark .view-more-btn {
    background-color: #fff;
    color: #222;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

body.dark .view-more-btn:hover {
    background-color: #b8860b;
    color: #fff;
}


.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ===== Desktop Sidebar (Right Side) ===== */
.social-sidebar-right {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #996600;
    padding: 15px 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #222;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}

/* ===== Mobile View: Bottom Navbar ===== */
@media (max-width: 768px) {
    .social-sidebar-right {
        top: auto !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        background-color: #996600 !important;
        padding: 10px 0 !important;
        border-radius: 0 !important;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2) !important;
    }

    .social-icon {
        font-size: 22px;
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .social-icon {
        font-size: 20px;
    }

    .modal-content {
        height: 80vh;
    }

    .stats-container {
        gap: 10px !important;
        padding-top: 10px !important;
    }

    .stats-section {
        height: 540px !important;
    }

    .stats-bg {
        height: 540px !important;
    }

    .stats-bg img {
        height: 540px !important;
    }
}


.contact-section {
    padding: 80px 20px;
    color: var(--text, #252525);
}

.contact-container.single {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.contact-form {
    background: var(--card, #fff);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--input-bg, #fff);
    color: var(--text, #252525);
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent, #b8860b);
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.3);
}

.btn-center {
    text-align: center;
}

.send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent, #b8860b);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
}

.send-btn:hover {
    background: #c49a2a;
    transform: translateY(-2px);
}

.send-btn i {
    margin-right: 8px;
}

/* Alternate Contact Info */
.alternate-contact {
    margin-top: 40px;
    text-align: center;
}

.alternate-contact h3 {
    color: #b8860b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.alternate-contact p {
    font-size: 1rem;
    color: var(--text, #252525);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
    border: 1.5px solid #b8860b;
    padding: 6px 14px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #b8860b;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
}

/* Dark Mode */
body.dark .contact-form {
    background: #2b2b2b;
    border: 1px solid #3a3a3a;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
    background: #3a3a3a;
    border-color: #555;
    color: #fff;
}

body.dark .contact-form p {
    color: #ccc;
}

body.dark .alternate-contact p {
    color: #ccc;
}

body.dark .social-links a {
    border-color: #e5e5e5;
    color: #e5e5e5;
}

body.dark .social-links a:hover {
    background: #e5e5e5;
    color: #1a1a1a;
}

/* Dark Mode */
body.dark .contact-form {
    background: #2b2b2b;
    border: 1px solid #3a3a3a;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
    background: #3a3a3a;
    border-color: #555;
    color: #fff;
}

body.dark .contact-form p {
    color: #ccc;
}




/* Footer Base */
/* Footer Base */
.footer {
    position: relative;
    padding: 80px 20px 40px;
    color: #e5e5e5;
    overflow: hidden;

    /* ✅ Add your background image here */
    background: url("images/sahara-desert-transparent-background_888418-53885.png") center/cover no-repeat;
}


/* Frosted Blur Background */
.footer-blur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.7);
    /* backdrop-filter: blur(18px); */
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 0;
}

/* Footer Content Layout */
.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    text-align: left;
}

/* Logo and About */
.footer-logo {
    width: 130px;
    /* margin-bottom: 15px; */
    filter: brightness(1.1);
}

.footer-about p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Section Headings */
.footer-links h3,
.footer-social h3 {
    color: #d8b474;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;

}

.footer-links a:hover {
    color: #d8b474;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #d8b474;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #bbb;
}

.footer-bottom span {
    color: #d8b474;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

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

/* Light Mode */
body.light .footer-blur-overlay {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light .footer {
    color: #252525;
}

body.light .footer-links a {
    color: #555;
}

body.light .footer-links a:hover {
    color: #d8b474;
}

body.light .footer-about p {
    color: #444;
}

body.light .footer-bottom p {
    color: #666;
}










/* Theme Toggle */
.theme-toggle-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: white;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark-theme .theme-toggle-btn {
    background: #1a1a1a;
    border-color: #333;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.theme-toggle-btn:hover {
    transform: rotate(180deg) scale(1.1);
}

/* Hero Section */
.ventures-hero-wrapper {
    background: white;
    padding: 100px 20px 60px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

body.dark-theme .ventures-hero-wrapper {
    background: #111;
    border-bottom-color: #222;
}

.ventures-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ventures-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f0f0f0;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 20px;
}

body.dark-theme .ventures-hero-badge {
    background: #1a1a1a;
    color: #999;
}

.ventures-hero-wrapper h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -1px;
}

body.dark-theme .ventures-hero-wrapper h1 {
    color: #fff;
}

.ventures-hero-wrapper p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

body.dark-theme .ventures-hero-wrapper p {
    color: #999;
}

/* Ventures Container */
.ventures-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ventures-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card Design */
.venture-card-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

body.dark-theme .venture-card-box {
    background: #161616;
    border-color: #2a2a2a;
}

.venture-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

body.dark-theme .venture-card-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #3a3a3a;
}

.venture-img-wrapper {
    height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    /* use background-color instead of background shorthand */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 🧩 iPhone Safari fixes */
    -webkit-transform: translateZ(0);
    /* force repaint on Safari */
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    isolation: isolate;
    /* ensures background paints properly under child elements */
}


body.dark-theme .venture-img-wrapper {
    background: #ffffff;
}

.venture-img-wrapper img {
    width: 70%;
    height: 70%;
    object-fit: scale-down;
    transition: transform 0.5s ease;
}

.venture-card-box:hover .venture-img-wrapper img {
    transform: scale(1.08);
}

.venture-tag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.venture-card-box.hospitality-type .venture-tag-badge {
    background: rgba(25, 118, 210, 0.9);
    color: white;
}

.venture-card-box.beverage-type .venture-tag-badge {
    background: rgba(245, 124, 0, 0.9);
    color: white;
}

.venture-card-box.dining-type .venture-tag-badge {
    background: rgba(123, 31, 162, 0.9);
    color: white;
}

.venture-card-box.farming-type .venture-tag-badge {
    background: rgba(56, 142, 60, 0.9);
    color: white;
}

.venture-status-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.venture-info-section {
    padding: 20px;
}

.venture-name-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

body.dark-theme .venture-name-title {
    color: #fff;
}

.venture-desc-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 160px;
    /* display: -webkit-box; */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-theme .venture-desc-text {
    color: #999;
}

.venture-features-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

body.dark-theme .feature-item-row {
    color: #aaa;
}

.feature-icon-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.venture-card-box.hospitality-type .feature-icon-circle {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
}

.venture-card-box.beverage-type .feature-icon-circle {
    background: linear-gradient(135deg, #f57c00 0%, #ffb74d 100%);
}

.venture-card-box.dining-type .feature-icon-circle {
    background: linear-gradient(135deg, #7b1fa2 0%, #ba68c8 100%);
}

.venture-card-box.farming-type .feature-icon-circle {
    background: linear-gradient(135deg, #388e3c 0%, #81c784 100%);
}

.venture-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

body.dark-theme .venture-action-btn {
    background: #fff;
    color: #000;
}

.venture-action-btn:hover {
    gap: 12px;
    background: #000;
}

body.dark-theme .venture-action-btn:hover {
    background: #e0e0e0;
}

.venture-action-btn::after {
    content: '→';
    font-size: 16px;
}

/* Stats Bar */
.ventures-stats-bar {
    /* background: linear-gradient(135deg, #221606 0%, #b8860b 100%); */
    background: rgba(15, 15, 15, 0.7);
    /* backdrop-filter: blur(18px); */
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 20px;
    margin-top: 40px;
    border-radius: 16px;
}

body.dark-theme .ventures-stats-bar {
    background: linear-gradient(135deg, #b8860b 0%, #5a3a7a 100%);
}

.stats-grid-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box-item {
    color: white;
}

.stat-number-big {
    font-size: 40px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label-small {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.ventures-cta-wrapper {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.144);
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

body.dark-theme .ventures-cta-wrapper {
    background: #161616;
    border-color: #2a2a2a;
}

.ventures-cta-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

body.dark-theme .ventures-cta-wrapper h2 {
    color: #fff;
}

.ventures-cta-wrapper p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body.dark-theme .ventures-cta-wrapper p {
    color: #999;
}

.cta-buttons-flex {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-style {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-style.primary-btn {
    background: #111;
    color: white;
}

body.dark-theme .cta-btn-style.primary-btn {
    background: #fff;
    color: #000;
}

.cta-btn-style.primary-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.dark-theme .cta-btn-style.primary-btn:hover {
    background: #e0e0e0;
}

.cta-btn-style.secondary-btn {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

body.dark-theme .cta-btn-style.secondary-btn {
    color: #fff;
    border-color: #fff;
}

.cta-btn-style.secondary-btn:hover {
    background: #111;
    color: white;
}

body.dark-theme .cta-btn-style.secondary-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 1200px) {
    .ventures-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .stats-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .ventures-hero-wrapper h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .ventures-hero-wrapper {
        padding: 80px 20px 50px;
    }

    .ventures-hero-wrapper h1 {
        font-size: 32px;
    }

    .ventures-hero-wrapper p {
        font-size: 16px;
    }

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

    .venture-img-wrapper {
        height: 200px;
    }

    .stats-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ventures-cta-wrapper h2 {
        font-size: 28px;
    }

    .cta-buttons-flex {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-style {
        width: 100%;
    }

    .theme-toggle-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .ventures-hero-wrapper h1 {
        font-size: 26px;
    }

    .venture-name-title {
        font-size: 18px;
    }

    .ventures-main-container {
        padding: 10px 5px;
    }

    .section-title::before,
    .section-title::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40px;
        height: 3px;
        background-color: #b8860b;
        transform: translateY(-50%);
    }

    .card-title {
        font-size: 16px;
    }
}

body.dark .venture-card-box {
    background: #1d1d1d;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

body.dark .venture-desc-text {
    color: rgb(255, 255, 255);
}


body.dark .feature-item-row {
    color: rgb(234, 232, 232);
}

body.dark .venture-name-title {
    color: #b8860b;
}






.stats-section {
    background-image: url('/mnt/data/183035cd-b1b8-4af9-af2c-136f1ae6d409.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    border-radius: 25px;
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1 1 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        max-width: 300px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

.stats-section {
    background-image: url('/mnt/data/183035cd-b1b8-4af9-af2c-136f1ae6d409.png');
    background-size: cover;
    background-position: center;
    /* padding: 80px 20px; */
    color: white;
    text-align: center;
    border-radius: 25px;
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    padding-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding-top: 40px;
}

.stat-item {
    flex: 1 1 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        max-width: 200px;
        height: 100px !important;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item {
        flex: 1 1 120px;

    }
}

.stats-bg {
    position: absolute;
    width: 100%;

    z-index: -1;
    background-color: #000;
    height: 200px;
    border-radius: 16px;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slide 20s infinite;
    opacity: 0.5;
    height: 200px;
    border-radius: 16px;


}

.Series-section {
    padding-top: 40px;
}

.venture-section {
    padding-top: 30px !important;
}

#Duo {
    padding-top: 20px;
}



body.dark .ventures-cta-wrapper h2 {
    color: #b8860b;
}

body.dark .ventures-cta-wrapper p {
    color: #ffffff;
}



.read-more {
    display: inline-block;
    margin-top: 8px;
    color: #b8860b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #604605;
    text-decoration: underline;
}

.signature-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #b8860b;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;

}

body.dark .signature-quote {
    color: #d4af37;
}

.heyyy {
    display: flex !important;
}




/* Mobile view - Horizontal scroll */
@media (max-width: 768px) {
    .ventures-cards-grid {
        display: flex !important;
        flex-direction: row !important;
        /* horizontal layout */
        overflow-x: auto !important;
        /* enable horizontal scroll */
        scroll-snap-type: x mandatory !important;
        /* smooth snap effect */
        -webkit-overflow-scrolling: touch !important;
        /* smooth scrolling for iOS */
        gap: 16px !important;
        /* spacing between cards */
        padding-bottom: 10px !important;
    }

    .venture-card-box {
        flex: 0 0 auto !important;
        /* prevent shrinking */
        width: 80% !important;
        /* card width, adjust as needed */
        scroll-snap-align: start !important;
        /* snap each card */
        margin-right: 16px !important;
    }

    /* Optional: remove margin on last card */
    .ventures-cards-grid .venture-card-box:last-child {
        margin-right: 0 !important;
    }
}

/* Mobile view - Horizontal scroll for Insight cards */
@media (max-width: 768px) {
    .insight-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 10px !important;
        height: max-content;
    }

    .insight-card {
        flex: 0 0 80% !important;
        /* Card width - adjust as needed */
        scroll-snap-align: start !important;
        border-radius: 10px !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        overflow: hidden !important;
        height: 450px;
    }

    .insight-grid .insight-card:last-child {
        margin-right: 0 !important;
    }

    /* Hide scrollbar for cleaner look */
    .insight-grid::-webkit-scrollbar {
        display: none !important;
    }

    .insight-grid {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .stat-number {
        font-size: 27px;
    }
}



.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background-color: #c4975b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.read-more-btn:hover {
    background-color: #a87e48;
    transform: translateY(-2px);
}


/* Background */
/* Background */
.ps-footer-bg {
    background: url('images/Footer image 1.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    /* padding: 20px 20px; */
    font-family: "Poppins", sans-serif;
}


/* Wrapper Layout */
.ps-footer-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Section */
.ps-photo-area {
    flex: 1;
    text-align: center;
    min-width: 250px;
    border-radius: 1000px;
}

.ps-profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #d8b56a;
    background-color: white;
    object-fit: cover;
}

/* Center Section */
.ps-details-area {
    flex: 2;
    text-align: start;
    /* changed from center to start */
    min-width: 300px;
    padding-left: 50px;
}

.ps-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.ps-role {
    color: #d1d0cd;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 20px;
}

.ps-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-contact-list li {
    margin: 15px 0;
    font-size: 15px;
}

.ps-contact-list i {
    color: #d8b56a;
    margin-right: 10px;
}

.ps-contact-list a {
    color: #fff;
    text-decoration: none;
}

.ps-contact-list a:hover {
    color: #d8b56a;
}

/* Right Section */
.ps-logo-area {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.ps-logo img.footer-logo {
    width: 100px;
    /* adjust as needed */
    height: auto;
    object-fit: contain;
}




.ps-brand {
    font-size: 70px;
    font-weight: 700;
    color: #d8b56a;
    margin-bottom: 15px;
}


.ps-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 2px;
    background-color: #ffffff;
    /* white background */
    color: #0b2341;
    /* icon color (dark blue) */
    border-radius: 50%;
    /* makes it circular */
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ps-social-icons a:hover {
    background-color: #d8b56a;
    /* gold hover color */
    color: #ffffff;
    /* white icon on hover */
    transform: scale(1.1);
    /* smooth zoom effect */
}


/* Responsive */
@media (max-width: 768px) {
    .ps-footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .ps-profile-pic {
        width: 150px;
        height: 150px;
    }
}


@media (max-width: 768px) {
    .cards-container {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 10px !important;
    }

    .media-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        scroll-snap-align: start !important;
        border-radius: 10px !important;
        /* background: #fff !important; */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    }

    .card-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px 10px 0 0 !important;
    }

    .card-content {
        padding: 10px !important;
    }

    .cards-container::-webkit-scrollbar {
        display: none !important;
    }
}


@media (max-width: 1240px) {

    .ps-footer-wrap {
        gap: 50px !important;

    }
}

@media (max-width: 500px) {
    .hero {
        flex-direction: column-reverse !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 40px 20px !important;
        min-height: auto !important;
    }

    .hero h1 {
        font-size: 22px !important;
        white-space: normal !important;
        /* fix text cutoff */
        line-height: 1.3 !important;
    }

    .hero p {
        text-align: center !important;
        padding: 0 10px !important;
    }

    .hero-image img {
        width: 90% !important;
        max-width: 320px !important;
        height: auto !important;
    }
}

html {
    -webkit-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}


/* Company Logos Section */
.ps-company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.ps-company-logos img {
    width: 100px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* background-color: white; */
    border-radius: 8px;
    padding: 6px;
}

.ps-company-logos img:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ps-company-logos img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .ps-footer-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .ps-company-logos {
        gap: 10px;
    }

    .ps-company-logos img {
        width: 55px;
    }
}

@media (max-width: 480px) {
    .ps-company-logos img {
        width: 85px;
    }
}

.size {
    width: 100px;
}