:root {
    --primary: #b48d3e;
    --primary-dark: #93712b;
    --secondary: #356535;
    --secondary-dark: #234723;
    --bg-light: #fcfbf8;
    --text-dark: #1f1f1f;
    --text-muted: #555555;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(180, 141, 62, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 141, 62, 0.6);
    color: var(--text-light);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(53, 101, 53, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(53, 101, 53, 0.6);
    color: var(--text-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-soft);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Google Translate Overrides */
#google_translate_element {
    display: flex;
    align-items: center;
}
.goog-te-gadget {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
    font-family: 'Outfit', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}
.goog-te-gadget .goog-te-combo:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for navbar */
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 141, 62, 0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 101, 53, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-desc {
    margin-bottom: 2.5rem;
}

.hero-desc p {
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.hero-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero-statement {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-slider-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-slider-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    z-index: 10;
    pointer-events: none;
}

.hero-swiper {
    width: 100%;
    height: 500px;
    background: #ffffff;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

/* Sticky WhatsApp */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    color: white;
}

/* Vastu for Property Section */
.properties-section {
    background-color: #ffffff;
}

.property-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: #f0f0f0;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: #e0e0e0;
}

.tab-btn.active {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(180, 141, 62, 0.3);
}

.property-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 4/3;
    background: #ffffff;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem 1rem 3.5rem 1rem;
    transition: transform 0.5s ease;
}

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

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 10;
}

/* Problems Solved Section */
.problems-section {
    position: relative;
}

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

.problem-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--secondary);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(53, 101, 53, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--secondary);
    color: var(--text-light);
}

.how-it-works h2 {
    color: var(--text-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(180, 141, 62, 0.4);
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════
   EXPLORE OUR WORK — Premium Luxury Showcase Section
═══════════════════════════════════════════════════════════════════ */

/* ─── Section wrapper ─── */
.explore-work-section {
    background: linear-gradient(160deg, #fcfbf8 0%, #ffffff 50%, #f7f5f0 100%);
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
}

/* Subtle texture backdrop */
.explore-work-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180, 141, 62, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.explore-work-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(53, 101, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ─── 2-column split ─── */
.explore-work-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(460px, 1.36fr);
    gap: 3.75rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════
   LEFT PANEL — Elegant Typography
════════════════════════════════ */
.explore-work-left {
    position: relative;
}

/* Kicker label */
.ew-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.ew-kicker-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Main heading */
.ew-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 0;
    text-align: left;
    letter-spacing: 0;
    white-space: normal;
}

.ew-heading-accent {
    font-style: normal;
    color: var(--primary);
    display: block;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.15;
    margin: 0.6rem 0 0;
    letter-spacing: 0;
}

/* Gold divider bar */
.ew-divider {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    margin: 1.8rem 0 1.6rem;
}

/* Subtitle text */
.ew-subline {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 390px;
    font-weight: 400;
}

/* ─── Non-clickable category list ─── */
.ew-display-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ew-display-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(180, 141, 62, 0.12);
    cursor: default;
    position: relative;
    overflow: hidden;
}

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

/* Animated left accent on item */
.ew-display-item::before {
    display: none;
}

.ew-display-item:hover::before {
    height: 0;
}

/* Number */
.ew-item-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    opacity: 0.7;
    min-width: 24px;
}

/* Icon + label wrapper */
.ew-item-content {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex: 1;
}

/* Icon circle */
.ew-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(180, 141, 62, 0.08);
    border: 1px solid rgba(180, 141, 62, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    transition: none;
}

.ew-display-item:hover .ew-item-icon {
    background: rgba(180, 141, 62, 0.08);
    color: var(--primary);
    border-color: rgba(180, 141, 62, 0.18);
    transform: none;
}

/* Label */
.ew-item-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0;
    transition: none;
}

.ew-display-item:hover .ew-item-label {
    color: var(--text-dark);
}

/* ════════════════════════════════
   RIGHT PANEL — Premium Slideshow
════════════════════════════════ */
.explore-work-right {
    position: relative;
    min-width: 0;
    overflow: visible;
    isolation: isolate;
}

