/* ============================================================
   SHANKAR PROPERTIES — Luxury Real Estate Stylesheet
   Aesthetic: Editorial Luxury | Warm Gold + Deep Navy
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:     #000000;
    --navy-mid: #1a1a1a;
    --gold:     #ff6600;
    --gold-lt:  #ff8533;
    --cream:    #faf7f2;
    --warm:     #f0ebe0;
    --text:     #2e2e2e;
    --muted:    #7a7060;
    --white:    #ffffff;
    --radius:   6px;
    --shadow:   0 8px 40px rgba(0,0,0,.12);
    --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; }


img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.serif { font-family: 'Montserrat', sans-serif; }

h1,h2,h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

.logo-icon{
    width: 65px;
    height: auto;
    object-fit: contain;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: .85rem 2.2rem;
      font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,102,0,.35); }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }

/* ---- SECTION LABELS ---- */
.section-label {
    display: inline-block;
     font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

/* ---- DIVIDER ---- */
.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem 0 1.5rem;
}
.gold-line.center { margin: 1rem auto 1.5rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 2.4rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: .92rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.25);

}
.navbar.scrolled .nav-links a{
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(2, 2, 2, 0.8);
    position: relative;
    transition: color var(--transition);
}
.navbar.scrolled .logo-main {
   font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: black;
    letter-spacing: .04em;
}

.nav-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.logo-icon { font-size: 1.6rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
   font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .04em;
}
.logo-sub {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-links a {
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-nav {
    flex-shrink: 0;
    padding: .6rem 1.4rem;
      font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius);
    transition: var(--transition);
}
.btn-nav:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero-slider-section{
    width:100%;
    background:#fff;
    font-family:'Segoe UI',sans-serif;
    padding-bottom:30px;
}

.hero-slider-container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ── MAIN CAROUSEL ─────────────────────────────────── */
.main-carousel{
    position:relative;
    width:100%;
    overflow:hidden;
}

.carousel-track{
    display:flex;
    transition:transform .5s cubic-bezier(.4,0,.2,1);
    will-change:transform;
}

.carousel-slide{
    min-width:100%;
    height:650px;
    flex-shrink:0;
}

.carousel-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ── ARROWS ────────────────────────────────────────── */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.carousel-arrow span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 32px;
    line-height: 1;
    font-family: Arial, sans-serif;
    font-weight: 300;

    /* Fine adjustment for the arrow character */
    transform: translateY(-1px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}

.arrow-prev{left:16px;}
.arrow-next{right:16px;}

/* ── THUMBNAILS ────────────────────────────────────── */
.thumb-strip{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:12px;
}

.thumb{
    width:96px;
    height:62px;
    object-fit:cover;
    border-radius:3px;
    cursor:pointer;
    opacity:.65;
    border:2px solid transparent;
    transition:opacity .25s,border-color .25s,transform .2s;
}
.thumb:hover{opacity:.9;transform:translateY(-2px);}
.thumb.active-thumb{
    opacity:1;
    border-color:#e07a10;
    transform:translateY(-3px);
    box-shadow:0 4px 12px rgba(224,122,16,.3);
}

/* ── PROJECT TITLE ─────────────────────────────────── */
.project-title{
    margin-top:16px;
    text-align:center;
}
.project-title h2{
    font-size:22px;
    font-weight:700;
    color:#222;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media(max-width:768px){
    .carousel-slide{height:240px;}
    .thumb{width:62px;height:42px;}
    .carousel-arrow{width:34px;height:34px;font-size:22px;}
    .project-title h2{font-size:16px;}
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: 1rem;
}

.search-field label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

.search-field input,
.search-field select {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    color: var(--white);
      font-family: 'Inter', sans-serif;
    font-size: .9rem;
    width: 100%;
    outline: none;
    transition: border-color var(--transition);
}

.search-field input::placeholder { color: rgba(255,255,255,.35); }
.search-field select option { background: var(--navy); }

.search-field input:focus,
.search-field select:focus { border-color: var(--gold); }

.search-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 7rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Placeholder if no image */
.about-img-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--warm) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow);
}

