/* ═══════════════════════════════════════════════════════════
   ARC STUDIO — Premium CSS
   Dark luxury architecture agency homepage
═══════════════════════════════════════════════════════════ */

/* ── Root Variables ── */
:root {
    --black: #080808;
    --dark: #0e0e0e;
    --card-bg: #111111;
    --border: rgba(255, 255, 255, 0.06);
    --white: #f5f5f0;
    --white-muted: rgba(245, 245, 240, 0.55);
    --accent: #ffffff;
    --accent-glow: rgba(200, 169, 110, 0.18);
    --accent-dim: rgba(200, 169, 110, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: Brick Neue, sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-serif: 'DM Serif Display', serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

html::-webkit-scrollbar {
    width: 4px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 99px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Noise overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.45;
}

/* ── Typography helpers ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-heading em {
    font-style: italic;
    color: var(--accent);
    font-family: var(--font-serif);
}

.section-body {
    color: var(--white-muted);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.mb-section {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ── Glass Card ── */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ── Buttons ── */
.btn-arc-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--accent);
    color: #080808;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-arc-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    border-radius: inherit;
}

.btn-arc-primary:hover::before {
    transform: translateX(0);
}

.btn-arc-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.35);
    color: #080808;
}

.btn-arc-primary i {
    transition: transform 0.3s ease;
}

.btn-arc-primary:hover i {
    transform: translateX(4px);
}

.btn-arc-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    border: 1px solid rgb(199 170 111);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 999px;
    transition: var(--transition);
    background: #000000;
    cursor: pointer;
}

.btn-arc-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}




.btn-arc-ghost:hover .btn-ghost-inner {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 169, 110, 0.5);
    transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hovered {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(200, 169, 110, 0.06);
}

@media (hover: none) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ═══════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loader-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.05s linear;
}

.loader-percent {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
}
















/* ═══════════════════════════════════════
   HERO SECTION WITH VIDEO BACKGROUND
═══════════════════════════════════════ */

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    /* Bottom align karne ke liye */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Video Background */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.849) 0%, rgb(8 8 8 / 0%) 50%, rgb(8 8 8 / 0%) 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Animated blobs - thoda light kar diya */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    animation: blobFloat 10s ease-in-out infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(200, 169, 110, 0.1);
    top: -100px;
    right: -100px;
    animation-duration: 12s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(200, 169, 110, 0.06);
    bottom: 10%;
    left: 5%;
    animation-duration: 9s;
    animation-delay: -3s;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: rgba(200, 169, 110, 0.04);
    top: 40%;
    right: 20%;
    animation-duration: 14s;
    animation-delay: -6s;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 40px) scale(1.08);
    }
}

/* Content - Bottom aligned */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 clamp(1.5rem, 6vw, 6rem);
    padding-bottom: 15vh;
    /* Bottom se space */
    max-width: 100%;
}

/* Heading styles */
.hero-heading {
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    animation: lineReveal 1s cubic-bezier(0.3, 0, 0.1, 1) forwards;
}

.hero-line:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-line:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-line:nth-child(3) {
    animation-delay: 0.9s;
}

.hero-line-italic {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--accent);
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.btn-arc-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-arc-primary:hover {
    transform: translateY(-3px);
    gap: 12px;
    color: white;
    background: #0c0a0a;
}


.btn-ghost-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-arc-ghost:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 110, 0.1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: clamp(1.5rem, 5vw, 4rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding-bottom: 10vh;
    }

    .hero-actions {
        gap: 1rem;
    }

    .btn-arc-primary,
    .btn-arc-ghost {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 20px;
        right: 20px;
    }

    .scroll-line {
        height: 40px;
    }
}










/* ═══════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════ */
.marquee-strip {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 18px 0;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
}

.marquee-track .sep {
    color: var(--accent);
    font-size: 0.6rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



/* ═══════════════════════════════════════
   ABOUT SECTION - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.about-section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(8, 8, 12, 1) 0%, rgba(15, 15, 20, 1) 100%);
}

/* Ambient glow effect */
.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========== IMAGE SHOWCASE ========== */
.about-img-col {
    padding: 0;
    position: relative;
    z-index: 2;
}

.about-img-wrap {
    position: relative;
    height: 700px;
    perspective: 1000px;
}

/* Main image with parallax hover */
.about-img-main {
    width: calc(100% - 60px);
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    margin-left: clamp(1.5rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1);
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.4);
}

.about-img-wrap:hover .about-img-main {
    transform: scale(1.02);
    filter: brightness(1) saturate(1.2);
    box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.5);
}

/* Accent image with 3D tilt */
.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(200, 169, 110, 0.3);
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.3);
    filter: grayscale(20%);
}

.about-img-wrap:hover .about-img-accent {
    transform: translateX(-15px) translateY(-15px) rotate(2deg);
    border-color: var(--accent);
    filter: grayscale(0%);
}

/* Experience badge with glassmorphism + animation */
.about-experience-badge {
    position: absolute;
    top: 60px;
    right: 80px;
    padding: 25px 30px;
    border-radius: 25px;
    z-index: 4;
    text-align: center;
    background: rgba(20, 20, 28, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 169, 110, 0.3);
    transition: all 0.4s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-experience-badge:hover {
    background: rgba(200, 169, 110, 0.15);
    border-color: var(--accent);
    transform: scale(1.05);
}

.badge-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Overlay gradient on images */
.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200, 169, 110, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 30px;
}