/* Decorative background rings */
.ew-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.ew-ring-1 {
    width: 560px;
    height: 560px;
    border: 1px solid rgba(180, 141, 62, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ew-ring-2 {
    width: 620px;
    height: 620px;
    border: 1px solid rgba(53, 101, 53, 0.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Main slideshow container (also acts as <a> link) */
.explore-work-slideshow-wrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.14),
        0 16px 40px rgba(180, 141, 62, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    cursor: pointer;
    text-decoration: none;
    z-index: 2;
    /* Subtle border frame */
    outline: 2px solid rgba(180, 141, 62, 0.08);
    outline-offset: 6px;
    transition: box-shadow 0.4s ease, outline-offset 0.4s ease;
}

.explore-work-slideshow-wrap:hover {
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.18),
        0 20px 50px rgba(180, 141, 62, 0.14);
    outline-offset: 10px;
}

/* ─── Slides ─── */
.ew-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.ew-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.ew-slide.active {
    opacity: 1;
}

.ew-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #ffffff;
    transform: scale(1);
    transition: transform 5.5s ease;
}

.ew-slide.active img {
    transform: scale(1);
}

/* Elegant bottom gradient overlay */
.ew-slide-overlay {
    display: none;
}

/* Slide category label */
.ew-slide-label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: rgba(180, 141, 62, 0.35);
    border: 1px solid rgba(180, 141, 62, 0.45);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
}

/* ─── Progress bar ─── */
.ew-progress-bar {
    display: none;
}

.ew-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #e8b84b);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* ─── Slide counter (top-right) ─── */
.ew-slide-counter {
    display: none;
}

.ew-counter-sep {
    opacity: 0.5;
    font-size: 0.75rem;
}

.ew-counter-total {
    opacity: 0.6;
    font-size: 0.8rem;
}

/* ─── "View Full Portfolio" hover CTA ─── */
.ew-portfolio-cta {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 71, 35, 0.0);
    transition: background 0.4s ease;
    z-index: 9;
    pointer-events: none;
}

.explore-work-slideshow-wrap:hover .ew-portfolio-cta {
    background: rgba(35, 71, 35, 0.35);
}

.ew-portfolio-cta span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(180, 141, 62, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 8px 30px rgba(180, 141, 62, 0.4);
}

.explore-work-slideshow-wrap:hover .ew-portfolio-cta span {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .explore-work-split {
        grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.25fr);
        gap: 3rem;
    }
    .ew-heading {
        font-size: 2.8rem;
    }
    .ew-heading-accent {
        font-size: 1.85rem;
    }
}

@media (max-width: 991px) {
    .explore-work-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .explore-work-section {
        padding: 4.5rem 0;
    }
    .ew-heading {
        font-size: 2.8rem;
    }
    .ew-heading-accent {
        font-size: 1.85rem;
    }
    .ew-subline {
        max-width: 100%;
    }
    .ew-ring-1,
    .ew-ring-2 {
        display: none;
    }
    .explore-work-slideshow-wrap {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .ew-heading {
        font-size: 2.2rem;
    }
    .ew-heading-accent {
        font-size: 1.45rem;
    }
    .ew-item-label {
        font-size: 1.05rem;
    }
    .explore-work-slideshow-wrap {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        outline-offset: 4px;
    }
}


/* Project Category Pages */
.project-page {
    background: var(--bg-light);
}

.project-hero {
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 3.5rem;
    background-position: center;
    background-size: cover;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(31, 31, 31, 0.82), rgba(31, 31, 31, 0.32)),
        linear-gradient(180deg, rgba(35, 71, 35, 0.2), rgba(35, 71, 35, 0.72));
}

.project-hero .container {
    position: relative;
    z-index: 1;
}

.project-hero-content {
    max-width: 760px;
}

.project-hero-content h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 640px;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.project-category-nav {
    position: sticky;
    top: 74px;
    z-index: 20;
    background: rgba(252, 251, 248, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 141, 62, 0.14);
}

.project-category-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow-x: auto;
}

.project-category-nav a {
    flex: 0 0 auto;
    padding: 0.72rem 1.2rem;
    border-radius: 50px;
    background: #ffffff;
    color: var(--text-muted);
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.project-category-nav a.active {
    color: var(--text-light);
    background: var(--secondary);
}

.project-category-nav a:hover {
    color: var(--text-muted);
    background: #ffffff;
}

.project-category-nav a.active:hover {
    color: var(--text-light);
    background: var(--secondary);
}

.project-gallery-section {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
}

.site-images-section {
    padding-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
}

.portfolio-section-heading {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.portfolio-section-heading span {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-section-heading h2 {
    color: var(--secondary-dark);
    margin-bottom: 0.75rem;
}

.portfolio-section-heading p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.project-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(180, 141, 62, 0.12);
    transition: var(--transition);
}

.project-detail-card,
.project-card-simple {
    cursor: pointer;
}

.project-card:hover,
.project-card:focus,
.project-card:focus-within {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    outline: none;
}

.project-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ffffff;
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.7s ease;
}

.project-card:hover .project-card-media img,
.project-card:focus .project-card-media img,
.project-card:focus-within .project-card-media img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 71, 35, 0.72);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay,
.project-card:focus .project-card-overlay,
.project-card:focus-within .project-card-overlay {
    opacity: 1;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: none;
    border-radius: 50px;
    background: var(--primary);
    color: var(--text-light);
    padding: 0.85rem 1.35rem;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.view-project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 141, 62, 0.42);
}