.about-badge-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,102,0,.4);
}
.about-badge-float .num {
font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge-float .lbl {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .2rem;
}

.about-text h2 { margin-bottom: .5rem; }
.about-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1rem; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.about-feat-icon {
    width: 42px; height: 42px;
    border-radius: 8px;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--gold);
}

.about-feat-title {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: .15rem;
}
.about-feat-desc { font-size: .8rem; color: var(--muted); }

/* ============================================================
   FEATURED PROPERTIES (Homepage)
   ============================================================ */
.featured-section {
    padding: 7rem 2rem;
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1rem;
}

/* ============================================================
   PROPERTY CARD
   ============================================================ */
.properties-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.prop-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: var(--transition);
    position: relative;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.prop-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.prop-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

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

.prop-badge {
    position: absolute;
    top: .9rem; left: .9rem;
    padding: .3rem .8rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--gold);
    color: var(--navy);
}
.prop-badge.hot   { background: #e74c3c; color: var(--white); }
.prop-badge.new   { background: #27ae60; color: var(--white); }
.prop-badge.prem  { background: var(--navy); color: var(--gold); }

.prop-body { padding: 1.5rem; }

.prop-type {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.prop-title {
   font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
    line-height: 1.3;
}

.prop-location {
    font-size: .82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: 1rem;
}

.prop-specs {
    display: flex;
    gap: 1.2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--warm);
    border-bottom: 1px solid var(--warm);
    margin-bottom: 1rem;
}

.prop-spec {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--muted);
}

.prop-spec i { color: var(--gold); font-size: .8rem; }

.prop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prop-price {
   font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.prop-cta {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: gap var(--transition);
}
.prop-card:hover .prop-cta { gap: .6rem; }

/* ============================================================
   WHY CHOOSE US (Homepage)
   ============================================================ */
.why-section {
    padding: 7rem 2rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,102,0,.1), transparent 70%);
}

.why-container { max-width: 1280px; margin: auto; }

.why-section .section-label { color: var(--gold-lt); }
.why-section h2 { color: var(--white); text-align: center; margin-bottom: .5rem; }
.why-section .section-header p { color: rgba(255,255,255,.5); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,102,0,.1);
    border-color: rgba(255,102,0,.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,102,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); }

.why-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: .6rem;
}
.why-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 7rem 2rem;
    background: var(--warm);
}

.testi-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    position: relative;
}

.testi-quote {
    font-size: 3rem;
   font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.testi-text {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid var(--gold);
}

.testi-name { font-size: .9rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: .75rem; color: var(--muted); }

.testi-stars { color: var(--gold); font-size: .8rem; margin-bottom: .2rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1b3a5c 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,102,0,0.08)'/%3E%3C/svg%3E") repeat;
}

.cta-section h2, .cta-section p { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   PROPERTIES LISTING PAGE
/* ============================================================
   PAGE HERO
============================================================ */
.page-hero{
    padding: 9rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.72);
}

.page-hero-content{
    position:relative;
    z-index:1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: .8rem;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.page-hero p {
    color: rgba(255,255,255,.70);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: .5rem;
    align-items: center;
    margin-top: 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
}

.breadcrumb a {
    color: #ff6600;
    text-decoration: none;
    transition: .3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255,255,255,.35);
}

/* SERVICES PAGE */
.services-hero{
    background-image:
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1920&auto=format&fit=crop');
}

/* CONTACT PAGE */
.contact-hero{
    background-image:
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920&auto=format&fit=crop');
}

/* PROPERTIES PAGE */
.properties-hero{
    background-image:
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920&auto=format&fit=crop');
}

/* ABOUT PAGE */
.about-hero{
    background-image:
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
}


/* Filter Bar */
.filter-bar {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 65px;
    z-index: 100;
}

.filter-container {
    max-width: 1280px;
    margin: auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: .6rem 1rem;
    border: 1.5px solid var(--warm);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    color: var(--text);
    background: var(--cream);
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
    min-width: 140px;
}

.filter-select:focus { border-color: var(--gold); }

.filter-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: .5rem;
}

.properties-page {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: auto;
}

.properties-page .properties-grid { margin: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
    padding: 6rem 2rem;
    background: var(--white);
}

.services-intro-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.services-list-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--warm);
    transition: var(--transition);
    cursor: default;
}