/* ========== CONTENT SECTION ========== */
.about-content-col {
    padding: clamp(3rem, 5vw, 6rem);
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 560px;
    margin-left: auto;
}

/* Section tag with shine effect */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-tag::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.5);
    }
}

/* Heading with gradient */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.8rem;
}

.section-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-heading em::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* Body text with better readability */
.section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
}

.section-body:last-of-type {
    margin-bottom: 0;
}

/* ========== PILLARS - ENHANCED ========== */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Shine effect on hover */
.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.1), transparent);
    transition: left 0.6s ease;
}

.pillar-item:hover::before {
    left: 100%;
}

.pillar-item:hover {
    border-color: var(--accent);
    background: rgba(30, 30, 40, 0.8);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(200, 169, 110, 0.25);
    border-color: var(--accent);
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.pillar-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.pillar-item:hover .pillar-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ========== BUTTON ========== */
.btn-arc-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-arc-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-arc-primary:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3);
}

.btn-arc-primary:hover::before {
    left: 100%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-img-wrap {
        height: 500px;
        margin-bottom: 40px;
    }

    .about-img-accent {
        width: 180px;
        height: 220px;
        bottom: -20px;
        right: 10px;
    }

    .about-experience-badge {
        top: 30px;
        right: 40px;
        padding: 15px 20px;
    }

    .badge-num {
        font-size: 2.5rem;
    }

    .about-content-col {
        padding: 2rem;
    }

    .about-content {
        max-width: 100%;
    }

    .pillar-item:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .about-img-wrap {
        height: 400px;
    }

    .about-img-main {
        width: calc(100% - 30px);
        margin-left: 1rem;
    }

    .about-img-accent {
        width: 140px;
        height: 180px;
        bottom: -10px;
        right: 5px;
    }

    .pillar-item {
        padding: 15px 18px;
    }

    .pillar-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Smooth scroll reveal */
[data-aos] {
    pointer-events: auto !important;
}






/* ═══════════════════════════════════════
   PROJECTS SECTION - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0c 0%, #050508 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background lines */
.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.projects-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

/* Section Header Enhanced */
.section-header-split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.section-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-arc-outline {
    padding: 12px 28px;
    border: 1px solid rgba(200, 169, 110, 0.5);
    border-radius: 40px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-arc-outline:hover {
    background: var(--accent);
    color: #0a0a0a;
    border-color: var(--accent);
    gap: 12px;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 320px;
    gap: 1.5rem;
}

/* Keep project gallery media-only: no hover copy or media badges. */
.project-overlay,
.project-card:hover .project-overlay,
.project-type-badge {
    display: none !important;
}

.project-filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.project-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.project-tab {
    min-height: 44px;
    padding: 0 1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.project-tab i {
    color: var(--accent);
}

.project-tab:hover,
.project-tab.active {
    background: var(--accent);
    color: #080808;
    transform: translateY(-1px);
}

.project-tab:hover i,
.project-tab.active i {
    color: #080808;
}

.project-category-select {
    min-width: 240px;
}

.project-category-select label {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-category-select select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: #101014;
    color: #fff;
    padding: 0 2.5rem 0 1rem;
    font-size: 0.9rem;
    outline: none;
}

.projects-filter-grid [hidden] {
    display: none !important;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.project-card-large {
    grid-column: span 7;
    grid-row: span 2;
}

.project-card-wide {
    grid-column: span 7;
}

.project-card:not(.project-card-large):not(.project-card-wide) {
    grid-column: span 5;
}

/* Glow effect on hover */
.project-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, rgba(200, 169, 110, 0.3) 50%, transparent 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.project-card:hover .project-glow {
    opacity: 1;
}

.project-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.project-img-wrap img,
.project-img-wrap video,
.project-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(1.1);
}

.project-card:hover .project-img-wrap img,
.project-card:hover .project-img-wrap video {
    transform: scale(1.12);
    filter: brightness(1) saturate(1.2);
}

.project-type-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    min-height: 32px;
    padding: 0 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-type-badge i {
    color: var(--accent);
}

/* Overlay with animation */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 8, 8, 0.98) 0%,
            rgba(8, 8, 8, 0.5) 40%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Meta info animations */
.project-meta {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.project-overlay .project-meta {
    display: none;
}

.project-overlay,
.project-type-badge {
    display: none;
}

.project-card:hover .project-meta {
    transform: translateY(0);
}

.project-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-body);
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-loc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-loc i {
    font-size: 0.7rem;
    color: var(--accent);
}

/* Arrow button */
.project-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(20px);
    text-decoration: none;
}

.project-card:hover .project-arrow {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.project-arrow:hover {
    transform: scale(1.15) rotate(45deg);
    background: #ffffff;
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.5);
}

.project-empty-state {
    display: none;
    margin: 2rem auto 0;
    max-width: 520px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
}

.project-empty-state.show {
    display: block;
}

.project-empty-state i {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .projects-grid {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .projects-section {
        padding: 80px 0;
    }

    .project-filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .project-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .project-category-select {
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 280px;
    }

    .project-card-large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .project-card-wide {
        grid-column: span 6;
    }

    .project-card:not(.project-card-large):not(.project-card-wide) {
        grid-column: span 3;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-overlay {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .project-tabs {
        border-radius: 12px;
    }

    .project-tab {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 0.85rem;
        font-size: 0.78rem;
    }

    .project-card-large,
    .project-card-wide,
    .project-card:not(.project-card-large):not(.project-card-wide) {
        grid-column: span 2;
    }

    .project-card-large {
        grid-row: span 1;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-category {
        font-size: 0.6rem;
    }

    .project-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        gap: 0.8rem;
        grid-auto-rows: 200px;
    }

    .project-overlay {
        padding: 15px;
    }
}








/* ═══════════════════════════════════════
   SERVICES SECTION - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #0a0a0c 0%, #0d0d12 100%);
}

/* Animated background glow */
.services-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Section Header Enhanced */
.mb-section {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 20px;
}

/* .section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-tag::before {
    left: -30px;
}

.section-tag::after {
    right: -30px;
} */

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 2;
}

/* Service Card - Premium Design */
.service-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* 3D Perspective on hover */
.service-card:hover {
    border-color: rgba(200, 169, 110, 0.3);
    transform: translateY(-12px) scale(1.02);
    background: rgba(20, 20, 28, 0.6);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

/* Shine effect on card */
.service-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover .service-shine {
    left: 100%;
}

.service-hover-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover .service-hover-bg {
    opacity: 1;
}

/* Icon Wrapper */
.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    position: relative;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.25) 0%, rgba(200, 169, 110, 0.1) 100%);
    border-color: rgba(200, 169, 110, 0.5);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

/* Service Number */
.service-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(200, 169, 110, 0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Service Title */
.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Description */
.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Link Button */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-card:hover .service-link {
    gap: 15px;
}

/* Glass card base style */
.glass-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .services-grid {
        gap: 1.2rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .service-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .service-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 30px 25px;
    }

    .mb-section {
        margin-bottom: 2.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }
}

/* Hover animations for staggered cards */
.service-card:nth-child(1) {
    transition-delay: 0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.05s;
}

.service-card:nth-child(3) {
    transition-delay: 0.1s;
}

.service-card:nth-child(4) {
    transition-delay: 0.15s;
}

.service-card:nth-child(5) {
    transition-delay: 0.2s;
}

.service-card:nth-child(6) {
    transition-delay: 0.25s;
}

.service-card:hover {
    transition-delay: 0s !important;
}






/* ═══════════════════════════════════════
   STATS SECTION - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.stats-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(135deg, #08080c 0%, #0d0d14 100%);
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
}

/* Animated background glow */
.stats-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: statsGlowPulse 6s ease-in-out infinite;
}

@keyframes statsGlowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Floating particles */
.stats-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200, 169, 110, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(200, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    pointer-events: none;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Stats Item */
.stats-item {
    text-align: center;
    padding: 20px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 30px;
    background: rgba(15, 15, 20, 0.3);
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.stats-item:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 35, 0.5);
    border: 1px solid rgba(200, 169, 110, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Icon */
.stats-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.stats-item:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.25) 0%, rgba(200, 169, 110, 0.1) 100%);
    border-color: rgba(200, 169, 110, 0.5);
}