.project-card-body {
    padding: 1.2rem 1.25rem 1.35rem;
}

.project-card-body h3 {
    font-size: 1.25rem;
    color: var(--secondary-dark);
    margin-bottom: 0.65rem;
}

.project-card-simple .project-card-body {
    border-top: 1px solid rgba(180, 141, 62, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
}

.project-card-simple .project-card-body h3 {
    color: var(--text-dark);
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 0;
    text-align: center;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.project-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.project-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.project-modal-content {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
    transform: scale(0.96);
    transition: transform 0.35s ease;
}

.project-modal.active .project-modal-content {
    transform: scale(1);
}

.project-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition);
}

.project-modal-close:hover {
    background: var(--secondary);
    color: var(--text-light);
}

.project-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.project-slider {
    background: var(--secondary-dark);
    min-height: 560px;
}

.project-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-slider img {
    width: 100%;
    height: 100%;
    max-height: 680px;
    object-fit: contain;
    padding: 1.5rem;
}

.project-slider .swiper-button-next,
.project-slider .swiper-button-prev {
    color: var(--text-light);
}

.project-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
}

.project-slider .swiper-pagination-bullet-active {
    background: var(--primary);
}

.project-detail-panel {
    padding: 3rem 2.2rem;
}

.project-detail-panel h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-dark);
}