.service-item:hover {
    border-color: var(--gold);
    background: rgba(255,102,0,.04);
    transform: translateX(4px);
}

.service-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: var(--warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
}
.service-item:hover .service-icon { background: var(--gold); color: var(--navy); }

.service-info h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.service-info p  { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.process-steps {
    max-width: 1000px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(to right, var(--gold) 0%, var(--warm) 100%);
}

.process-step { text-align: center; position: relative; }

.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 20px rgba(255,102,0,.4);
}

.process-step h4 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.process-step p  { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: var(--navy);
}

.pricing-section h2 { color: var(--white); }
.pricing-section .section-header p { color: rgba(255,255,255,.5); }

.pricing-grid {
    max-width: 1100px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    background: var(--gold);
    border-color: var(--gold);
}

.pricing-card:not(.featured):hover {
    background: rgba(255,102,0,.08);
    border-color: rgba(255,102,0,.3);
    transform: translateY(-4px);
}

.pricing-popular {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--gold);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 50px;
    border: 1px solid var(--gold);
}

.pricing-name {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
}
.pricing-card.featured .pricing-name { color: var(--navy); }

.pricing-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: .3rem;
}
.pricing-card.featured .pricing-price { color: var(--navy); }

.pricing-period {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.8rem;
}
.pricing-card.featured .pricing-period { color: rgba(0,0,0,.6); }

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.pricing-feat {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .84rem;
    color: rgba(255,255,255,.6);
}
.pricing-card.featured .pricing-feat { color: var(--navy-mid); }
.pricing-feat i { color: var(--gold); font-size: .9rem; }
.pricing-card.featured .pricing-feat i { color: var(--navy); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
/* ================================
   CONTACT SECTION
================================ */
.contact-section{
    padding:90px 20px;
    background:#fff7f0;
}

.contact-top{
    max-width:750px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.section-label{
    color:#ff6600;
    font-size:.8rem;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.contact-top h2{
    font-size:clamp(2.8rem,6vw,5rem);
    color:#111;
    margin:15px 0;
    line-height:1;
}

.contact-top p{
    color:#666;
    font-size:1rem;
    line-height:1.8;
}

/* QUICK CONTACT */
.quick-contact-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:45px;
}

.quick-card{
    border-radius:28px;
    padding:30px;
    text-decoration:none;
    display:flex;
    gap:20px;
    align-items:flex-start;
    transition:.35s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.quick-card:hover{
    transform:translateY(-8px);
}

.quick-icon{
    min-width:60px;
    height:60px;
    border-radius:18px;
    display:grid;
    place-items:center;
    font-size:1.5rem;
}

.quick-card span{
    display:block;
    font-size:.78rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:8px;
}

.quick-card strong{
    display:block;
    font-size:1rem;
    margin-bottom:5px;
}

.quick-card small{
    font-size:.82rem;
    line-height:1.6;
}

/* PHONE */
.phone-card{
    background:#eaf3ff;
}

.phone-card .quick-icon{
    background:#0d6efd;
    color:#fff;
}

.phone-card span,
.phone-card strong{
    color:#0d47a1;
}

/* EMAIL */
.email-card{
    background:#fff;
    border:1px solid #eee;
}

.email-card .quick-icon{
    background:#ff6600;
    color:#fff;
}

.email-card span{
    color:#ff6600;
}

.email-card strong{
    color:#111;
}

/* WHATSAPP */
.whatsapp-card{
    background:#e8fff1;
}

.whatsapp-card .quick-icon{
    background:#25d366;
    color:#fff;
}

.whatsapp-card span,
.whatsapp-card strong{
    color:#128c4a;
}

/* MAIN */
.contact-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* LEFT */
.office-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    display:flex;
    gap:18px;
    margin-bottom:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.office-icon{
    min-width:55px;
    height:55px;
    background:#fff0e6;
    color:#ff6600;
    border-radius:18px;
    display:grid;
    place-items:center;
    font-size:1.3rem;
}

.office-card h4{
    color:#111;
    margin-bottom:8px;
    font-size:1.2rem;
}

.office-card p{
    color:#666;
    line-height:1.8;
}



/* FORM */
.contact-form-wrap{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.contact-form-wrap h3{
    font-size:2rem;
    color:#111;
    margin-bottom:10px;
}

.contact-form-wrap p{
    color:#666;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

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

.form-group label{
    display:block;
    color:#000000;
    font-family: 'Poppins', sans-serif;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px;
    border-radius:16px;
    border:1px solid #ddd;
    background:#fff;
    outline:none;
    transition:.3s ease;
    font-size:.95rem;
}

.form-group textarea{
    min-height:140px;
    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff6600;
    box-shadow:0 0 0 4px rgba(255,102,0,.13);
}

/* map viwe */

.map-view-wrapper {
    width: 100%;
}

.map-tabs {
    display: flex;
    background: #151515;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.map-tab {
    flex: 1;
    border: none;
    background: transparent;
    color: #999;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    position: relative;
}

.map-tab.active {
    color: #fff;
}

.map-tab.active::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 4px;
    background: #ff5a00;
    border-radius: 10px 10px 0 0;
}

.map-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-content {
    display: none;
}

.map-content.active {
    display: block;
}

@media (max-width: 600px) {
    .map-box {
        height: 320px;
    }

    .map-tab {
        font-size: 14px;
        padding: 15px 10px;
    }
}

/* BUTTON */
.submit-btn{
    width:100%;
    border:0;
    background:#ff6600;
    color:#fff;
    padding:18px;
    border-radius:18px;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
    transition:.35s ease;
}

.submit-btn:hover{
    background:#111;
    transform:translateY(-4px);
}

.secure-text{
    text-align:center;
    color:#777;
    font-size:.8rem;
    margin-top:18px;
}

/* SUCCESS */
.alert-success{
    background:#e8fff1;
    color:#128c4a;
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
}

/* ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */
@media(max-width:992px){

    .quick-contact-grid{
        grid-template-columns:1fr;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }
}

@media(max-width:600px){

    .contact-section{
        padding:70px 15px;
    }

    .quick-card{
        padding:22px;
    }

    .contact-form-wrap{
        padding:25px;
    }


}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: rgb(43, 40, 40);
    color: rgba(255,255,255,.6);
    padding: 5rem 2rem 0;
}
.footer-logo-icon{
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 100px;
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.2rem;
}

.footer-tagline { font-size: .88rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: .8rem; }

.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }

.footer-col ul li a {
    font-size: .84rem;
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-size: .84rem;
}
.footer-contact-list li i { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }

.footer-bottom {
    max-width: 1280px;
    margin: auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-container    { grid-template-columns: 1fr; gap: 3rem; }
    .hero-card-wrap    { display: none; }
    .hero-stats        { grid-template-columns: repeat(3, 1fr); }
    .why-grid          { grid-template-columns: repeat(2, 1fr); }
    .properties-grid   { grid-template-columns: repeat(2, 1fr); }
    .about-container,
    .services-intro-container,
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-container  { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .nav-toggle         { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(0,0,0,.98);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        backdrop-filter: blur(10px);
    }
    .properties-grid   { grid-template-columns: 1fr; }
    .why-grid          { grid-template-columns: 1fr 1fr; }
    .testi-grid        { grid-template-columns: 1fr; }
    .pricing-grid      { grid-template-columns: 1fr; }
    .process-steps     { grid-template-columns: repeat(2, 1fr); }
    .footer-container  { grid-template-columns: 1fr; }
    .footer-bottom     { flex-direction: column; gap: .5rem; text-align: center; }
    .about-features    { grid-template-columns: 1fr; }
    .form-row          { grid-template-columns: 1fr; }
    .hero-stats        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .why-grid      { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .search-grid   { grid-template-columns: 1fr; }
}

/* home page Services Section Here */


.home-services-section {
    padding: 110px 20px;
    background: #f3efe6;
    font-family: inherit;
}

.home-services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.home-services-subtitle {
    color: #ff5a00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 18px;
}

.home-services-container h2 {
    /* font-size: clamp(36px, 5vw, 64px); */
     font-size: 40px;
     font-family: 'Poppins', sans-serif;
    line-height: 1.05;
    color: #0c1824;
    margin-bottom: 18px;
    font-weight: 600;
}

.home-services-text {
    max-width: 720px;
    margin: 0 auto 55px;
    color: #6f6255;
    font-size: 17px;
    line-height: 1.8;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-service-card {
    background: #fff;
    padding: 42px 28px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 90, 0, 0.12);
    transition: 0.35s ease;
}

.home-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.home-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff3ea;
    color: #ff5a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 26px;
    border: 2px solid #ff5a00;
}

.home-service-card h3 {
    font-size: 22px;
    color: #0c1824;
    margin-bottom: 14px;
    font-weight: 900;
}

.home-service-card p {
    color: #6f6255;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-services-section {
        padding: 75px 16px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        padding: 34px 24px;
    }
}

/* ===========================
   TRUST SECTION
=========================== */

.trust-strip-section {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    color: #fff;

    background-image:
        radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(
            135deg,
            #071827 0%,
            #0c2740 45%,
            #12385b 100%
        );

    background-size: 24px 24px, cover;
}

.trust-strip-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.12);
    filter: blur(120px);
}