.stats-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

/* Number Wrapper */
.stats-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.stats-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    transition: all 0.3s ease;
}

.stats-item:hover .stats-num {
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-plus {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Stats Label */
.stats-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stats-item:hover .stats-label {
    color: var(--accent);
    letter-spacing: 0.15em;
}

/* Animated Line */
.stats-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 15px auto 0;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s ease;
}

.stats-item:hover .stats-line {
    opacity: 1;
    transform: scaleX(1);
}

/* Stats Divider */
.stats-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(200, 169, 110, 0.5), transparent);
    animation: dividerPulse 2s ease infinite;
}

@keyframes dividerPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 80px;
    }

    50% {
        opacity: 0.8;
        height: 90px;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .stats-grid {
        gap: 1rem;
    }

    .stats-item {
        min-width: 150px;
        padding: 15px 20px;
    }

    .stats-icon {
        width: 50px;
        height: 50px;
    }

    .stats-icon i {
        font-size: 1.5rem;
    }

    .stats-divider {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats-item {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.5), transparent);
    }

    @keyframes dividerPulse {

        0%,
        100% {
            opacity: 0.3;
            width: 60px;
            height: 1px;
        }

        50% {
            opacity: 0.8;
            width: 80px;
            height: 1px;
        }
    }
}

@media (max-width: 480px) {
    .stats-item {
        padding: 12px 15px;
    }

    .stats-icon {
        width: 45px;
        height: 45px;
    }

    .stats-icon i {
        font-size: 1.2rem;
    }
}





/* ═══════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════ */
.process-section {
    padding: 80px 0px;
    ;
    background: var(--dark);
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.process-timeline::-webkit-scrollbar {
    display: none;
}

.process-line-track {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    pointer-events: none;
}

.process-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--accent), transparent);
    transition: width 0.6s ease;
}

.process-step {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.process-step:hover .step-num {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

.step-body {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    width: 100%;
}

.process-step:hover .step-body {
    border-color: rgba(200, 169, 110, 0.2);
    transform: translateY(-4px);
}

.step-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--white-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background with parallax */
.testimonials-bg-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.testimonials-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.testimonials-section:hover .testimonials-bg-img img {
    transform: scale(1.1);
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.85) 100%);
}