.project-detail-meta {
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.project-detail-panel p {
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.project-detail-list {
    list-style: none;
    margin-top: 1rem;
}

.project-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.project-detail-list i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-lightbox-content {
    width: min(1040px, 100%);
    text-align: center;
}

.portfolio-lightbox-content img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.portfolio-lightbox-content p {
    margin-top: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.portfolio-lightbox-close {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.portfolio-lightbox-close:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* Testimonials Slider Specific Styling */
.testimonials-section {
    background-color: #ffffff;
    padding: 3rem 0 3.25rem; /* Compact vertical padding for desktop single-view */
    scroll-margin-top: 72px;
}

.testimonials-section h2 {
    margin-bottom: 1.8rem;
}

.testimonials-slider-container {
    position: relative;
    padding: 0 4rem; /* Give space for custom side arrows */
    overflow: hidden;
}

.testimonials-swiper {
    padding: 0.35rem 0 2.25rem 0 !important; /* reduced bottom space for pagination */
    overflow: visible !important;
}

.testimonials-swiper .swiper-slide {
    height: auto; /* Required for equal height slides */
    display: flex;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 1.25rem 1.45rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.testimonial-card:hover,
.testimonial-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(180, 141, 62, 0.15);
}

.testimonial-card:focus-visible {
    outline: 3px solid rgba(180, 141, 62, 0.35);
    outline-offset: 4px;
}

.quote-icon {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2.55rem;
    color: rgba(180, 141, 62, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.45rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
    padding-right: 2rem;
}

.testimonial-bullets {
    list-style: none;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-bullets li {
    font-size: 0.84rem;
    color: var(--text-dark);
    margin-bottom: 0.22rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.testimonial-bullets i {
    color: var(--primary);
    font-size: 0.85rem;
}

.testimonial-preview {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 0.45rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin-bottom: 0.65rem;
    transition: var(--transition);
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary);
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

/* Testimonial Modal Dialog */
.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2010;
    padding: 3rem;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid rgba(180, 141, 62, 0.15);
}

.testimonial-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fcfbf8;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--secondary);
    color: var(--text-light);
    transform: scale(1.05);
}

.modal-body {
    position: relative;
}

.modal-quote-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 5rem;
    color: rgba(180, 141, 62, 0.08);
    pointer-events: none;
}

.modal-author-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-author-img-container {
    display: flex;
}

.modal-author-info h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.modal-author-info p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

.modal-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.modal-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Custom Scrollbar for Modal Content */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 576px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .modal-body h3 {
        font-size: 1.25rem;
    }
    .modal-text {
        font-size: 0.95rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.7rem;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.author-img.initials-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-transform: uppercase;
}

.author-img.initials-avatar.bg-secondary-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.author-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 700;
}

.author-info p {
    margin: 2px 0 0 0;
    font-size: 0.74rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Custom Swiper Navigation Buttons */
.testimonials-next,
.testimonials-prev {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-next::after,
.testimonials-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonials-next:hover,
.testimonials-prev:hover {
    background: var(--secondary);
    color: var(--text-light);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(53, 101, 53, 0.3);
}

.testimonials-prev {
    left: 1rem;
}

.testimonials-next {
    right: 1rem;
}

/* Custom Swiper Pagination */
.testimonials-pagination {
    bottom: 10px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    opacity: 0.3;
    transition: var(--transition);
    border-radius: 5px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 28px; /* Dynamic pill width for premium feel */
}

/* Custom Swiper Navigation Buttons for Pricing */
.pricing-next,
.pricing-prev {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-next::after,
.pricing-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-next:hover,
.pricing-prev:hover {
    background: var(--secondary);
    color: var(--text-light);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(53, 101, 53, 0.3);
}

.pricing-prev {
    left: 1rem;
}

.pricing-next {
    right: 1rem;
}

/* Custom Swiper Pagination for Pricing */
.pricing-pagination {
    bottom: 10px !important;
}

.pricing-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    opacity: 0.3;
    transition: var(--transition);
    border-radius: 5px;
}

.pricing-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 28px; /* Dynamic pill width for premium feel */
}

/* Pricing Section */
.pricing-section {
    position: relative;
}

.pricing-slider-container {
    position: relative;
    padding: 0 4rem; /* Give space for custom side arrows */
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-swiper {
    padding: 1.5rem 0 4rem 0 !important; /* space for shadows and pagination */
    overflow: hidden !important;
}

.pricing-swiper .swiper-slide {
    height: auto; /* Required for equal height slides */
    display: flex;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.2rem 1.6rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: var(--text-light);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured .price {
    color: var(--text-light);
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card.featured .price span {
    color: rgba(255,255,255,0.7);
}

.pricing-features {
    list-style: none;
    margin: 1.2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.price-subtext {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: -0.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.pricing-card.featured .price-subtext {
    color: rgba(255, 255, 255, 0.85);
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-answer p {
    padding-top: 1rem;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(rgba(53, 101, 53, 0.9), rgba(35, 71, 35, 0.9)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 8rem 0;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero::before, .hero::after {
        display: none;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
    .steps-grid::before {
        display: none;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    .project-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ew-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ew-left-panel {
        padding-right: 0;
        text-align: center;
    }
    .ew-heading {
        font-size: 2.2rem;
        text-align: center;
    }
    .ew-subline {
        margin-left: auto;
        margin-right: auto;
    }
    .ew-divider {
        margin-left: auto;
        margin-right: auto;
    }
    .ew-cat-number {
        display: none;
    }
    .project-modal-grid {
        grid-template-columns: 1fr;
    }
    .project-slider {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: var(--shadow-soft);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .mobile-menu-btn {
        display: block;
    }
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-slider-container {
        padding: 0;
    }
    .testimonials-next,
    .testimonials-prev {
        display: none !important;
    }
    .testimonials-swiper {
        padding: 1rem 0 3rem 0 !important;
    }
    .pricing-slider-container {
        padding: 0;
    }
    .pricing-next,
    .pricing-prev {
        display: none !important;
    }
    .pricing-swiper {
        padding: 1rem 0 3rem 0 !important;
    }
    .section-heading {
        margin-bottom: 2rem;
    }
    .section-heading p {
        font-size: 1rem;
    }
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
    .ew-split-layout {
        gap: 2rem;
    }
    .ew-heading {
        font-size: 1.9rem;
    }
    .ew-cat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .ew-cat-name {
        font-size: 0.98rem;
    }
    .project-hero {
        min-height: 60vh;
        padding: 8rem 0 4rem;
    }
    .project-hero-content p {
        font-size: 1rem;
    }
    .project-category-nav {
        top: 66px;
    }
    .project-category-nav .container {
        justify-content: flex-start;
    }
    .project-modal {
        padding: 0.75rem;
    }
    .project-modal-content {
        border-radius: 16px;
    }
    .project-slider {
        min-height: 320px;
    }
    .project-detail-panel {
        padding: 2rem 1.35rem;
    }
    .project-detail-panel h2 {
        font-size: 1.55rem;
    }
}