.trust-strip-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    filter: blur(120px);
}

.trust-strip-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
}

.trust-strip-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.trust-strip-header p {
    color: #ff6a00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trust-strip-header h2 {
   font-size: 40px;
     font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 18px;
}

.trust-strip-header span {
    display: block;
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.8;
}

/* ===========================
   GRID
=========================== */

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.trust-strip-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;

    padding: 35px 24px;
    text-align: center;

    transition: all .35s ease;
}

.trust-strip-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255,106,0,.4);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

/* ===========================
   ICON
=========================== */

.trust-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ff6a00,
        #ff9347
    );

    color: #fff;
    font-size: 30px;

    box-shadow: 0 15px 35px rgba(255,106,0,.35);
}

/* ===========================
   CONTENT
=========================== */

.trust-strip-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
}

.trust-strip-item p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.72);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1200px) {
    .trust-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-strip-section {
        padding: 80px 16px;
    }

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

    .trust-strip-header h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-header h2 {
        font-size: 32px;
    }

    .trust-strip-item {
        padding: 30px 22px;
    }
}


/* OUR ASSOCIATIONS */

.member-logo-section {
    padding: 90px 20px;
    background: #f3efe6;
    overflow: hidden;
}

.member-logo-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.member-logo-subtitle {
    color: #ff5a00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 14px;
}