.testimonials-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Particles effect */
.testimonials-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 30%, rgba(200, 169, 110, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 75% 70%, rgba(200, 169, 110, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    pointer-events: none;
}

/* Section Header */
.testimonials-section .container-fluid {
    position: relative;
    z-index: 2;
}

.mb-section {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 20px;
}

/* .section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-tag::before {
    left: -30px;
}

.section-tag::after {
    right: -30px;
} */

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* ========== TESTIMONIAL SLIDER ========== */
.testimonials-slider {
    position: relative;
    max-width: 860px;
    margin: 0 auto 3rem;
    perspective: 1000px;
}

/* Testimonial Card */
.testimonial-card {
    display: none;
    padding: 55px 55px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.testimonial-card.active {
    display: block;
    animation: testimonialReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes testimonialReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Glow effect on card */
.testimonial-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-card:hover .testimonial-glow {
    opacity: 1;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 5rem;
    color: rgba(200, 169, 110, 0.15);
    font-family: serif;
    pointer-events: none;
}

.testimonial-quote-icon i {
    font-size: 4rem;
}

/* Stars */
.testimonial-stars {
    margin-bottom: 1.8rem;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 4px;
    animation: starPulse 3s ease infinite;
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Quote Text */
.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    border-color: #e8d5a8;
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.3);
}

.author-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.author-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

/* Glass Card */
.glass-card {
    background: rgba(20, 20, 28, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========== SLIDER CONTROLS ========== */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.3);
    background: rgba(20, 20, 28, 0.6);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200, 169, 110, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-btn:hover .btn-hover-bg {
    opacity: 1;
}

.slider-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.slider-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.slider-btn:hover i {
    transform: scale(1.1);
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.5);
}

.dot:hover {
    background: var(--accent);
    transform: scale(1.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 40px 35px;
    }

    .testimonial-quote-icon {
        top: 20px;
        right: 25px;
    }

    .testimonial-quote-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-quote-icon {
        display: none;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-role {
        font-size: 0.7rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-stars i {
        font-size: 0.8rem;
    }

    .testimonial-author {
        gap: 0.8rem;
    }
}



/* ═══════════════════════════════════════
   CTA SECTION - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #060608 0%, #0a0a0f 100%);
    border-top: 1px solid rgba(200, 169, 110, 0.2);
}

/* Background with grid lines */
.cta-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 169, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Animated blobs */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: ctaBlobFloat 12s ease-in-out infinite alternate;
}

.cta-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    top: -200px;
    left: -200px;
    animation-duration: 15s;
}

.cta-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.1) 0%, transparent 100%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 12s;
}

.cta-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 100%);
    top: 40%;
    right: 20%;
    animation-delay: -8s;
    animation-duration: 10s;
}

@keyframes ctaBlobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.15);
    }
}

/* Particles */
.cta-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(200, 169, 110, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 60%, rgba(200, 169, 110, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 85%, rgba(200, 169, 110, 0.03) 1.5px, transparent 1.5px);
    background-size: 80px 80px, 60px 60px, 100px 100px;
    pointer-events: none;
}

/* CTA Inner */
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 20px;
}

/* .section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-tag::before {
    left: -30px;
}

.section-tag::after {
    right: -30px;
} */

/* Heading */
.cta-heading {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.cta-cursor {
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: var(--accent);
    margin-left: 5px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Subtitle */
.cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========== BUTTONS ========== */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-arc-primary,
.btn-arc-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-arc-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    color: #0a0a0a;
    box-shadow: 0 5px 20px rgba(200, 169, 110, 0.3);
}

.btn-arc-primary:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: 0 15px 35px rgba(200, 169, 110, 0.4);
}

.btn-arc-ghost {
    border: 1px solid rgba(200, 169, 110, 0.4);
    background: rgb(2 2 2);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.btn-arc-ghost:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 110, 0.1);
    transform: translateY(-3px);
    gap: 18px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-arc-primary:hover .btn-shine,
.btn-arc-ghost:hover .btn-shine {
    left: 100%;
}

/* ========== CONTACT GRID ========== */
.cta-contact-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cta-contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 110, 0.3);
    background: rgba(25, 25, 35, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-contact-item:hover .contact-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: rgba(200, 169, 110, 0.25);
}

