/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Design tokens: container widths and gutters for easy tuning */
:root {
    --container-max: 1360px;
    --container-large: 1180px;
    /* used around 1280px breakpoint */
    --container-medium: 960px;
    /* used around 1024px breakpoint */
    --gutter: 24px;
}

/* Container width */
.nav-container,
.hero-content,
.feature-content,
.showcase-content,
.ventures-content,
.footer-content {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 1400px) {

    .nav-container,
    .hero-content,
    .feature-content,
    .showcase-content,
    .ventures-content,
    .footer-content {
        width: 100%;
        max-width: var(--container-max);
        padding: 0 var(--gutter);
    }
}

/* Responsive adjustments for tablet / small screens (<=768px) to keep balance */
@media (max-width: 768px) {
    .intro-container {
        padding: 0 18px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stack media vertically, make main image prominent */
    .intro-media {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 64px !important;
        vertical-align: middle;
    }

    .media-main {
        width: 100%;
        height: 300px;
    }

    .media-main img {
        height: 100%;
        object-fit: cover;
    }

    /* center the play button on smaller screens */
    .media-play {
        left: 50%;
        transform: translateX(-50%);
        bottom: 18px;
    }

    /* side images appear as two small thumbnails next to each other */
    .media-side {
        flex-direction: row;
        gap: 0.75rem;
    }

    .media-side img {
        width: calc(50% - 0.375rem);
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
    }

    .intro-copy {
        padding: 0 6px;
        text-align: left;
    }

    .intro-copy h2 {
        font-size: 28px;
    }

    .intro-copy p {
        font-size: 15px;
    }

    .brand-logos {
        justify-content: center;
        gap: 12px;
        margin: 1.75rem 0;
        flex-wrap: wrap;
    }

    .services-section {
        padding: 2rem 0 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .service-item {
        padding: 0.9rem;
    }

    .service-item i {
        font-size: 18px;
    }

    .our-work {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .our-work h3 {
        font-size: 24px;
    }

    .cta-button.outline {
        padding: 0.55rem 0.9rem;
    }
}

@media (max-width: 768px) {

    .hot-tours .venture-card,
    .hot-tours .proinfo-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hot-tours .platter {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }

    .hot-tours .platter-prev,
    .hot-tours .platter-next {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .hot-tours-container {
        padding: 48px 12px 96px 12px;
    }

    .project-card {
        max-width: 100%;
    }
}

/* smaller screens: stack thumbnails and center copy for comfortable reading */
@media (max-width: 600px) {
    .intro-container {
        padding: 0 14px;
    }

    .media-main {
        height: 220px;
    }

    .media-side {
        flex-direction: column;
    }

    .media-side img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .intro-copy {
        text-align: center;
    }

    .intro-copy h2 {
        font-size: 22px;
    }

    .intro-copy p {
        font-size: 14px;
    }

    .brand-logos {
        gap: 10px;
    }

    /* services become a single column on small phones for readability */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .service-item {
        padding: 0.8rem;
        align-items: center;
        text-align: center;
    }

    .service-item i {
        margin: 0px;
    }

    /* Make each service card light up on hover and provide high-contrast text */
    .services-section .service-item {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 10px;
        /* Make background and text color changes instantaneous; keep transform/box-shadow smooth */
        transition: transform 120ms ease, box-shadow 120ms ease;
    }

    .services-section .service-item:hover,
    .services-section .service-item:focus {
        background: #585f664d;
        /* brighten the entire card */
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(9, 30, 66, 0.12);
        text-decoration: none;
        transition: 0.3s all;
        /* keep anchor style clean */
    }

    .services-section .service-item p {
        transition: color 160ms ease;
    }

    .services-section .service-item i {
        /* keep icon scale smooth but change colors immediately on hover */
        transition: transform 120ms ease;
    }

    /* Additional interaction polish */
    .services-section .service-item {
        cursor: pointer;
        /* makes it clear it's clickable */
        display: flex;
        /* ensure full-card clickable area */
        align-items: center;
    }

    .services-section .service-item p {
        /* text color should switch immediately for contrast */
        transition: none;
    }
}

.services-section .service-item:hover i,
.services-section .service-item:focus i {
    transform: scale(1);
    transition: 0.3s all;
}

.services-section .service-item:hover p,
.services-section .service-item:focus p {
    font-weight: 400;
    transition: 0.3s all;
}

/* active/tap feedback */
.services-section .service-item:active {
    transform: translateY(-2px) scale(0.998);
    box-shadow: 0 6px 18px rgba(9, 30, 66, 0.08);
}

/* keyboard focus for top nav links and service cards */
.nav-links a:focus-visible,
.services-section .service-item:focus-visible {
    outline: 3px solid rgba(43, 182, 115, 0.18);
    outline-offset: 4px;
    border-radius: 8px;
}

/* reduce tap highlight on mobile for cleaner look */
a, .service-item {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* On bright card, make text and icon contrast strongly */
.services-section .service-item:hover p,
.services-section .service-item:focus p {
    color: #32c87f;
    transition: 0.3s all;
    /* dark navy for readability */
}

.services-section .service-item:hover i,
.services-section .service-item:focus i {
    background: rgb(43, 182, 115);
    /* green fill */
    color: #fff;
    /* white icon on green background */
    transition: 0.3s all;
}

/* Accessible focus outline for keyboard users */
.services-section .service-item:focus-visible {
    outline: 3px solid rgba(43, 182, 115, 0.18);
    outline-offset: 3px;
}

.our-work h3 {
    font-size: 18px;
}

@media (max-width: 768px) {

    .nav-container,
    .hero-content,
    .feature-content,
    .showcase-content,
    .ventures-content,
    .footer-content {
        padding: 0 20px;
    }
}

/* Very small screens: ensure intro and services sections are single-column and media stacks vertically */
@media (max-width: 675px) {

    /* Scope to intro-section only */
    .intro-section .intro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Force intro media to be one column (main image then side images) */
    .intro-section .intro-media {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .intro-section .media-main {
        height: 200px;
    }

    .intro-section .media-main img {
        height: 100%;
        object-fit: cover;
    }

    /* side images stacked under main image, full width */
    .intro-section .media-side {

        gap: 0.6rem;
    }

    .intro-section .media-side img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        min-height: unset;
    }

    .intro-section .intro-copy {
        text-align: center;
    }

    .intro-section .intro-copy h2 {
        font-size: 40px;
    }

    .intro-section .intro-copy p {
        font-size: 17px;
    }

    /* Scope to services-section only */
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .services-section .service-item {
        padding: 8px 12px;
        align-items: center;
        text-align: center;
    }

    .services-section .our-work {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .services-section .our-work h3 {
        font-size: 18px;
    }

    .services-section .cta-button.outline {
        align-self: center;
    }
}

/* Navigation */
nav {
    background: rgb(255 255 255 / 90%);
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px) saturate(2.5);
    -webkit-backdrop-filter: blur(10px) saturate(2.5);
}

/* Header hide/show states */
nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 80px;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links a {
    text-decoration: none;
    font-size: 17px;
    color: #333;
    margin-left: 24px;
    font-weight: 500;
    position: relative;
    padding: 8px 12px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: transparent;
    /* hide underline by default */
    transition: width 0.28s ease, background-color 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
    background-color: rgb(43 182 115);
    /* show underline in the link's color on hover */
}

.lang-btn {
    background: rgb(33 81 131);
    color: white !important;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: 0px;
    margin-left: 2rem;
    z-index: 1000;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.lang-btn:hover {
    background: rgb(43 182 115);
}

/* Burger / mobile navigation toggle */
.nav-toggle {
    display: none;
    /* shown only on small screens */
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 12px;
    position: relative;
    z-index: 1000;
    border: 1px solid #215183;
    border-radius: 4px;
}

.nav-toggle span {
    display: block;
    position: absolute;
    left: 7px;
    right: 6px;
    height: 2px;
    background: rgb(33, 81, 131);
    border-radius: 2px;
    transform-origin: center;
    /* smooth motion similar to modern site toggles */
    transition: transform 380ms cubic-bezier(.2, .9, .25, 1), opacity 220ms ease;
}

.nav-toggle span:nth-child(1) {
    top: 10px;
}

.nav-toggle span:nth-child(2) {
    top: 18px;
}

.nav-toggle span:nth-child(3) {
    top: 26px;
}

/* hover micro-movement for affordance (only when not open) */
.nav-toggle:not(.open):hover span:nth-child(1) {
    transform: translateY(-1px);
}

.nav-toggle:not(.open):hover span:nth-child(3) {
    transform: translateY(1px);
}

/* open state: form a cross with subtle horizontal nudge to match reference movement */
.nav-toggle.open span:nth-child(1) {
    transform: translate3d(0px, 7px, 0) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translate3d(0px, -9px, 0) rotate(-45deg);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .nav-toggle span {
        transition: none;
    }
}

/* container for right-side controls (lang, burger, links) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
        height: 86vh;
    display: flex;
    padding-top: 6vh;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 6vh;

}

.hero.sustain {
    height: 75vh;
}

.hero.about {
    height: 40vh;
    padding-top: 12vh;
    position: relative;
    z-index: 1;
    background: transparent;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-background.fixed video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(0.5) saturate(1) contrast(1.5) brightness(0.9);
}

.image-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
}

.video-overlay,
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.about-overlay {
    background: linear-gradient(357deg, #f8f9fa 16%, rgb(255 255 255 / 0%) 94%) !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1280px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 2rem;
}

.hero-content.hero_abt h1 {
    color: #000000;
    text-shadow: 1px 1px 3px #ffffff96;
}

.hero-content.hero_abt p {
    color: #333333;
}

.cta-button {
    display: inline-block;
    background: rgb(43 182 115);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #009544;
    transform: translateY(-2px);
}

/* Feature Section */
.feature {
    padding: 80px 0 96px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 100;
}

.feature-content {
    display: flex;
    gap: 7rem;
    align-items: flex-start;
}

.feature-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-text {
    margin-bottom: 1rem;
}

/* Set paragraph size specifically for the paragraph under the "จุดประสงค์" heading */
.feature-text>p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(43, 182, 115, 0.1);
    color: #00AB4E;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.feature h2 {
    font-size: 48px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.feature-question {
    background: linear-gradient(133deg, rgb(33, 81, 131) 0%, rgb(29, 53, 77) 100%);
    padding: 24px 24px;
    border-radius: 12px;
}

.feature-question p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.feature-right {
    flex: 1.2;
    margin-top: -200px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    max-height: 327px;
}

.grid-item:nth-child(1) {
    grid-column: span 3;
}

.grid-item:nth-child(2) {
    grid-column: span 3;
}

.grid-item:nth-child(3) {
    grid-column: span 6;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0.5) saturate(1.5);
}

.grid-item:nth-child(1) .feature-img,
.grid-item:nth-child(2) .feature-img {
    height: 100%;
}

.grid-item:nth-child(3) .feature-img {
    height: 100%;
}

.grid-item:hover .feature-img {
    transform: scale(1.05);
}

.lets-talk {
    display: inline-block;
    padding: 1rem 2rem;
    background: #002D74;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lets-talk:hover {
    background: #00235A;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {


    .feature-left {
        min-height: auto;
    }

    .feature h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .feature {
        padding: 4rem 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .grid-item:nth-child(1),
    .grid-item:nth-child(2),
    .grid-item:nth-child(3) {
        grid-column: span 1;
    }

    .feature-img {
        height: 400px !important;
    }

    .feature-question {
        padding: 2rem;
    }

    .ventures-footer {
        display: flex;
        justify-content: flex-start;
        margin: 1rem auto 0rem auto;
    }

    .bor_r {
        border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    }
}

/* Showcase Section */
.showcase {
    background-image: url('../img/Suntech_img_04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 16 9 / 74%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.showcase.report_file {
    background-image: url(../img/Suntech_img_18.jpg);
    background-position: center bottom;
}

.showcase-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    align-items: center;
}

.showcase-left {
    flex: 1;
    padding-top: 2rem;
}

.showcase-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.showcase-main h2 {
    font-size: 48px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-main p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.view-more {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.view-more::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    /* start hidden */
    transition: transform 0.28s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.view-more:hover::after {
    transform: scaleX(1.2);
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

/* remove default blue underlines for all anchors and add a subtle brighten on hover */
a {
    text-decoration: none;
    color: inherit;
    transition: color 160ms ease, filter 160ms ease;
}

a:hover,
a:focus {
    filter: brightness(1.12);
    outline: none;
}

.showcase-right {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    padding: 8px;
    border: 1px dotted #445063;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bor_r {
    border-right: 1px dotted rgba(255, 255, 255, 0.5);
}

.stat-item {
    width: max-content;
    text-align: center;
    margin: auto;
}

.stat-number {
    display: block;
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
        margin: 8px 0px;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.5px rgb(61 134 99 / 20%);
    text-shadow: 0px 0px 4px #a6ffd4;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-title {
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}

@media (max-width: 1200px) {
    .feature-right {
        flex: 1.2;
        margin-top: 0px;
        width: 100%;
    }

    .venture-card {
        flex: 0 0 45% !important;
    }

}

@media (max-width: 1176px) {
    .info-item {
        grid-template-columns: 116px 1fr !important;

    }
}

@media (max-width: 1024px) {
    .feature-content {
        flex-direction: column;
        gap: 4rem;
    }

    .showcase-content {
        flex-direction: column;
        gap: 4rem;
    }

    .showcase-right {
        margin-top: 2rem;
    }

    .showcase-stats {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        margin-top: 2rem;
        justify-content: center;
    }
}

@media (max-width: 960px) {
    .venture-card {
        flex: 0 0 60% !important;
    }
}

@media (max-width: 768px) {
    .showcase-main h2 {
        font-size: 40px;
    }

    .showcase-image {
        height: 300px;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 1rem !important
    }
}

/* Recent Ventures Section */
.recent-ventures {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 100;
}

.ventures-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ventures-header {
    max-width: 800px;
}

.ventures-header h2 {
    font-size: 48px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ventures-header h2.highlight {
    color: #002D74;
}

.ventures-header p {
    margin-top: 1.5rem;
    font-size: 18px;
    color: #666;
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.venture-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.venture-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venture-thumb {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Carousel (platter) styles */
.venture-carousel {
    position: relative;
    display: block;
    margin: 2rem 0;
}

/* Specific styles for about page carousel */
.hot-tours .venture-carousel {
    overflow: hidden;
    padding: 0px 20px;
}

.platter {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    position: relative;
}

.platter::-webkit-scrollbar {
    display: none;
}

/* Base card styles for index page */
.venture-card {
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    position: relative;
    flex: 0 0 35%;
}

/* Specific card styles for about page */
.hot-tours .venture-card,
.hot-tours .proinfo-card {
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    color: #333;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.card-img img {
        display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 324px;
}

.card-img {
    position: relative;
    filter: grayscale(0.5) saturate(1.5);
}

.card-img::after {
    /* dark gradient overlay to improve text readability */
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 30%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0) 100%);
}

.card-content {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    color: white;
}

.card-content .kicker {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .6rem;
}

.card-content h3 {
    font-size: 28px;
    line-height: 38px;
    margin: 0 0 0.75rem 0;
}

.card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 420px;
}

.platter-prev, .platter-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    font-size: 32px;
    padding: 2px 4px 8px 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: background-color 0.3s ease;
}

/* Default positioning for index page */
.platter-prev {
    left: calc((100% - var(--container-max)) / 2);
}

.platter-next {
    right: calc((100% - var(--container-max)) / 2);
}

/* Specific positioning for about page hot-tours */
.hot-tours .platter-prev {
    left: 0;
}

.hot-tours .platter-next {
    right: 0;
}

.platter-prev:hover, .platter-next:hover {
    background: rgb(127 223 177 / 80%);
}

/* faded / disabled state for boundary arrows */
.platter-prev.disabled,
.platter-next.disabled,
.platter-prev[aria-disabled="true"],
.platter-next[aria-disabled="true"] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.98);
    filter: grayscale(0.1);
}

/* For the about page hot-tours: place buttons so they overlap the card edge by ~8px.
   We compute the horizontal gutter (remaining space when max container is used) and
   add 8px to push buttons inward so they sit over the first/last card by 8px. */
.hot-tours .platter-prev {
    left: 0;
}

.hot-tours .platter-next {
    right: 0;
}

/* Small screens: when the container is full width, keep buttons near the edges but
   still overlap about 8px (use smaller inset) */
@media (max-width: 768px) {
    .hot-tours .platter-prev {
        left: 0;
    }

    .hot-tours .platter-next {
        right: 0;
    }
}

.platter-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
}

.platter-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.platter-dots button.active {
    background: #fff;
}

@media (max-width: 768px) {

    .card-content h3 {
        font-size: 1.6rem;
    }
}

.venture-item:hover img {
    transform: scale(1.05);
}

.venture-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.project-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.ventures-footer {
    display: flex;
    justify-content: flex-start;
    margin: 1rem 0px;
}

.lets-talk {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgb(43 182 115);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s ease;
}

.lets-talk:hover {
    background: rgb(90, 222, 158);
     transition: 0.3s ease;
}

@media (max-width: 768px) {
    .ventures-header h2 {
        font-size: 40px;
    }

    .venture-grid {
        grid-template-columns: 1fr;
    }

    .venture-item img {
        height: 300px;
    }
    .hero.sustain {
    height: 60vh;
}
}

/* Footer */
footer {
    background: #ffffff;
    padding: 0;
    color: #333;
    position: relative;
    z-index: 100;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 0rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.company-info h3 {
    margin: 1rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item h4 {
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem 20px 0;
}

.footer-links a {
    color: #666;
    text-decoration: none;

}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .feature-content {
        flex-direction: column;
    }

    .feature-images {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* nav layout for small screens: show burger and make the links an off-canvas panel */
    .nav-toggle {
        display: block;
    }

    .nav-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* off-canvas right-side menu (hidden by default) */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0px;
        right: 0px;
        width: 100%;
        max-width: calc(100% - 0px);
        background: rgb(254 254 254);
        padding: 120px 24px 24px 24px;
        border-radius: 0px;
        /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18); */
        transform: translateX(110%);
        transition: transform 0.35s ease, opacity 0.35s ease;
        opacity: 0;
        pointer-events: none;
        z-index: 999;
        min-height: 80vh;
    }

    .nav-links a {
                margin: 0px 0px 8px 0px;
        color: rgb(0 0 0);
        font-size: 20px;
        font-weight: 700;
        border: 1px dashed #0000000a;
        border-radius: 6px;
    }

    .nav-links .lang-btn {
        margin-left: 0;
    }

    /* when nav is open, slide it in */
    body.nav-open .nav-links {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* hide desktop-only elements on mobile */
    .desktop-only {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-images {
        grid-template-columns: 1fr;
    }

    .venture-images {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Offset for anchored sections to account for fixed header */
.feature,
.showcase,
.recent-ventures,
footer {
    scroll-margin-top: 100px;
}

/* Intro section (light theme) used on sustain.html */
.intro-section {
    background: #f8f9fa;
    color: #0f1720;
    padding: 6rem 0 4rem;
}

.intro-container {
    width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 800;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-media {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.media-main {
    position: relative;
    flex: 1.46;
    border-radius: 12px;
    overflow: hidden;
}

.media-main img {
    width: 100%;
    height: 100%;
    min-height: 301px;
    display: block;
    object-fit: cover;
    filter: grayscale(0.5) saturate(1.5);
}

.media-play {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    font-size: 18px;
}

.media-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1.4;
}

.media-side img {
    width: 100%;
    height: 100%;
    min-height: 301px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(0.5) saturate(1.5);
}

.intro-copy .kicker {
    font-size: 0.85rem;
    color: #8d96aa;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.intro-copy h2 {
    font-size: 40px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #071133;
}

.intro-copy .intro-abt {
    font-size: 40px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.intro-copy .sub-abt {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
    color: #ffffff;
}

.abt-title {
    font-size: 40px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #071133;
    text-align: center;
    padding: 24px 0px 0px 0px;
}

.intro-copy p {
    color: #374151;
    margin-bottom: 1.25rem;
}

.intro-copy .cta-button.small {
    padding: 0.6rem 1rem;
    font-size: .95rem;
    position: relative;
    z-index: 800;
}

.brand-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.brand-logos .logo {
    opacity: .75;
    padding: .5rem 1rem;
    border-radius: 8px;
    background: transparent;
    font-weight: 600;
    color: #6b7280;
}

.txt_sub {
    margin: auto;
    width: fit-content;
    margin-bottom: 12px;
    text-align: center;
}

.services {
    padding: 32px 0 32px;
}

.services-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    color: rgb(255 255 255);
    font-weight: 600;
}

/* Service filters (pills) */
.service-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #071133;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 120ms ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border: 2px solid rgb(43, 182, 115);
    transition: 0.4s all;
}

.filter-btn.active {
    border-color: rgb(43, 182, 115);
    box-shadow: 0 6px 20px rgba(43, 182, 115, 0.12);
    background: rgb(43 182 115);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 675px) {
    .venture-card {
        flex: 0 0 90% !important;

    }

    .service-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 11px;
        font-size: 0.95rem;
    }

    .showcase.report_file {
        background-position: 31% 139px;
    }

    .info-item {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .info-item {
        gap: 0px !important;
    }

    .tours-grid {
        padding: 20px !important;
    }
    .card-img img {
    min-height: 380px;
}
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.services-section .service-item,
.service-item {
    background: #585f661f;
    padding: 10px 12px;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    border: 1px dotted rgb(112 123 138 / 67%);
    transition: 0.3s all;
}

.services-section .service-item:hover {
    border: 1px dotted rgb(43, 182, 115);
    transition: 0.3s all;
    background-color: #585f664d;
}

.services-section .service-item i,
.service-item i {
    font-size: 22px;
    color: rgb(43 182 115);
    background: rgba(11, 107, 107, 0.06);
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s all;
}

.service-item h4 {
    margin: 0;
    font-size: 1rem;
    color: #334155;
}

.service-item p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.our-work {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.25rem;
}

.our-work h3 {
    font-size: 32px;
    margin: 0;
    color: #071133;
}

.cta-button.outline {
    border: 1px solid #0b6b6b;
    background: transparent;
    color: #0b6b6b;
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

@media (max-width: 1024px) {

    /* container sizing for tablets / small laptops */
    .nav-container,
    .hero-content,
    .feature-content,
    .showcase-content,
    .ventures-content,
    .footer-content,
    .intro-container {
        width: 100%;
        max-width: 960px;
        padding: 0 20px;
        margin: 0 auto;
    }

    /* keep intro stacked for narrow tablets but tune sizes */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    .intro-media {
        flex-direction: column;
        gap: 0.8rem;
    }

    .media-main {
        height: 300px;
    }

    .media-main img {
        object-fit: cover;
        height: 100%;
    }

    /* side thumbnails collapse to a horizontal row when space allows */
    .media-side {
        flex-direction: row;
        gap: 0.6rem;
    }

    .media-side img {
        width: calc(50% - 0.3rem);
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
    }

    .intro-copy h2 {
        font-size: 32px;
    }

    .intro-copy p {
        font-size: 15px;
    }

    /* services: keep 2 columns at this width for readability */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-item {
        padding: 0.95rem;
    }

    /* slightly smaller showcase image so stats don't overlap */
    .showcase-image {
        height: 380px;
    }

    .showcase-stats {
        padding: 1rem 1.75rem;
        gap: 1.5rem;
    }

    /* reduce large feature gaps */
    .feature-content {
        gap: 5rem;
    }
}

/* Clear, focused responsive rules for <=768px to ensure intro and services stack cleanly */
@media (max-width: 768px) {
    .intro-section {
        padding: 2.5rem 0 1.5rem;
    }

    .intro-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    .intro-media {
        display: flex;
        flex-direction: column;
        gap: 0.95rem;
        align-items: stretch;
    }

    .media-main {
        height: 260px;
        border-radius: 10px;
    }

    .media-main img {
        height: 100%;
        object-fit: cover;
    }

    .media-play {
        left: 50%;
        transform: translateX(-50%);
        bottom: 14px;
    }

    .media-side {
        flex-direction: row;
        gap: 0.6rem;
    }

    .media-side img {
        width: calc(50% - 0.3rem);
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .intro-copy {
        padding: 0;
        text-align: left;
    }

    .intro-copy h2 {
        font-size: 26px;
    }

    .intro-copy p {
        font-size: 15px;
    }

    .brand-logos {
        justify-content: center;
        gap: 12px;
    }

    /* Services section adjustments */
    .services-section {
        padding: 2rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .service-item {
        padding: 8px 12px;
        align-items: flex-start;
        background: rgb(255 255 255 / 4%);
        border-radius: 8px;
    }

    .service-item i {
        font-size: 18px;
    }

    .service-item p {
        font-size: 16px;
    }

    .our-work {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .our-work h3 {
        font-size: 22px;
    }

    .cta-button.outline {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .intro-container {
        padding: 0 16px;
    }

    .brand-logos {
        gap: 12px;
    }
}

/* separate services section (keeps visual spacing when split) */
.services-section {

    padding: 80px 0px 80px 0px;
}

/* Tweak layout specifically for ~1280px viewports to improve flexibility */
@media (max-width: 1280px) {

    /* allow main containers to breathe and use fluid width */
    .nav-container,
    .hero-content,
    .feature-content,
    .showcase-content,
    .ventures-content,
    .footer-content,
    .intro-container {
        width: 100%;
        max-width: 1180px;
        padding: 0 22px;
        margin: 0 auto;
    }

    /* slightly reduce horizontal gaps so content fits without wrapping awkwardly */
    .intro-grid {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }

    .intro-media {
        gap: 0.75rem;
    }

    .media-main {
        height: -webkit-fill-available;
    }

    .media-side img {
        height: 140px;
    }

    /* adjust typographic scale for medium-large tablets / small laptops */
    .intro-copy h2 {
        font-size: 34px;
    }

    .intro-copy p {
        font-size: 16px;
    }

    /* services: keep 2 columns for clarity at this width */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-item {
        padding: 1rem;
    }

    /* showcase: slightly reduce image height so stats don't overlap */
    .showcase-image {
        height: 420px;
    }

    .showcase-stats {
        gap: 2.25rem;
        padding: 1.25rem 2rem;
    }

    /* features: reduce large gaps to prevent excessive whitespace */
    .feature-content {
        gap: 4.5rem;
    }

    /* keep footer readable */
    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Hot Tours Section */
.hot-tours {
    padding: 0px 0px 0px 0px;
    position: relative;
    z-index: 100;
    background-color: rgb(248 249 250 / 80%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hot-tours-container {
    width: 100%;
    margin: 0 auto;
    padding: 24px 0px;
    max-width: 1360px;
}

.tours-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.tours-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 48px;
    max-width: 600px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    margin: auto;
    width: fit-content;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tour-image {
    position: relative;
    height: 220px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.bookmark-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.bookmark-btn:hover {
    background: #fff;
    color: #32c87f;
}

.tour-info {
    padding: 24px;
}

.tour-info h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.4;
}

.more-info {
    color: #32c87f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.more-info:hover {
    color: #28a068;
}

.more-info i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.more-info:hover i {
    transform: translateX(4px);
}

.tours-footer {
    text-align: center;
    margin-top: 48px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #ffc800;
    transform: translateY(-2px);
}

.explore-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Hot Tours */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hot-tours {
        padding: 60px 0px 0px 0px;
    }

    .tours-title {
        font-size: 40px;
    }
}

@media (max-width: 859px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0px !important;
    }

}

@media (max-width: 768px) {
    .hot-tours {
        padding: 40px 0px 0px 0px;
    }

    .tours-title {
        font-size: 32px;
    }

    .tours-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .tour-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hot-tours {
        padding: 32px 0;
    }

    .tour-info {
        padding: 16px;
    }

    .tour-info h3 {
        font-size: 16px;
    }

    .explore-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Project Card Styles */
.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;

    padding: 16px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px) saturate(2);
    -webkit-backdrop-filter: blur(10px) saturate(2);
}

.project-header {
    margin-bottom: 12px;
    /* border-bottom: 1px solid #ffffff; */
    padding-bottom: 4px;
}

.project-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 0px;
    font-weight: 600;
    background: linear-gradient(133deg, rgb(33, 81, 131) 20%, rgb(29 53 77 / 0%) 93%);
    border-radius: 6px;
    padding: 6px 16px 2px 16px;
}

.info-item {
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 0px solid #eee;
    display: grid;
    grid-template-columns: 195px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
}

.info-value {
    font-size: 15px;
    color: #071133;
    line-height: 1.6;
    background: rgb(248 249 250);
    padding: 6px 8px;
    border-radius: 6px;
    border: 0px solid rgb(234 234 234);
    font-weight: 600;
}

@media (max-width: 768px) {
    .project-card {
        padding: 20px;
    }

    .project-title {
        font-size: 24px;
    }

    .info-label {
        font-size: 14px;
    }

    .info-value {
        font-size: 16px;
    }
}

/* Project Overview Section */
.project-overview {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.overview-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.overview-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.overview-header h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.overview-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overview-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* Project Card Carousel Styles */
.venture-carousel {
    position: relative;
    display: block;
    margin: 0rem 0;
}

.platter {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.platter::-webkit-scrollbar {
    display: none;
}

.hot-tours .platter {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    max-width: var(--container-max);
    margin: 0 auto;
    justify-content: center;
}

.hot-tours .platter {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    max-width: var(--container-max);
    margin: 0 auto;
    justify-content: flex-start;
    width: 100%;
}

.hot-tours .platter::-webkit-scrollbar {
    display: none;
}

.venture-card {
    scroll-snap-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

/* Special styling for about page cards */
.hot-tours .venture-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    scroll-snap-align: center;
}

.hot-tours .venture-card .project-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgb(255 255 255);
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
    height: 100%;
}

.platter-prev,
.platter-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(43 182 115 / 80%);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 32px;
    padding: 2px 4px 8px 4px;
    transition: background-color 0.3s ease;
}

.platter-prev {
    left: -12px;
}

.platter-next {
    right: -12px;
}

.platter-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
}

.platter-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(33, 81, 131, 0.2);
    cursor: pointer;
}

.platter-dots button.active {
    background: rgba(33, 81, 131, 1);
}

.hot-tours .platter-prev:hover,
.hot-tours .platter-next:hover {
    background: rgb(127 223 177 / 80%);
}

.hot-tours .platter-prev {
    left: 12px;
}

.hot-tours .platter-next {
    right: 12px;
}

.hot-tours .platter-dots {
    display: none;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
}

.hot-tours .platter-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(33, 81, 131, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hot-tours .platter-dots button.active {
    background: rgba(33, 81, 131, 1);
}

@media (max-width: 768px) {
    .hot-tours .venture-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hot-tours .platter {
        padding: 1rem 0rem;
    }

    .hot-tours .platter-prev,
    .hot-tours .platter-next {
        width: 32px;
        height: 32px;
        font-size: 32px;
    }
    .hot-tours .platter-dots {
    display: flex;
}
}

/* Responsive Styles */
@media (max-width: 1024px) {}