
:root{
    --navy:#07142a;
    --gold:#d4af37;
    --muted:#6b7280;
    --glass: rgba(255,255,255,0.06);
}
*{
    box-sizing:border-box
}
html,body{
    height:100%;
    margin:0;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial;
    color:#0f172a;
    background:white
}
a{
    color:inherit;
    text-decoration:none
}
.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px
}
.header{
    background:var(--navy);
    color:white;
    position:sticky;
    top:0;
    z-index:60;
    box-shadow:0 8px 28px rgba(2,6,23,0.6)
}
.header .inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600
}
.brand .logo{
    width:48px;
    height:48px;
    border-radius:10px;
    background:linear-gradient(135deg,var(--gold),#ffd46a);
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    box-shadow:0 6px 18px rgba(212,175,55,0.18)
}
.nav{
    display:flex;
    gap:18px;
    align-items:center;
    color:rgba(255,255,255,0.95)
}
.cta{
    background:var(--gold);
    color:var(--navy);
    padding:10px 16px;
    border-radius:10px;
    font-weight:700;
    box-shadow:0 8px 28px rgba(212,175,55,0.18)
}
.mobile-btn{
    display:none;
    background:transparent;
    border:1px solid rgba(255,255,255,0.06);
    color:var(--gold);
    padding:8px;
    border-radius:8px
}
@media(max-width:900px){
    .nav{
        display:none
    }
    .mobile-btn{
        display:inline-block
    }
}

/* HERO */
.hero{
    position:relative;
    height:78vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    color:white
}
.hero .bg{
    position:absolute;
    inset:0;
    object-fit:cover;
    width:100%;
    height:100%;
    transform:scale(1.04);
    transition:transform 12s ease
}
.hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(7,20,42,0.7), rgba(7,20,42,0.92));
    backdrop-filter: blur(2px)
}
.hero .content{
    position:relative;
    z-index:4;
    text-align:center;
    padding:0 18px;
    max-width:980px
}
.kicker{
    display:inline-block;
    background:var(--glass);
    padding:8px 12px;
    border-radius:999px;
    color:#e6eef8;
    margin-bottom:14px;
    font-weight:700;
    font-size:13px
}
.title{
    font-size:clamp(30px,5vw,52px);
    line-height:1.02;
    margin:0 0 12px;
    font-weight:800;
    letter-spacing:-0.4px
}
.subtitle{
    color:rgba(255,255,255,0.92);
    font-size:clamp(15px,1.6vw,18px);
    margin:0 0 20px
}
.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* darker overlay for text visibility */
    z-index: 1;
}
/* floating shapes */
.shape{
    position:absolute;
    z-index:3;
    opacity:0.12;
    filter:blur(8px);
    transform:translate3d(0,0,0)
}
.shape.gold{
    background:radial-gradient(circle at 30% 30%, rgba(212,175,55,1), rgba(212,175,55,0.6));
    width:300px;
    height:300px;
    border-radius:50%
}
.shape.small{
    width:120px;
    height:120px;
    border-radius:8px;
    background:linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02))
}

/* rotating quotes */
.quotes{
    margin-top:12px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden
}
.quote{
    position:absolute;
    opacity:0;
    transform:translateY(6px);
    transition:all .6s ease;
    text-align:center;
    width:100%;
    max-width:760px;
    color:rgba(255,255,255,0.9);
    font-weight:600
}

/* CTAs */
.cta-row{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap
}
.btn-outline{
    padding:12px 18px;
    border-radius:10px;
    border:2px solid rgba(212,175,55,0.95);
    background:transparent;
    color:var(--gold);
    font-weight:700
}
.btn-primary{
    padding:12px 18px;
    border-radius:10px;
    background:var(--gold);
    color:var(--navy);
    font-weight:800;
    box-shadow:0 12px 30px rgba(13,23,40,0.14)
}

/* vision */
.vision{
    padding:44px 0;
    text-align:center
}
.vision p{
    max-width:900px;
    margin:0 auto;
    color:#334155
}

/* Why Shadnagar */
.why{
    background:linear-gradient(180deg, #f8fafc, #ffffff);
    padding:56px 0
}
.why .grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}
@media(max-width:900px){
    .why .grid{
        grid-template-columns:1fr
    }
}
.why .card{
    background:var(--navy);
    color:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 12px 28px rgba(11,20,40,0.06);
    display:flex;
    gap:12px;
    align-items:flex-start
}
.icon{
    width:48px;
    height:48px;
    border-radius:10px;
    background:linear-gradient(135deg,var(--gold),#ffd46a);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    color:var(--navy);
    margin-right:10px
}

/* Featured & other */
.section{
    padding:56px 0
}
.section h2{
    margin:0 0 20px;
    text-align:center;
    color:var(--navy);
    font-size:28px
}
.grid{
    display:grid;
    gap:20px
}
.grid.cols-3{
    grid-template-columns:repeat(3,1fr)
}
@media(max-width:900px){
    .grid.cols-3{
        grid-template-columns:1fr
    }
}
.card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(11,20,40,0.06);
    transition:transform .35s ease,box-shadow .35s ease
}
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(11,20,40,0.12)
}
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block
}
.card .pad{
    padding:16px
}

/* counters */
.counter{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    padding:18px;
    background:white;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(11,20,40,0.06);
    font-weight:700
}
.counter .num{
    font-size:28px;
    color:var(--navy)
}