.contact-icon-wrap i {
    font-size: 1.2rem;
    color: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.7);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.cta-contact-item:hover .contact-value {
    color: var(--accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }

    .btn-arc-primary,
    .btn-arc-ghost {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .cta-contact-grid {
        gap: 1.5rem;
    }

    .cta-contact-item {
        padding: 10px 20px;
    }

    .contact-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .contact-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .cta-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-actions {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .btn-arc-primary,
    .btn-arc-ghost {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .cta-contact-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-contact-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .cta-blob-1,
    .cta-blob-2,
    .cta-blob-3 {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {

    .btn-arc-primary,
    .btn-arc-ghost {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .contact-icon-wrap {
        width: 35px;
        height: 35px;
    }

    .contact-icon-wrap i {
        font-size: 1rem;
    }

    .contact-value {
        font-size: 0.8rem;
    }
}

/* Hover animations for AOS elements */
[data-aos] {
    pointer-events: auto !important;
}





/* ═══════════════════════════════════════
   FOOTER - PREMIUM SHOWCASE
═══════════════════════════════════════ */

.arc-footer {
    background: linear-gradient(135deg, #050508 0%, #0a0a0f 100%);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Animated glow effect */
.footer-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 169, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: footerGlow 20s ease infinite;
}

@keyframes footerGlow {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: translate(5%, 5%);
        opacity: 1;
    }
}

/* Top line animation */
.footer-top-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), #e8d5a8, var(--accent), transparent);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.footer-top-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: lineShine 4s ease infinite;
}

@keyframes lineShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* ========== BRAND SECTION ========== */
.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 2.2rem !important;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.logo-dot {
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    margin: 1.2rem 0 1.8rem;
    line-height: 1.7;
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.2);
    background: rgba(15, 15, 20, 0.6);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200, 169, 110, 0.1);
    transform: translateY(-5px);
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

/* ========== FOOTER COLUMNS ========== */
.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #e8d5a8 100%);
    color: #0a0a0a;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 600;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ========== NEWSLETTER ========== */
.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 60px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.6);
}

.newsletter-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(200, 169, 110, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-size: 0.85rem;
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    border: none;
    width: 55px;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #0a0a0a;
    border-radius: 50%;
    display: none;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.newsletter-success {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-back-link {
    display: flex;
    align-items: center;
}

.back-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    color: #0a0a0a;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(200, 169, 110, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(200, 169, 110, 0.4);
}

.back-to-top i {
    font-size: 1rem;
}

.back-to-top-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .arc-footer {
        padding: 50px 0 25px;
    }

    .footer-logo {
        font-size: 1.8rem !important;
    }

    .footer-col-title::after {
        width: 25px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .project-card-large,
    .project-card-wide,
    .project-card:not(.project-card-large):not(.project-card-wide) {
        grid-column: span 1;
    }

    .project-card-large {
        grid-row: span 2;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-arc-outline {
        display: none;
    }

    .about-img-wrap {
        height: 420px;
    }

    .about-img-accent {
        width: 160px;
        height: 200px;
    }

    .stats-divider {
        display: none;
    }

    .stats-grid {
        gap: 3rem;
    }

    .about-content-col {
        padding: 3rem 1.5rem;
    }

    .process-timeline {
        padding: 1rem 0 2rem;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .hero-stats {
        gap: 0.8rem;
    }

    .stat-card {
        min-width: 0;
        flex: 1;
        padding: 14px 18px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .cta-contact-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .about-img-main {
        margin-left: 0;
        width: 100%;
    }

    .about-img-accent {
        display: none;
    }

    .about-experience-badge {
        top: 20px;
        right: 20px;
    }

    .section-header-split {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step {
        flex: 0 0 220px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }

    .stats-divider {
        display: none;
    }
}


.logo_ji {
    width: 143px;
}



/* ═══════════════════════════════════════════════════════════
   NAVBAR WITH DROPDOWN - COMPLETE FIXED CSS
════════════════════════════════════════════════════════════ */

.arc-nav {
    position: sticky;
    /* Fixed se sticky kar do */
    top: 0;
    /* Yeh important hai */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 9px 0;
    transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s;
    background: white;
}

/* Remove scrolled class ka padding change agar nahi chahiye */
.arc-nav.scrolled {
    padding: 8px 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
}

.logo-dot {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 100;
}

.nav-link-item {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgb(0, 0, 0);
    position: relative;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.35s ease;
}

.nav-link-item:hover {
    color: black;
}

.nav-link-item:hover::after {
    width: 100%;
}

/* ========== DROPDOWN STYLES - FIXED NO GAP ISSUE ========== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Invisible bridge to prevent gap issue */
.nav-dropdown::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    z-index: 1001;
}

.nav-link-item.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-link-item.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    min-width: 240px;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    border: 1px solid rgba(200, 169, 110, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

/* Show dropdown on hover - stays visible while moving mouse */
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Rotate chevron on hover */
.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.dropdown-item i {
    width: 20px;
    font-size: 14px;
    color: #ffffff;
}

.dropdown-item:hover {
    background: rgba(200, 169, 110, 0.12);
    color: #ffffff;
    padding-left: 28px;
}

/* ========== NAV ACTIONS ========== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-arc-outline {
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-arc-outline:hover {
    background: var(--accent);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: black;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 20px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

/* ========== MOBILE DROPDOWN ========== */
.mobile-dropdown {
    width: 100%;
    margin: 8px 0;
}

.mobile-dropdown-trigger {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: color 0.3s;
}

.mobile-dropdown-trigger:hover {
    color: var(--accent);
}

.mobile-dropdown-trigger i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(200, 169, 110, 0.05);
    border-radius: 12px;
    margin-top: 15px;
}

.mobile-dropdown-menu.open {
    max-height: 400px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.mobile-dropdown-item i {
    font-size: 1rem;
    color: #ffffff;
}

.mobile-dropdown-item:hover {
    color: #ffffff;
    background: rgba(200, 169, 110, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-arc-outline {
        display: none;
    }
}

/* Dark mode support for dropdown */
@media (prefers-color-scheme: dark) {
    .arc-nav {
        background: rgba(8, 8, 12, 0.95);
    }

    .nav-link-item {
        color: #e0e0e0;
    }

    .nav-link-item:hover {
        color: #ffffff;
    }

    .hamburger span {
        background: #e0e0e0;
    }
}






/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .hero-heading {


        font-size: 35px;
    }

    .hero-section {
        position: relative;
        min-height: 61svh;
    }

    span.btn-ghost-inner {
        display: none;
    }


}












/* Custom scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* ========== SERVICE DETAIL SECTION ========== */
.service-detail-wrapper {
    padding: 120px 0;
    background: #10100f;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Noise texture */
.service-detail-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjgiIG51bU9jdGF2ZXM9IjMiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjZikiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
    background-repeat: repeat;
    opacity: 0.1;
    pointer-events: none;
}

.service-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
    position: relative;
    z-index: 3;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

/* ===== MAIN CONTENT ===== */
.service-main-content {
    background: rgba(12, 12, 16, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.service-main-content:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-text-content {
    padding: 2rem 2.5rem 2.8rem;
}

.service-name {

    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #bcbcbc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
}

.service-desc {
    font-size: 1rem;
    color: rgba(230, 230, 230, 0.85);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.3rem;
    background: rgba(20, 20, 28, 0.6);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
}

.service-feature:hover {
    background: rgba(40, 40, 52, 0.8);
    transform: translateX(8px);
}

.service-feature i {
    color: #d0d0d0;
    font-size: 1.2rem;
    width: 32px;
}

.service-feature span {
    font-weight: 500;
    color: #ececec;
}

/* ===== STICKY SIDEBAR - SERVICES LIST ===== */
.service-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
}

.sidebar-card {
    background: rgba(8, 8, 12, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
}

.sidebar-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.sidebar-title {

    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-left: 3px solid #c0c0c0;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: #ccc;
    font-size: 1.2rem;
}

/* Services List - This is what you wanted! */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: rgba(20, 20, 28, 0.4);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-list-item:hover {
    background: rgba(45, 45, 58, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.service-list-item.active {
    background: rgba(60, 60, 75, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-list-item.active .service-name-text {
    color: #ffffff;
    font-weight: 600;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-info i {
    width: 28px;
    color: #bcbcbc;
    font-size: 1rem;
}

.service-name-text {
    color: #d0d0d0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
}

.arrow-icon {
    color: #888;
    font-size: 0.7rem;
    transition: 0.2s;
}

.service-list-item:hover .arrow-icon {
    color: #ffffff;
    transform: translateX(3px);
}

/* Contact info inside sidebar */
.sidebar-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-text {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 1rem;
    text-align: center;
}

.sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a1a22;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    transition: all 0.35s ease;
    font-size: 0.85rem;
}

.sidebar-cta:hover {
    background: #2a2a36;
    gap: 14px;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.trust-item {
    background: rgba(15, 15, 20, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 1rem 1.6rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    min-width: 150px;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.trust-item i {
    font-size: 1.8rem;
    color: #cccccc;
    margin-bottom: 6px;
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.trust-item small {
    color: #a5a5a5;
    font-size: 0.65rem;
}



/* Responsive */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .service-hero-img {
        height: 320px;
    }

    .service-name {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .service-detail-wrapper {
        padding: 70px 0;
    }

    .service-hero-img {
        height: 240px;
    }

    .service-text-content {
        padding: 1.5rem;
    }

    .service-name {
        font-size: 1.7rem;
    }

    .trust-item {
        padding: 0.8rem 1rem;
        min-width: 130px;
    }
}















.blend-breadcrumb-area {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
        linear-gradient(125deg, #030303 0%, #0a0a0a 45%, #111111 100%);
    isolation: isolate;
}

/* animated orbs & premium depth layers */
.blend-breadcrumb-area::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.02);
    filter: blur(130px);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    animation: blendFloatLarge 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.blend-breadcrumb-area::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(255, 255, 255, 0.015);
    filter: blur(110px);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    animation: blendFloatGlow 15s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* subtle noise texture for premium feel (only black/white grain) */
.blend-breadcrumb-area .noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjMiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjZikiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
    background-repeat: repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.blend-breadcrumb-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========= LEFT CONTENT ========= */
.blend-breadcrumb-content {
    max-width: 680px;
    animation: blendFadeUp 1.1s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards;
    transform-origin: left;
}

.blend-breadcrumb-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 10, 0.35);
    transition: all 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blend-breadcrumb-subtitle:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 3px;
}

.blend-breadcrumb-title {
    font-size: 78px;
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.blend-breadcrumb-title:hover {
    transform: translateX(4px);
}

.blend-breadcrumb-text {
    color: #cacaca;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 42px;
    font-weight: 400;
    max-width: 580px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CUSTOM BREADCRUMB - PREMIUM GLASS */
.blend-custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 32px;
    border-radius: 80px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
}

.blend-custom-breadcrumb:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 22px 40px -14px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.65);
}

.blend-breadcrumb-link {
    position: relative;
    color: #bcbcbc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 550;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.blend-breadcrumb-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.5, 1);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

.blend-breadcrumb-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}

.blend-breadcrumb-link:hover::after {
    width: 100%;
}

.blend-breadcrumb-separator {
    color: #6e6e6e;
    font-size: 12px;
    transition: transform 0.2s;
}

.blend-custom-breadcrumb:hover .blend-breadcrumb-separator {
    color: #a0a0a0;
}

.blend-breadcrumb-active {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* ========= RIGHT FLOATING CARD - PREMIUM BLACK/WHITE ========= */
.blend-breadcrumb-card {
    width: 360px;
    padding: 44px 38px;
    border-radius: 42px;
    background: rgba(12, 12, 12, 0.65);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 55px -15px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    animation: blendFloatCard 5.5s ease-in-out infinite;
    transform-origin: center;
}

.blend-breadcrumb-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 40px 70px -20px rgba(0, 0, 0, 0.85), 0 0 0 1.5px rgba(255, 255, 255, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(8, 8, 8, 0.75);
}

.blend-card-icon {
    width: 85px;
    height: 85px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #d4d4d4);
    color: #0a0a0a;
    font-size: 34px;
    margin-bottom: 32px;
    transition: all 0.45s cubic-bezier(0.2, 0.8, 0.4, 1.2);
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.blend-breadcrumb-card:hover .blend-card-icon {
    transform: rotate(8deg) scale(1.1);
    background: linear-gradient(145deg, #f8f8f8, #c0c0c0);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.blend-breadcrumb-card h4 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: 0.3s;
}

.blend-breadcrumb-card:hover h4 {
    letter-spacing: -0.2px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.blend-breadcrumb-card p {
    color: #c2c2c2;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s;
}

.blend-breadcrumb-card:hover p {
    color: #e8e8e8;
}

/* glow ball extra (floating white aura) */
.blend-breadcrumb-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(135px);
    left: -180px;
    bottom: -180px;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    animation: slowPulse 10s infinite alternate;
}

/* ========= ANIMATIONS ========= */
@keyframes blendFadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blendFloatLarge {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(35px) translateX(20px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes blendFloatGlow {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.08);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@keyframes blendFloatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slowPulse {
    0% {
        opacity: 0.02;
        transform: scale(0.98);
    }

    100% {
        opacity: 0.07;
        transform: scale(1.2);
    }
}

/* Additional hover transitions for premium micro-interactions */
.blend-breadcrumb-link i,
.blend-breadcrumb-separator i {
    transition: transform 0.2s;
}

.blend-custom-breadcrumb:hover .blend-breadcrumb-separator i {
    transform: translateX(3px);
}

/* Extra stylish card inner border effect on hover */
.blend-breadcrumb-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 42px;
    padding: 2px;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.blend-breadcrumb-card:hover::after {
    opacity: 1;
}

/* responsive fine-tuning with premium compactness */
@media (max-width: 1100px) {
    .blend-breadcrumb-title {
        font-size: 62px;
    }

    .blend-breadcrumb-wrapper {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .blend-breadcrumb-area {
        padding: 120px 0;
    }

    .blend-breadcrumb-title {
        font-size: 54px;
        letter-spacing: -2px;
    }

    .blend-breadcrumb-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .blend-breadcrumb-card {
        width: 100%;
        max-width: 480px;
        margin-top: 20px;
    }

    .blend-breadcrumb-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .blend-breadcrumb-area {
        padding: 33px 0;
    }

    .blend-breadcrumb-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .logo_ji {
        width: 123px;
    }


    .blend-custom-breadcrumb {
        padding: 12px 22px;
        gap: 14px;
    }

    .blend-breadcrumb-text {
        font-size: 16px;
    }

    .blend-breadcrumb-card {
        padding: 34px 28px;
    }

    .blend-card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .blend-breadcrumb-card h4 {
        font-size: 26px;
    }
}

/* smooth scroll behavior */
html {
    scroll-behavior: smooth;
}














/* SIRF YAHI CSS COPY KARO - PREMIUM BLACK/WHITE BUTTON */

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 18px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium-outline i {
    font-size: 14px;
    transition: transform 0.35s ease;
}

.btn-premium-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-premium-outline:hover {
    color: #0a0a0a;
    border-color: #ffffff;
    letter-spacing: 2px;
}

.btn-premium-outline:hover::before {
    left: 0;
}

.btn-premium-outline:hover i {
    transform: translateX(5px);
}

.btn-premium-outline:active {
    transform: scale(0.97);
}








/* ========== START PROJECT SECTION ========== */
.start-project-section {
    padding: 120px 0;
    background: #151515;
    position: relative;
    overflow: hidden;
}

/* animated background glow */
.start-project-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.02);
    filter: blur(120px);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: floatGlow 12s infinite alternate;
}

.start-project-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.015);
    filter: blur(100px);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: floatGlow2 10s infinite alternate;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0.6;
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translateY(0px);
        opacity: 0.2;
    }

    100% {
        transform: translateY(40px);
        opacity: 0.5;
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* section header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}



.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.section-desc {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* main grid */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* left side - info */
.project-info {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.info-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.info-text {
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    color: #777;
}

/* right side - form */
.project-form {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* button */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: #fff;
    border: none;
    border-radius: 16px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    gap: 15px;
    background: #eee;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* contact info */
.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.contact-item {
    flex: 1;
}

.contact-item i {
    font-size: 24px;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 12px;
    color: #666;
}

.contact-item h4 {
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
}

/* responsive */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .start-project-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .project-info,
    .project-form {
        padding: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}




/* ADD THESE CSS STYLES - COPY AND PASTE IN YOUR CSS FILE */

/* Mobile Menu Base Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0a0a0a;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    padding: 80px 30px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    right: 0;
}

/* Close Button */
.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Inner */
.mobile-menu-inner {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: #ccc;
    padding-left: 10px;
}

/* Mobile Dropdown */
.mobile-dropdown {
    margin: 0;
}

.mobile-dropdown-trigger {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    cursor: pointer;
    display: flex;

    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.mobile-dropdown-trigger i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
}

.mobile-dropdown-menu.open {
    max-height: 500px;
}

.mobile-dropdown-item {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-dropdown-item i {
    width: 24px;
    font-size: 14px;
}

.mobile-dropdown-item:hover {
    color: #fff;
    padding-left: 25px;
}

/* Hamburger Icon */
.hamburger {
    width: 44px;
    height: 44px;
    background: #000000;
    border: 1px solid rgb(0 0 0);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Hide desktop menu on mobile */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
}

@media (min-width: 993px) {
    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}








/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 120px 0;
    background: radial-gradient(circle at 30% 20%, #0a0a0a, #000000);
    position: relative;
    overflow: hidden;
}

/* Animated background */
.blog-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.02);
    filter: blur(120px);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: blogFloat 12s infinite alternate;
}

.blog-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.015);
    filter: blur(100px);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: blogFloat2 10s infinite alternate;
}

@keyframes blogFloat {
    0% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0.6;
    }
}

@keyframes blogFloat2 {
    0% {
        transform: translateY(0px);
        opacity: 0.2;
    }

    100% {
        transform: translateY(40px);
        opacity: 0.5;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.blog-desc {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: rgba(12, 12, 16, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

/* Card Image */
.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

/* Card Content */
.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.blog-date i {
    font-size: 12px;
    color: #aaa;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.blog-read-time i {
    font-size: 12px;
    color: #aaa;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #ddd;
}

.blog-excerpt {
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Read More Link */
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.blog-readmore i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-readmore:hover {
    gap: 12px;
    border-bottom-color: #fff;
}

.blog-readmore:hover i {
    transform: translateX(5px);
}

/* Load More Button */
.blog-loadmore {
    text-align: center;
    margin-top: 40px;
}

.loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 38px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.loadmore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s ease;
    z-index: -1;
}

.loadmore-btn:hover {
    color: #000;
    border-color: #fff;
    gap: 16px;
}

.loadmore-btn:hover::before {
    left: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 20px;
    }
}



        /* ========== CONTACT PAGE SECTION ========== */
        .mono-contact-section {
            padding: 120px 0 80px;
            background: radial-gradient(circle at 30% 20%, #0a0a0a, #000000);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background */
        .mono-contact-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.02);
            filter: blur(120px);
            border-radius: 50%;
            top: -200px;
            right: -100px;
            animation: monoContactFloat 12s infinite alternate;
        }

        .mono-contact-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.015);
            filter: blur(100px);
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
            animation: monoContactFloat2 10s infinite alternate;
        }

        @keyframes monoContactFloat {
            0% { transform: translateY(0px); opacity: 0.3; }
            100% { transform: translateY(-50px); opacity: 0.6; }
        }

        @keyframes monoContactFloat2 {
            0% { transform: translateY(0px); opacity: 0.2; }
            100% { transform: translateY(40px); opacity: 0.5; }
        }

        .mono-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        /* Section Header */
        .mono-contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .mono-contact-subtitle {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #aaa;
            margin-bottom: 20px;
        }

        .mono-contact-title {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #fff, #aaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }

        .mono-contact-desc {
            color: #888;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Contact Grid */
        .mono-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        /* ========== LEFT SIDE - CONTACT INFO ========== */
        .mono-contact-info {
            background: rgba(12, 12, 16, 0.6);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 40px;
        }

        .mono-info-title {
            font-size: 28px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .mono-info-text {
            color: #999;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        /* Contact Details */
        .mono-contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 40px;
        }

        .mono-contact-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .mono-contact-item:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(8px);
        }

        .mono-contact-icon {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
        }

        .mono-contact-detail h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .mono-contact-detail p {
            font-size: 14px;
            color: #aaa;
        }

        /* Social Links */
        .mono-social-section {
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mono-social-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 18px;
        }

        .mono-social-links {
            display: flex;
            gap: 15px;
        }

        .mono-social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mono-social-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        /* ========== RIGHT SIDE - FORM ========== */
        .mono-contact-form-wrapper {
            background: rgba(12, 12, 16, 0.6);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 40px;
        }

        .mono-form-title {
            font-size: 28px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .mono-form-text {
            color: #999;
            margin-bottom: 30px;
        }

        /* Form Groups */
        .mono-form-group {
            margin-bottom: 25px;
        }

        .mono-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 5px;
        }

        .mono-form-group input,
        .mono-form-group select,
        .mono-form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            color: #fff;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .mono-form-group input:focus,
        .mono-form-group select:focus,
        .mono-form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(30, 30, 30, 0.9);
        }

        .mono-form-group input::placeholder,
        .mono-form-group textarea::placeholder {
            color: #555;
        }

        /* Submit Button */
        .mono-submit-btn {
            width: 100%;
            padding: 16px;
            background: #fff;
            border: none;
            border-radius: 16px;
            color: #000;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.35s ease;
            margin-top: 10px;
        }

        .mono-submit-btn:hover {
            gap: 15px;
            background: #eee;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        /* ========== MAP SECTION ========== */
        .mono-map-section {
            margin-top: 60px;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mono-map-iframe {
            width: 100%;
            height: 400px;
            border: none;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .mono-map-iframe:hover {
            filter: grayscale(0%);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            .mono-contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .mono-contact-title {
                font-size: 36px;
            }
            .mono-contact-section {
                padding: 80px 0 60px;
            }
        }

        @media (max-width: 768px) {
            .mono-form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .mono-contact-info,
            .mono-contact-form-wrapper {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            .mono-contact-title {
                font-size: 28px;
            }
            .mono-info-title,
            .mono-form-title {
                font-size: 24px;
            }
            .mono-contact-item {
                padding: 12px;
            }
            .mono-map-iframe {
                height: 280px;
            }
        }
        


@media (max-width: 576px) {
    .btn-premium-outline {
        display: none !important;
    }

    .blog-detail-grid {
        display: block !important;
    }

        .blog-hero-image {
        height: 206px!important;
    }

    .blog-sidebar {
    display: none !important;
}



}

/* Final project gallery override: images/videos only, no badges or hover text. */
.project-overlay,
.project-card:hover .project-overlay,
.project-type-badge {
    display: none !important;
}