.member-logo-container h2 {
    font-size: clamp(34px, 4vw, 52px);
    color: #222;
    margin-bottom: 14px;
}

.member-logo-text {
    color: #6f6255;
    font-size: 17px;
    margin-bottom: 45px;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 38px;
    width: max-content;
    animation: logoMove 18s linear infinite;
}

.logo-item {
    width: 230px;
    height: 130px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes logoMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .logo-item {
        width: 180px;
        height: 110px;
    }
}



/* =========================
   VIEW PROJECTS SECTION
========================= */

.projects-showcase {
    padding: 110px 20px;
    background: linear-gradient(135deg, #f8f1e6 0%, #f3eadc 50%, #efe2cf 100%);
    overflow: hidden;
}

.projects-showcase-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 70px;
    align-items: center;
}

.projects-tag {
    display: inline-block;
    color: #ff5a00;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.projects-left h2 {
    font-size: clamp(8px, 4vw, 40px);
    line-height: 1.15;
    color: #102033;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.projects-left h2 span {
    display: block;
    color: #ff5a00;
}

.projects-left p {
    max-width: 620px;
    color: #6f6255;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 34px;
}

.projects-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 50px;
    background: #ff5a00;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 14px 30px rgba(255, 90, 0, .25);
}

.projects-btn:hover {
    background: #e14f00;
    transform: translateY(-3px);
}

.projects-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid rgba(16, 32, 51, .14);
}

.project-status:first-child {
    border-top: 1px solid rgba(16, 32, 51, .14);
}

.project-status h3 {
    color: #102033;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.project-status span {
    color: #ff5a00;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

/* Responsive */
@media (max-width: 992px) {
    .projects-showcase-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .projects-right {
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .projects-showcase {
        padding: 75px 16px;
    }

    .projects-left h2 {
        font-size: 34px;
    }

    .projects-left p {
        font-size: 15px;
    }

    .project-status h3 {
        font-size: 20px;
    }

    .project-status span {
        font-size: 42px;
    }
}