/* Floating action buttons */
.fabs{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:80
}
.fab{
    width:56px;
    height:56px;
    border-radius:999px;
    background:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--navy);
    box-shadow:0 12px 30px rgba(13,23,40,0.14);
    transition:transform .15s ease
}
.fab:hover{
    transform:translateY(-6px)
}

/* Footer */
.footer{
    background:var(--navy);
    color:rgba(255,255,255,0.92);
    padding:36px 0;
    margin-top:28px
}
.footer a{
    color:inherit
}

/* Reveal */
.reveal{
    opacity:0;
    transform:translateY(20px);
    transition:all .7s cubic-bezier(.2,.9,.3,1)
}
.reveal.show{
    opacity:1;
    transform:none
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 0;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        overflow: hidden;
        max-height: 0;
        width: 90%;
        right: 5%;
        border-radius: 10px;
    }

    .nav.open {
        display: flex;
        max-height: 400px;
        padding: 12px 0;
    }
    /* Fix for white background - make menu items visible */
    .nav a {
        display: block;
        padding: 12px 0;
        color: var(--navy); /* dark text for white background */
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a:hover {
        background: #f8f8f8;
        color: var(--gold);
    }

    /* Enquire button fix for mobile */
    .nav .cta {
        background: var(--gold);
        color: var(--navy);
        border-radius: 8px;
        margin-top: 8px;
    }
}

/* Desktop view */
@media (min-width: 769px) {
    .nav {
        display: flex;
        gap: 20px;
        position: static;
        background: none;
        box-shadow: none;
    }

    .mobile-btn {
        display: none;
    }
}


/* === Mobile Menu Button === */
.mobile-btn {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    color: var(--navy); /* Change to #fff if header bg is dark */
    display: none; /* hidden by default */
}
.mobile-btn {
    color: #fff;
}
/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-btn {
        display: block;
    }
}

.sell-form {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.sell-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.sell-form input,
.sell-form textarea {
    padding: 12px 14px;
    border: 1px solid #e0e8f2;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.sell-form input:focus,
.sell-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 200, 80, 0.2);
}

.sell-form button {
    margin-top: 10px;
    width: 100%;
    font-weight: 600;
    padding: 12px;
}

/* === Venture Gallery Styling === */
.gallery-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(11, 20, 40, 0.08);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 20, 40, 0.15);
}

.gallery-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .gallery-card img {
        height: 180px;
    }
}

/* === Lightbox Adjusted for Scrollable Tall Images === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto; /* allows vertical scroll for tall images */
    padding: 60px 0;
    text-align: center;
}

.lightbox-content {
    display: inline-block;
    max-width: 95%;
    max-height: 90vh; /* restrict to viewport height */
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

#caption {
    text-align: center;
    color: #ccc;
    margin-top: 10px;
    font-size: 14px;
}

.close {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s;
}
.close:hover {
    color: #ffd46a;
}

.prev,
.next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    border-radius: 3px;
    user-select: none;
}

.prev {
    left: 20px;
}
.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}



.lightbox{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
}
.lightbox-content{
    margin:auto;
    display:block;
    width:90%;
    max-width:900px;
    border-radius:10px;
}
.close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}
.prev,.next{
    cursor:pointer;
    position:absolute;
    top:50%;
    padding:16px;
    color:#fff;
    font-size:24px;
}
.prev{
    left:20px
}
.next{
    right:20px
}

/* === Venture Gallery Images === */
.venture-gallery img {
    width: 100%;
    height: 240px; /* fixed height for uniform display */
    object-fit: cover; /* crop without stretching */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(11, 20, 40, 0.08);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.venture-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(11, 20, 40, 0.15);
}

/* Mobile view adjustment */
@media (max-width: 768px) {
    .venture-gallery img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .hero .title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero .subtitle {
        font-size: 0.9rem;
    }
}

.btn-outline {
    display: inline-block;
    margin: 6px;
    width: auto;
    min-width: 160px;
}
@media (max-width: 768px) {
    .btn-outline {
        display: block;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .venture-gallery {
        grid-template-columns: 1fr; /* stack images */
        gap: 12px;
    }
}



/* --- Global Button Styles --- */
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffdb66;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Optional emoji/icon adjustment */
.btn-primary span,
.btn-outline span {
    display: inline-flex;
    align-items: center;
}


footer {
    position: relative;
    background: linear-gradient(180deg, #0d1326 0%, #111a33 100%);
    color: #fff;
    overflow: hidden;
}

/* Smooth curved top wave */
footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 80px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.15), transparent 70%);
    border-radius: 50% 50% 0 0;
    filter: blur(20px);
}

/* Elegant background shimmer / gradient glow */
footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.08));
    pointer-events: none;
}

/* Optional soft gold particle effect */
@keyframes shimmer {
    0% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }
}

footer .sparkle {
    position: absolute;
    bottom: 30px;
    left: 20%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: shimmer 5s infinite ease-in-out;
}
footer .sparkle:nth-child(2) {
    left: 60%;
    animation-delay: 2s;
}
footer .sparkle:nth-child(3) {
    left: 80%;
    animation-delay: 3.5s;
}

/* --- IMAGE STYLING FOR WHY INVEST PAGE --- */
.responsive-img {
    width: 100%;
    max-width: 420px; /* Keeps the image neat and not too wide */
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .responsive-img {
        max-width: 100%;
        margin-top: 12px;
    }
}

/* Optional tweak to keep two-column sections clean */
.grid.cols-2 {
    align-items: center;
    gap: 24px;
}

.grid.cols-2 img {
    object-fit: cover;
}