        :root {
            --bg: #fff7ed;
            --bg-strong: #ffedd5;
            --surface: rgba(255, 247, 237, 0.86);
            --surface-strong: #fff7ed;
            --text: #1e1712;
            --muted: #5f5044;
            --line: rgba(249, 115, 22, 0.18);
            --primary: #14336e;
            #14336e: #ea580c;
            --accent: #ffedd5;
            --dark: #110d0a;
            --shadow-lg: 0 28px 70px rgba(249, 115, 22, 0.18);
            --shadow-md: 0 18px 40px rgba(249, 115, 22, 0.12);
            --radius-xl: 34px;
            --radius-lg: 26px;
            --radius-md: 20px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Outfit", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 10% 15%, rgba(249, 115, 22, 0.16), transparent 22%),
                radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.1), transparent 20%),
                linear-gradient(180deg, #fff7ed 0%, #ffedd5 42%, #fffaf5 100%);
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.22;
            pointer-events: none;
            z-index: -3;
        }

        h1, h2, h3, h4, .display-font {
            font-family: "Cormorant Garamond", serif;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
        }

        .section-space {
            padding: 50px 0;
        }

        .glass-panel {
            background: var(--surface);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.58);
            box-shadow: var(--shadow-lg);
        }

        .navbar-wrap {
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1030;
            backdrop-filter: blur(16px);
           
        }

        .header-shell {
            padding: 0;
            position: relative;
            z-index: 2;
        }

        .custom-nav {
            width: 100%;
            border-radius: 0;
            padding: 5px 28px;
            background: rgb(20 51 110 / 72%);
            border: 0;
            box-shadow: none;
        }

        .custom-nav .navbar-toggler {
            color: #fff;
        }

        .custom-nav .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .main-header::before {
            content: "";
            position: absolute;
            inset: 0;
           
            pointer-events: none;
            z-index: -1;
        }

        .brand-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            min-height: 52px;
            padding: 8px 14px;
            
            border-radius: 0;
            box-shadow: none !important;
            transition: transform 0.35s ease;
        }

        .brand-badge:hover {
            transform: translateY(-2px);
        
            box-shadow: none !important;
        }

        .brand-badge span {
            display: inline-block;
            font-size: 25px;
            font-weight: 900;
            line-height: 1;
            white-space: nowrap;
        }

        .brand-name-main {
            color: var(#14336e);
        }

        .brand-name-accent {
            color: var(--primary);
        }

        .nav-link {
            color: var(--muted);
            font-weight: 600;
            padding: 10px 14px !important;
            border-radius: 999px;
            transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(#14336e);
            background: rgba(159, 106, 67, 0.1);
            transform: translateY(-1px);
        }

        .btn-brand,
        .btn-outline-brand {
            border-radius: 999px;
            font-weight: 700;
            padding: 14px 28px;
            transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        }

       .btn-brand {
    color: #14336e;
    border: none;
    background: linear-gradient(135deg, #e1e1e0, #dbdada);
    box-shadow: 0 18px 30px rgba(159, 106, 67, 0.28);
}

        .btn-brand:hover,
        .btn-brand:focus {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 22px 34px rgba(159, 106, 67, 0.34);
        }

        .btn-outline-brand {
            color: var(#14336e);
            border: 1px solid rgba(119, 71, 40, 0.18);
            background: rgba(255, 255, 255, 0.65);
        }

        .btn-outline-brand:hover,
        .btn-outline-brand:focus {
            color: #fff;
            background: var(--dark);
            border-color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
        }

.hero {
    padding: 0 0 104px;
    position: relative;
    overflow: hidden;
    margin-top: -54px;
}

.hero-shell {
    padding-left: 0;
    padding-right: 0;
}

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(8px);
            z-index: -2;
        }

        .hero::before {
            width: 330px;
            height: 330px;
            left: -90px;
            top: 80px;
            background: rgba(212, 183, 157, 0.58);
            animation: blobFloat 11s ease-in-out infinite;
        }

        .hero::after {
            width: 420px;
            height: 420px;
            right: -140px;
            bottom: -50px;
            background: rgba(159, 106, 67, 0.14);
            animation: blobFloat 13s ease-in-out infinite reverse;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(119, 71, 40, 0.1);
            color: var(#14336e);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.12em;
           
        }

.hero-panel {
    position: relative;
    width: 100%;
    padding: 42px;
    border-radius: 42px;
    overflow: hidden;
    isolation: isolate;
    padding-top: 44px;
}

.hero-banner-panel {
    min-height: 680px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #110d0a;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(17, 13, 10, 0.06), rgba(17, 13, 10, 0.36)),
        url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80") center/cover;
    opacity: 0.22;
    z-index: -2;
}

.hero-banner-glow {
    position: absolute;
    inset: auto -40px -60px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 183, 157, 0.52), transparent 70%);
    z-index: -1;
}

.hero-layout {
    min-height: 620px;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-copy {
    position: relative;
    padding: 0 6px 18px 12px;
}

.hero-banner-copy {
    position: absolute;
    left: clamp(18px, 6vw, 92px);
    bottom: clamp(92px, 12vw, 150px);
    z-index: 3;
    max-width: 720px;
    padding: 0;
}

.hero-banner-copy .eyebrow {
    background: rgba(255, 247, 237, 0.88);
    border-color: rgba(249, 115, 22, 0.22);
}

.hero-banner-copy .hero-title,
.hero-banner-copy .hero-text {
    color: #fff;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hero-banner-copy .hero-text {
    max-width: 640px;
}

.hero-banner-copy .btn-outline-brand {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.hero-kicker {
    margin-top: 16px;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 30px;
    line-height: 1.25;
    margin: 18px 0 12px;
    max-width: 940px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 800;
}

.hero-title .highlight {
    color: #fff;
    position: relative;
    display: inline-block;
    z-index: 0;
    text-shadow: inherit;
}

.hero-title .highlight::after {
    display: none;
}

.hero-text {
    max-width: 610px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-note {
    margin-top: 22px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.95rem;
}

.hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
    max-width: 660px;
}

.hero-info-card {
    padding: 20px 18px;
    border-radius: 22px;
    background: rgba(255, 251, 246, 0.74);
    border: 1px solid rgba(119, 71, 40, 0.08);
    box-shadow: var(--shadow-md);
}

.hero-info-card strong {
    display: block;
    color: var(#14336e);
    font-size: 1.35rem;
    font-weight: 800;
}

.hero-info-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-media {
    position: relative;
    padding: 0 0 22px 18px;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
}

.hero-banner-carousel {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(26px) scale(0.985);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-carousel-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.hero-carousel-image {
    min-height: 560px;
    border-radius: 34px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-banner-carousel .hero-carousel-image {
    min-height: 680px;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}

.hero-carousel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(180deg, transparent 55%, rgba(17, 13, 10, 0.54));
}

.hero-banner-carousel .hero-carousel-image::after {
    background:
        linear-gradient(90deg, rgba(17, 13, 10, 0.78), rgba(17, 13, 10, 0.38) 46%, rgba(17, 13, 10, 0.12)),
        linear-gradient(180deg, rgba(17, 13, 10, 0.18), rgba(17, 13, 10, 0.58));
}

.hero-carousel-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 249, 243, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(159, 106, 67, 0.1);
    color: var(#14336e);
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-carousel-caption h3 {
    font-size: 1.55rem;
    margin: 14px 0 10px;
}

.hero-carousel-caption p,
.section-copy,
.card-copy,
.testimonial-copy,
.footer-copy {
    color: var(--muted);
}

.hero-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding-right: 18px;
}

.hero-banner-controls {
    position: absolute;
    left: clamp(18px, 6vw, 92px);
    right: clamp(18px, 6vw, 92px);
    bottom: 34px;
    z-index: 4;
    padding-right: 0;
}

.hero-carousel-arrow {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 250, 244, 0.9);
    color: var(#14336e);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-carousel-arrow:hover {
    transform: translateY(-3px);
    background: var(#14336e);
    color: #fff;
}

.hero-carousel-dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.88);
    box-shadow: var(--shadow-md);
}

.hero-carousel-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(95, 65, 42, 0.22);
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-carousel-dot.is-active {
    background: var(#14336e);
    transform: scale(1.18);
}

/* ── Bootstrap Hero Carousel ── */
.hero,
.hero.hero-slider-section {
    padding: 0;
    margin-top: -54px;
    position: relative;
    overflow: hidden;
}

.hero-media-carousel {
    position: relative;
    width: 100%;
    background: #110d0a;
}

.hero-media-carousel .carousel-inner,
.hero-media-carousel .carousel-item {
    min-height: 760px;
}

.hero-image-banner {
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;
    background: #110d0a;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.98) saturate(1.08) contrast(1.03);
}

.hero-image-banner::after,
.hero-media-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 10, 6, 0.48), rgba(15, 10, 6, 0.2) 46%, rgba(15, 10, 6, 0.02)),
        linear-gradient(180deg, rgba(255, 186, 73, 0.1), rgba(15, 10, 6, 0.28));
    pointer-events: none;
    z-index: 1;
}

.hero-content-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: clamp(98px, 12vw, 150px) clamp(20px, 6vw, 96px) clamp(76px, 10vw, 128px);
}

.hero-content-inner {
    max-width: 760px;
    padding-left: clamp(16px, 2vw, 28px);
    border-left: 6px solid #ffd166;
}

.hero-content-inner .hero-title,
.hero-content-inner .hero-text {
    color: #fff;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.72), 0 3px 7px rgba(0, 0, 0, 0.5);
}

.hero-quote {
    max-width: 680px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    font-family: inherit;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content-inner .eyebrow {
    color: #291604;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 218, 137, 0.94));
    border-color: rgba(255, 209, 102, 0.64);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.hero-content-inner .btn-outline-brand {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.hero-ctrl-prev,
.hero-ctrl-next {
    width: 60px;
    opacity: 1;
    top: auto;
    bottom: 32px;
    z-index: 6;
    align-items: center;
    justify-content: center;
}

.hero-ctrl-prev {
    left: clamp(20px, 6vw, 96px);
}

.hero-ctrl-next {
    right: clamp(20px, 6vw, 96px);
}

.hero-ctrl-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 250, 244, 0.92);
    color: var(#14336e);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-ctrl-prev:hover .hero-ctrl-icon,
.hero-ctrl-next:hover .hero-ctrl-icon {
    transform: translateY(-3px);
    background: var(#14336e);
    color: #fff;
}

.hero-indicators {
    bottom: 44px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.9);
    box-shadow: var(--shadow-md);
    margin: 0;
    z-index: 6;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(95, 65, 42, 0.26);
    opacity: 1;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, width 0.3s ease;
}

.hero-indicators .active {
    background: var(#14336e);
    width: 30px;
    border-radius: 999px;
    transform: none;
}

@media (max-width: 991.98px) {
    .hero.hero-slider-section {
        padding: 0;
    }

    .hero-media-carousel .carousel-inner,
    .hero-media-carousel .carousel-item,
    .hero-image-banner {
        min-height: 640px;
    }

    .hero-content-overlay {
        align-items: flex-end;
        padding-bottom: clamp(78px, 12vw, 120px);
    }

    .process-curve {
        top: 18px;
        height: 330px;
        transform: rotateX(12deg);
    }

    .process-grid > [class*="col-"]:nth-child(even) {
        padding-top: 34px;
    }
}

@media (max-width: 575.98px) {
    .hero.hero-slider-section {
        margin-top: -48px;
        padding: 0;
    }

    .hero-media-carousel .carousel-inner,
    .hero-media-carousel .carousel-item,
    .hero-image-banner {
        min-height: 560px;
    }

    .hero-content-inner .hero-title {
        font-size: 20px;
        line-height: 1.25;
    }

    .hero-ctrl-prev,
    .hero-ctrl-next {
        bottom: 20px;
    }
.hero-quote {
   
    font-size: 20px;
    font-weight: 600;
   
}
    .hero-indicators {
        bottom: 28px;
        padding: 10px 14px;
    }
}

.mini-icon,
.feature-icon,
.collection-icon,
        .service-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(159, 106, 67, 0.18), rgba(212, 183, 157, 0.42));
            color: var(#14336e);
            font-size: 1.4rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .brand-strip {
            padding: 10px 0 18px;
        }

        .brand-panel {
            padding: 30px 36px;
            border-radius: 30px;
        }

        .brand-item {
            color: rgba(34, 26, 21, 0.55);
            font-size: 0.95rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-align: center;
            text-transform: uppercase;
        }

        .section-tag {
            display: inline-block;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 800;
            font-size: 0.82rem;
            letter-spacing: 0.14em;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: clamp(2.2rem, 4.4vw, 4rem);
            line-height: 0.98;
            margin-bottom: 20px;
        }

        .feature-card,
        .collection-card,
        .testimonial-card,
        .service-card,
        .cta-panel,
        .editorial-card,
        .creative-story {
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.74);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
        }

        .feature-card,
        .testimonial-card,
        .service-card {
            padding: 32px;
            height: 100%;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .feature-card {
            position: relative;
            padding: 0;
            overflow: visible;
            background: transparent;
            border: 0;
            box-shadow: none;
            perspective: 1200px;
            transform-style: preserve-3d;
            transition: transform 0.45s ease;
        }

        .feature-card:hover,
        .testimonial-card:hover,
        .service-card:hover,
        .collection-card:hover,
        .editorial-card:hover,
        .creative-story:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover {
            box-shadow: none;
            transform: translateY(-8px);
        }

        .feature-card h3,
        .collection-card h3,
        .testimonial-card h3,
        .service-card h3,
        .editorial-card h3 {
            font-size: 1.65rem;
            margin: 18px 0 12px;
        }

        .feature-accent {
            display: block;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            margin-top: 20px;
        }

        .feature-card-inner {
            position: relative;
            z-index: 2;
            height: 100%;
            min-height: 320px;
            padding: 32px 28px 30px;
            border-radius: 30px;
            background:
                linear-gradient(160deg, rgba(255, 252, 247, 0.96), rgba(239, 229, 220, 0.92)),
                linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
            border: 1px solid rgba(255, 255, 255, 0.62);
            box-shadow:
                0 18px 34px rgba(33, 22, 15, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.72),
                inset 0 -18px 38px rgba(197, 149, 97, 0.08);
            backdrop-filter: blur(14px);
            transform: rotateX(0deg) rotateY(0deg) translateZ(0);
            transform-style: preserve-3d;
            transition: transform 0.45s ease, box-shadow 0.45s ease;
            overflow: hidden;
        }

        .feature-card-inner::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background:
                linear-gradient(130deg, rgba(255, 255, 255, 0.44), transparent 28%),
                radial-gradient(circle at 84% 14%, rgba(201, 149, 61, 0.15), transparent 24%);
            pointer-events: none;
        }

        .feature-card-inner::after {
            content: "";
            position: absolute;
            inset: auto 16px 12px 16px;
            height: 18px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(201, 149, 61, 0.14), transparent 74%);
            filter: blur(14px);
            pointer-events: none;
        }

        .feature-card:hover .feature-card-inner {
            transform: rotateX(8deg) rotateY(-10deg) translate3d(0, -6px, 30px);
            box-shadow:
                0 28px 46px rgba(33, 22, 15, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.78),
                inset 0 -18px 38px rgba(197, 149, 97, 0.1);
        }

        .feature-card-shadow {
            position: absolute;
            inset: 22px 14px -8px 14px;
            border-radius: 30px;
            background: linear-gradient(180deg, rgba(76, 46, 24, 0.16), rgba(76, 46, 24, 0.02));
            filter: blur(18px);
            transform: translateZ(-1px);
            transition: transform 0.45s ease, opacity 0.45s ease;
            opacity: 0.72;
        }

        .feature-card:hover .feature-card-shadow {
            transform: translateY(18px) scale(0.96);
            opacity: 0.9;
        }

        .feature-card-orbit {
            position: absolute;
            top: -12px;
            right: 26px;
            width: 82px;
            height: 82px;
            border-radius: 50%;
            border: 1px dashed rgba(201, 149, 61, 0.36);
            opacity: 0.78;
            transition: transform 0.45s ease, opacity 0.45s ease;
        }

        .feature-card-orbit::before,
        .feature-card-orbit::after {
            content: "";
            position: absolute;
            border-radius: 50%;
        }

        .feature-card-orbit::before {
            width: 12px;
            height: 12px;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            box-shadow: 0 0 0 6px rgba(201, 149, 61, 0.14);
        }

        .feature-card-orbit::after {
            inset: 12px;
            border: 1px solid rgba(201, 149, 61, 0.12);
        }

        .feature-card:hover .feature-card-orbit {
            transform: rotate(22deg) scale(1.06);
            opacity: 1;
        }

        .feature-card-topline {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }

        .feature-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 54px;
            height: 54px;
            padding: 0 14px;
            border-radius: 18px;
            background: linear-gradient(145deg, rgba(255, 248, 240, 0.94), rgba(224, 204, 184, 0.72));
            border: 1px solid rgba(201, 149, 61, 0.16);
            color: var(#14336e);
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 10px 20px rgba(33, 22, 15, 0.08);
            transform: translateZ(24px);
        }

        .feature-card h3,
        .feature-card p,
        .feature-accent,
        .feature-icon {
            position: relative;
            z-index: 1;
            transform: translateZ(26px);
        }

        .feature-card .feature-icon {
            width: 66px;
            height: 66px;
            border-radius: 22px;
            background:
                linear-gradient(145deg, rgba(255, 249, 242, 0.96), rgba(216, 194, 171, 0.86)),
                linear-gradient(135deg, rgba(159, 106, 67, 0.18), rgba(212, 183, 157, 0.42));
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.82),
                0 16px 26px rgba(33, 22, 15, 0.12);
        }

        .feature-card .feature-accent {
            width: 88px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary), rgba(212, 183, 157, 0.34), transparent);
            margin-top: 24px;
        }

        .collection-card {
            position: relative;
            overflow: visible;
            height: 100%;
            padding-top: 34px;
            background: transparent;
            border: 0;
            box-shadow: none;
            perspective: 1300px;
            transition: transform 0.45s ease;
        }

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

        .collection-depth-shadow {
            position: absolute;
            inset: 56px 20px 16px;
            border-radius: 34px;
            background: linear-gradient(180deg, rgba(54, 36, 24, 0.16), rgba(54, 36, 24, 0.02));
            filter: blur(22px);
            opacity: 0.72;
            transition: transform 0.45s ease, opacity 0.45s ease;
        }

        .collection-card:hover .collection-depth-shadow {
            transform: translateY(18px) scale(0.96);
            opacity: 0.9;
        }

        .collection-stage {
            position: relative;
            z-index: 2;
            margin: 0 18px -54px;
            padding: 14px;
            border-radius: 34px;
            background:
                linear-gradient(160deg, rgba(255, 251, 246, 0.96), rgba(228, 213, 200, 0.72)),
                linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow:
                0 20px 40px rgba(33, 22, 15, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.76);
            transform: rotateX(0deg) rotateY(0deg) translateZ(0);
            transform-style: preserve-3d;
            transition: transform 0.45s ease, box-shadow 0.45s ease;
        }

        .collection-card:hover .collection-stage {
            transform: rotateX(7deg) rotateY(-7deg) translate3d(0, -8px, 24px);
            box-shadow:
                0 28px 54px rgba(33, 22, 15, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.84);
        }

        .collection-image {
            height: 320px;
            border-radius: 26px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            transform: translateZ(24px);
            transition: transform 0.55s ease, filter 0.55s ease;
        }

        .collection-card:hover .collection-image {
            transform: translateZ(26px) scale(1.03);
            filter: saturate(1.05);
        }

        .collection-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
            
        }

        .collection-badge {
            position: absolute;
            left: 22px;
            top: 22px;
            z-index: 1;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 250, 244, 0.78);
            color: var(#14336e);
            font-weight: 700;
            font-size: 0.86rem;
        }

        .collection-glow-ring {
            position: absolute;
            right: 20px;
            bottom: 18px;
            width: 78px;
            height: 78px;
            border-radius: 50%;
            border: 1px dashed rgba(255, 244, 230, 0.5);
            background: radial-gradient(circle, rgba(201, 149, 61, 0.18), transparent 66%);
            box-shadow: 0 0 26px rgba(201, 149, 61, 0.22);
            animation: spinSlow 18s linear infinite;
        }

        .collection-glow-ring::before {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff1d5;
            box-shadow: 0 0 0 6px rgba(255, 223, 163, 0.18);
        }

        .collection-content {
            position: relative;
            z-index: 1;
            padding: 84px 28px 28px;
            text-align: center;
            border-radius: 32px;
            background:
                linear-gradient(165deg, rgba(255, 252, 248, 0.96), rgba(238, 228, 219, 0.95));
            border: 1px solid rgba(255, 255, 255, 0.68);
            box-shadow:
                0 18px 36px rgba(33, 22, 15, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transform: translateZ(10px);
        }

        .collection-content::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background:
                radial-gradient(circle at 88% 16%, rgba(201, 149, 61, 0.12), transparent 20%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 32%);
            pointer-events: none;
        }

        .collection-topline {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;
        }

        .collection-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 54px;
            height: 54px;
            padding: 0 14px;
            border-radius: 18px;
            background: linear-gradient(145deg, rgba(253, 245, 235, 0.94), rgba(223, 207, 192, 0.82));
            border: 1px solid rgba(201, 149, 61, 0.16);
            color: var(#14336e);
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.78),
                0 12px 22px rgba(33, 22, 15, 0.08);
        }

        .collection-card .collection-icon {
            width: 64px;
            height: 64px;
            border-radius: 22px;
            background:
                linear-gradient(145deg, rgba(255, 249, 242, 0.98), rgba(218, 197, 176, 0.88));
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.84),
                0 14px 24px rgba(33, 22, 15, 0.12);
        }

        .collection-card h3,
        .collection-card p,
        .collection-meta {
            position: relative;
            z-index: 1;
        }

        .collection-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 20px;
        }

        .collection-meta a {
            position: relative;
            padding-bottom: 2px;
        }

        .collection-meta a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            transform: scaleX(0.55);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .collection-card:hover .collection-meta a::after {
            transform: scaleX(1);
        }

        .price-pill {
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(159, 106, 67, 0.1);
            color: var(#14336e);
            font-weight: 800;
        }

        .work-process-section {
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }

        .work-process-section::before {
            display: none;
        }

        .process-flow {
            position: relative;
            padding-top: 52px;
            perspective: 1200px;
        }

        .process-curve {
            position: absolute;
            left: 2%;
            right: 2%;
            top: 8px;
            width: 96%;
            height: 240px;
            pointer-events: none;
            z-index: 0;
            transform: rotateX(18deg);
            transform-origin: center;
        }

        .process-curve path {
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            vector-effect: non-scaling-stroke;
        }

        .process-curve-shadow {
            stroke: rgba(20, 51, 110, 0.12);
            stroke-width: 18;
            filter: blur(2px);
        }

        .process-curve-base {
            stroke: rgba(20, 51, 110, 0.18);
            stroke-width: 7;
        }

        .process-curve-active {
            stroke: url(#processGradient);
            stroke-width: 7;
            stroke-dasharray: 240 1080;
            filter: url(#processGlow);
            animation: processCurveMove 5.4s ease-in-out infinite;
        }

        .process-curve-spark {
            stroke: #fff4bf;
            stroke-width: 3;
            stroke-dasharray: 26 1294;
            filter: url(#processGlow);
            animation: processSparkMove 3.2s linear infinite;
        }

        .process-grid {
            position: relative;
            z-index: 1;
        }

        .process-grid > [class*="col-"]:nth-child(even) {
            padding-top: 54px;
        }

        .process-card {
            position: relative;
            z-index: 1;
            height: 100%;
            padding: 0 8px 26px;
            text-align: center;
            background: transparent;
            border: 0;
            box-shadow: none;
            transform-style: preserve-3d;
            transition: transform 0.35s ease;
        }

        .process-card:hover {
            transform: translateY(-10px) rotateX(4deg);
            box-shadow: none;
        }

        .process-circle {
            width: 118px;
            height: 118px;
            margin: 0 auto 24px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #fff;
            background:
                radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 30%),
                linear-gradient(135deg, #14336e 0%, #1f5fbf 54%, #14336e 100%);
            border: 8px solid #ffffff;
            box-shadow:
                0 24px 46px rgba(20, 51, 110, 0.28),
                0 0 0 9px rgba(255, 255, 255, 0.92),
                0 0 0 14px rgba(20, 51, 110, 0.12),
                inset 0 -12px 22px rgba(0, 0, 0, 0.18),
                inset 0 12px 20px rgba(255, 255, 255, 0.24);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .process-card:hover .process-circle {
            transform: scale(1.08) translateZ(24px);
            box-shadow:
                0 30px 62px rgba(20, 51, 110, 0.38),
                0 0 0 10px rgba(255, 255, 255, 0.96),
                0 0 0 16px rgba(31, 95, 191, 0.18),
                inset 0 -12px 22px rgba(0, 0, 0, 0.18),
                inset 0 12px 20px rgba(255, 255, 255, 0.28);
        }

        .process-circle span {
            font-size: 0.82rem;
            font-weight: 900;
            letter-spacing: 0.18em;
        }

        .process-circle i {
            font-size: 2.05rem;
            line-height: 1;
        }

        .process-card h3 {
            margin-bottom: 12px;
            font-size: 1.45rem;
        }

        .process-card p {
            max-width: 230px;
            margin-left: auto;
            margin-right: auto;
        }

        .turnkey-projects-section,
        .commercial-projects-section,
        .top-bg-section,
        .testimonials-bg-section,
        .works-bg-section,
        .contact-bg-section {
            position: relative;
            overflow: hidden;
        }

        .turnkey-projects-section, .top-bg-section, .works-bg-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgb(255 255 255 / 94%)), linear-gradient(90deg, rgba(7, 19, 42, 0.14), rgba(247, 183, 51, 0.12)), url(styles.css) center / cover fixed;
}

        .commercial-projects-section,
        .testimonials-bg-section,
        .contact-bg-section {
            background:
                linear-gradient(180deg, rgba(247, 250, 255, 0.9), rgba(255, 255, 255, 0.88)),
                linear-gradient(90deg, rgba(20, 51, 110, 0.16), rgba(247, 183, 51, 0.1)),
                url("") center/cover fixed;
        }

        .contact-bg-section {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.94)),
                linear-gradient(90deg, rgba(147, 197, 253, 0.16), rgba(255, 255, 255, 0.08)),
                url("") center/cover fixed;
        }

        .turnkey-projects-section::before,
        .commercial-projects-section::before,
        .top-bg-section::before,
        .testimonials-bg-section::before,
        .works-bg-section::before,
        .contact-bg-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
                radial-gradient(circle at 86% 72%, rgba(20, 51, 110, 0.18), transparent 32%);
            pointer-events: none;
        }

        .turnkey-projects-section > .container-fluid,
        .commercial-projects-section > .container-fluid,
        .top-bg-section > .container,
        .top-bg-section > .container-fluid,
        .testimonials-bg-section > .container,
        .works-bg-section > .container,
        .contact-bg-section > .container {
            position: relative;
            z-index: 1;
        }

        .turnkey-carousel {
            position: relative;
            max-width: 1040px;
            margin: 0 auto;
            padding: 14px;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 239, 255, 0.72));
            box-shadow: 0 26px 70px rgba(20, 51, 110, 0.14);
        }

        .turnkey-card-carousel {
            max-width: 1180px;
            padding: 18px 18px 54px;
        }

        .turnkey-viewport {
            border-radius: 22px;
            overflow: hidden;
        }

        .turnkey-card-viewport {
            border-radius: 20px;
            overflow: visible;
        }

        .turnkey-project-card {
            position: relative;
            min-height: 360px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 44px rgba(20, 51, 110, 0.14);
            isolation: isolate;
            background: #10234b;
        }

        .turnkey-project-card img {
            width: 100%;
            height: 360px;
            display: block;
            object-fit: cover;
            filter: brightness(1.08) saturate(1.1);
            transform: scale(1.02);
            transition: transform 0.7s ease, filter 0.45s ease;
        }

        .turnkey-project-card::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
           
                pointer-events: none;
        }

        .turnkey-project-card:hover img {
            transform: scale(1.1);
            filter: brightness(1.18) saturate(1.2);
        }

        .turnkey-project-title {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 2;
            color: #fff;
            text-shadow: 0 14px 34px rgba(0, 0, 0, 0.58);
        }

        .turnkey-project-title span {
            display: inline-flex;
            padding: 7px 11px;
            border-radius: 999px;
            color: #10234b;
            background: rgba(255, 255, 255, 0.9);
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .turnkey-project-title h3 {
            margin: 12px 0 0;
            color: #fff;
            font-size: clamp(1.35rem, 2vw, 2rem);
            line-height: 1.05;
        }

        .turnkey-slide {
            position: relative;
            min-height: 460px;
            overflow: hidden;
            isolation: isolate;
        }

        .turnkey-image {
            width: 100%;
            height: 460px;
            display: block;
            object-fit: cover;
            filter: brightness(1.08) saturate(1.08);
            transform: scale(1.02);
            transition: transform 1.2s ease, filter 0.6s ease;
        }

        .turnkey-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(90deg, rgba(7, 19, 42, 0.7), rgba(7, 19, 42, 0.18) 58%, rgba(7, 19, 42, 0.04)),
                linear-gradient(180deg, transparent 48%, rgba(7, 19, 42, 0.56));
            pointer-events: none;
        }

        .turnkey-slide:hover .turnkey-image {
            transform: scale(1.08);
            filter: brightness(1.16) saturate(1.16);
        }

        .turnkey-caption {
            position: absolute;
            left: clamp(22px, 5vw, 62px);
            bottom: clamp(52px, 7vw, 86px);
            z-index: 2;
            max-width: 560px;
            color: #fff;
            text-shadow: 0 18px 44px rgba(0, 0, 0, 0.58);
        }

        .turnkey-caption span {
            display: inline-flex;
            padding: 9px 14px;
            border-radius: 999px;
            color: #10234b;
            background: rgba(255, 255, 255, 0.9);
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .turnkey-caption h3 {
            margin: 16px 0 0;
            color: #fff;
            font-size: clamp(2rem, 4vw, 4rem);
            line-height: 1;
        }

        .turnkey-dots {
            bottom: 18px;
            z-index: 4;
            gap: 10px;
            margin-bottom: 0;
        }

        .turnkey-dots [data-bs-target] {
            width: 12px;
            height: 12px;
            border: 0;
            border-radius: 999px;
            margin: 0;
            background: rgba(255, 255, 255, 0.72);
            opacity: 1;
            transition: width 0.35s ease, background 0.35s ease;
        }

        .turnkey-dots .active {
            width: 34px;
            background: #f7b733;
        }

        .editorial-card {
            overflow: hidden;
            min-height: 100%;
        }

        .creative-story {
            position: relative;
            overflow: hidden;
            padding: 52px;
            background:
                radial-gradient(circle at 14% 18%, rgba(212, 183, 157, 0.26), transparent 24%),
                radial-gradient(circle at 82% 14%, rgba(201, 149, 61, 0.14), transparent 22%),
                linear-gradient(135deg, rgba(255, 250, 245, 0.96), rgba(239, 230, 220, 0.96));
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .creative-story-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(10px);
            pointer-events: none;
        }

        .creative-story-glow-one {
            width: 180px;
            height: 180px;
            top: -54px;
            right: 18%;
            background: rgba(212, 183, 157, 0.3);
            animation: blobFloat 10s ease-in-out infinite;
        }

        .creative-story-glow-two {
            width: 150px;
            height: 150px;
            bottom: -40px;
            left: 8%;
            background: rgba(159, 106, 67, 0.12);
            animation: blobFloat 12s ease-in-out infinite reverse;
        }

        .creative-copy {
            position: relative;
            z-index: 1;
        }

        .creative-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 18px 10px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(119, 71, 40, 0.1);
            box-shadow: 0 14px 28px rgba(33, 22, 15, 0.08);
            color: var(#14336e);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .creative-badge img {
            width: 46px;
            height: 46px;
            object-fit: contain;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(32, 23, 12, 0.96), rgba(102, 71, 26, 0.86));
            padding: 6px;
            box-shadow: 0 10px 24px rgba(33, 22, 15, 0.16);
        }

        .creative-lead {
            max-width: 620px;
            font-size: 1.04rem;
            line-height: 1.95;
            margin-top: 18px;
        }

        .creative-thread {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 26px;
            padding: 16px 22px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(119, 71, 40, 0.08);
            box-shadow: 0 14px 30px rgba(33, 22, 15, 0.08);
        }

        .creative-thread p {
            color: var(--muted);
            line-height: 1.7;
        }

        .creative-thread-dot {
            width: 14px;
            height: 14px;
            flex: 0 0 14px;
            border-radius: 50%;
            background: radial-gradient(circle, #fff 0 24%, var(--primary) 25% 100%);
            box-shadow:
                0 0 0 6px rgba(201, 149, 61, 0.12),
                0 0 24px rgba(201, 149, 61, 0.28);
        }

        .creative-points {
            display: grid;
            gap: 18px;
            margin-top: 34px;
        }

        .creative-point {
            display: grid;
            grid-template-columns: 62px minmax(0, 1fr);
            gap: 18px;
            align-items: start;
            padding: 22px 24px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.76);
            border: 1px solid rgba(119, 71, 40, 0.09);
            box-shadow: 0 16px 36px rgba(33, 22, 15, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .creative-point:hover {
            transform: translateY(-6px);
            border-color: rgba(201, 149, 61, 0.24);
            box-shadow: 0 22px 42px rgba(33, 22, 15, 0.12);
        }

        .creative-point h3 {
            font-size: 1.4rem;
            margin: 0 0 8px;
        }

        .creative-point-icon {
            width: 62px;
            height: 62px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(201, 149, 61, 0.2), rgba(212, 183, 157, 0.48));
            color: var(#14336e);
            font-size: 1.45rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
        }

        .creative-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-top: 30px;
            max-width: 520px;
        }

        .creative-metric {
            padding: 20px 18px;
            border-radius: 22px;
            background: rgba(255, 250, 244, 0.88);
            border: 1px solid rgba(119, 71, 40, 0.08);
            box-shadow: 0 12px 28px rgba(33, 22, 15, 0.08);
        }

        .creative-metric strong {
            display: block;
            color: var(#14336e);
            font-size: 1.42rem;
            font-weight: 800;
        }

        .creative-metric span {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .creative-visual-wrap {
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .creative-visual-main {
            position: relative;
            width: min(100%, 600px);
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .creative-visual-path {
            position: absolute;
            border-radius: 50%;
            border: 1px dashed rgba(201, 149, 61, 0.34);
            pointer-events: none;
        }

        .creative-visual-path-one {
            width: 560px;
            height: 560px;
            top: 20px;
            right: 6px;
            animation: spinSlow 30s linear infinite;
        }

        .creative-visual-path-two {
            width: 455px;
            height: 455px;
            top: 72px;
            right: 54px;
            border-style: solid;
            border-color: rgba(201, 149, 61, 0.1);
        }

        .creative-ring {
            position: relative;
            width: 530px;
            height: 530px;
            border-radius: 50%;
            border: 1px solid rgba(201, 149, 61, 0.18);
            background: radial-gradient(circle, rgba(255, 250, 244, 0.18), rgba(255, 255, 255, 0));
            animation: pulseGlow 7s ease-in-out infinite;
        }

        .creative-ring-secondary {
            position: absolute;
            width: 460px;
            height: 460px;
            border-style: dashed;
            border-color: rgba(201, 149, 61, 0.28);
            animation: spinSlow 24s linear infinite reverse;
        }

        .creative-image-card {
            position: absolute;
            width: min(100%, 520px);
            height: 430px;
            border-radius: 28px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(14px);
            box-shadow: 0 30px 64px rgba(33, 22, 15, 0.18);
            animation: floatCard 8s ease-in-out infinite;
            transition: transform 0.45s ease, box-shadow 0.45s ease;
        }

        .creative-image-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 36px 74px rgba(33, 22, 15, 0.24);
        }

        .creative-image {
            width: 100%;
            height: 100%;
            border-radius: 22px;
            background-position: center;
            background-size: cover;
            position: relative;
            overflow: hidden;
            transition: transform 0.6s ease, filter 0.6s ease;
        }

        .creative-image-card:hover .creative-image {
            transform: scale(1.08);
            filter: saturate(1.08);
        }

        .creative-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
                radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.3), transparent 22%),
                linear-gradient(180deg, transparent 56%, rgba(17, 13, 10, 0.3));
        }

        .creative-logo-core {
            position: absolute;
            inset: 50% auto auto 50%;
            width: 122px;
            height: 122px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            background: radial-gradient(circle, rgba(255, 247, 237, 0.96), rgba(249, 115, 22, 0.22));
            border: 6px solid rgba(249, 115, 22, 0.28);
            box-shadow:
                0 18px 40px rgba(249, 115, 22, 0.18),
                0 0 40px rgba(249, 115, 22, 0.22);
            animation: pulseGlow 6s ease-in-out infinite;
        }

        .creative-logo-core span {
            color: var(#14336e);
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 0;
        }

        .creative-orbit-card {
            position: absolute;
            max-width: 220px;
            padding: 18px 20px;
            border-radius: 24px;
            background: rgba(255, 248, 241, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.68);
            backdrop-filter: blur(18px);
            box-shadow: 0 18px 40px rgba(33, 22, 15, 0.12);
            z-index: 2;
        }

        .creative-orbit-card span,
        .creative-mini-card span {
            display: inline-flex;
            align-items: center;
            color: var(#14336e);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .creative-orbit-card strong,
        .creative-mini-card strong {
            display: block;
            font-family: "Cormorant Garamond", serif;
            font-size: 1.35rem;
            line-height: 1.02;
            margin: 12px 0 8px;
            color: var(--text);
        }

        .creative-mini-card p {
            color: var(--muted);
            line-height: 1.7;
        }

        .creative-orbit-card-bottom {
            right: 8px;
            bottom: 48px;
            animation: floatCard 10s ease-in-out infinite;
        }

        .creative-side-stack {
            position: absolute;
            right: 12px;
            bottom: 10px;
            display: grid;
            gap: 14px;
            width: 220px;
            z-index: 2;
        }

        .creative-mini-card {
            padding: 20px 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.76);
            border: 1px solid rgba(119, 71, 40, 0.08);
            box-shadow: 0 14px 28px rgba(33, 22, 15, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .creative-mini-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 34px rgba(33, 22, 15, 0.12);
        }

        .editorial-visual {
            min-height: 100%;
            background:
                linear-gradient(145deg, rgba(17, 14, 12, 0.08), rgba(17, 14, 12, 0.48)),
                url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?auto=format&fit=crop&w=1200&q=80") center/cover;
        }

        .editorial-content {
            padding: 42px;
        }

        .editorial-list {
            display: grid;
            gap: 16px;
            margin-top: 28px;
        }

        .editorial-list div {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            color: var(--muted);
        }

        .editorial-list i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .testimonial-card .stars {
            display: inline-flex;
            gap: 5px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .testimonial-auto-carousel {
            position: relative;
            padding-bottom: 54px;
        }

        .testimonial-auto-carousel .carousel-inner {
            overflow: hidden;
            border-radius: 22px;
        }

        .testimonial-auto-carousel .testimonial-card {
            min-height: 320px;
        }

        .testimonial-dots {
            bottom: 0;
            gap: 10px;
            margin-bottom: 0;
        }

        .testimonial-dots [data-bs-target] {
            width: 12px;
            height: 12px;
            border: 0;
            border-radius: 999px;
            margin: 0;
            background: rgba(20, 51, 110, 0.26);
            opacity: 1;
            transition: width 0.35s ease, background 0.35s ease;
        }

        .testimonial-dots .active {
            width: 34px;
            background: #14336e;
        }

        .testimonial-carousel {
            display: grid;
            grid-template-columns: 54px minmax(0, 1fr) 54px;
            align-items: center;
            gap: 18px;
        }

        .testimonial-viewport {
            overflow: hidden;
            border-radius: var(--radius-lg);
        }

        .testimonial-track {
            display: flex;
            gap: 18px;
            transition: transform 0.6s ease;
            will-change: transform;
        }

        .testimonial-slide {
            flex: 0 0 calc((100% - 36px) / 3);
            min-width: 0;
            padding: 2px 0;
        }

        .testimonial-slide .testimonial-card {
            min-height: 300px;
        }

        .testimonial-arrow {
            width: 54px;
            height: 54px;
            border: 0;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #14336e;
            background: linear-gradient(135deg, var(#14336e), var(--primary));
            box-shadow: 0 16px 28px rgba(249, 115, 22, 0.22);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-arrow:hover,
        .testimonial-arrow:focus {
            transform: translateY(-3px);
            box-shadow: 0 20px 34px rgba(249, 115, 22, 0.3);
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 22px;
        }

        .user-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: linear-gradient(135deg, var(#14336e), var(--primary));
            font-weight: 800;
        }

        .gallery-portfolio {
            position: relative;
            overflow: visible;
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.74);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            padding: 18px 18px 58px;
        }

        .gallery-track {
            display: flex;
            gap: 18px;
            transition: transform 0.65s ease;
            will-change: transform;
        }

        .gallery-slide {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 18px 34px rgba(249, 115, 22, 0.12);
            height: 100%;
        }

        .gallery-slide.is-active {
            box-shadow: 0 24px 46px rgba(249, 115, 22, 0.2);
        }

        .gallery-image {
            height: 380px;
            background-position: center;
            background-size: cover;
            position: relative;
            transition: transform 0.5s ease;
        }

        .gallery-slide:hover .gallery-image {
            transform: scale(1.04);
        }

        .gallery-image::after {
            content: "";
            position: absolute;
            inset: 0;
          
            }

        .gallery-image-label {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(249, 115, 22, 0.92);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 900;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-align: center;
        }

        .gallery-dots {
            align-items: center;
            justify-content: center;
            gap: 10px;
            bottom: 18px;
            margin-bottom: 0;
        }

        .gallery-dots [data-bs-target] {
            width: 12px;
            height: 12px;
            border: 0;
            border-radius: 999px;
            background: rgba(249, 115, 22, 0.24);
            opacity: 1;
            margin: 0;
            transition: width 0.3s ease, background 0.3s ease;
        }

        .gallery-dots .active {
            width: 34px;
            background: #14336e;
        }

        .contact-panel {
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(191, 219, 254, 0.72);
            box-shadow: 0 18px 42px rgba(147, 197, 253, 0.24);
            padding: 26px;
        }

        .contact-form-card,
        .contact-details-card {
            height: 100%;
            border-radius: 24px;
            padding: 34px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(191, 219, 254, 0.76);
            box-shadow: 0 16px 36px rgba(147, 197, 253, 0.2);
        }

        .contact-form .form-label {
            color: var(--text);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .contact-form .form-control,
        .contact-form .form-select {
            min-height: 54px;
            border-radius: 16px;
            border: 1px solid rgba(249, 115, 22, 0.18);
            background-color: rgba(255, 255, 255, 0.82);
            color: var(--text);
            box-shadow: none;
        }

        .contact-form textarea.form-control {
            min-height: 132px;
            resize: vertical;
        }

        .contact-form .form-control:focus,
        .contact-form .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
        }

        .contact-details-card {
            display: flex;
            flex-direction: column;
        }

        .contact-details-card h3 {
            font-size: 2rem;
            margin: 0 0 24px;
        }

        .contact-detail-list {
            display: grid;
            gap: 16px;
            margin-top: auto;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px;
            border-radius: 18px;
            color: var(--muted);
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(249, 115, 22, 0.12);
        }

        .contact-detail-item i {
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: linear-gradient(135deg, var(#14336e), var(--primary));
        }

        .contact-detail-item strong {
            display: block;
            color: var(--text);
            margin-bottom: 4px;
        }

        .service-card {
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: "";
            position: absolute;
            inset: auto -30px -60px auto;
            width: 120px;
            height: 120px;
            background: rgba(212, 183, 157, 0.24);
            border-radius: 50%;
        }

        .cta-panel {
            position: relative;
            overflow: hidden;
            padding: 46px;
            background:
                radial-gradient(circle at 90% 12%, rgba(212, 183, 157, 0.26), transparent 18%),
                linear-gradient(135deg, rgba(255, 249, 243, 0.94), rgba(239, 230, 220, 0.96));
        }

        .cta-panel::before,
        .cta-panel::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: rgba(159, 106, 67, 0.08);
        }

        .cta-panel::before {
            width: 180px;
            height: 180px;
            right: -40px;
            top: -45px;
        }

        .cta-panel::after {
            width: 120px;
            height: 120px;
            left: 44%;
            bottom: -44px;
        }




.sticky-contact-bar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1080;
    display: grid;
    gap: 14px;
}

.sticky-contact-btn {
    position: relative;
   
    display: inline-flex;
    align-items: center;
    
    border-radius: 22px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 22px 36px rgba(21, 16, 12, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    backdrop-filter: blur(16px);
}

.sticky-contact-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.sticky-contact-btn::after {
    content: "";
    position: absolute;
    inset: -30% auto auto -10%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(10px);
    pointer-events: none;
}

.sticky-contact-btn:hover,
.sticky-contact-btn:focus {
    color: #fff;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 42px rgba(21, 16, 12, 0.28);
    filter: saturate(1.05);
}

.sticky-contact-call {
    background: linear-gradient(135deg, #ea580c, #14336e 58%, #fb923c 100%);
}

.sticky-contact-whatsapp {
    background: linear-gradient(135deg, #ea580c, #14336e 58%, #fb923c 100%);
}

.sticky-contact-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.sticky-contact-copy {
    position: relative;
    z-index: 1;
    display: grid;
    line-height: 1.1;
}

.sticky-contact-copy strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.sticky-contact-copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-page {
    position: relative;
    overflow: hidden;
}

.about-hero {
    padding: 36px 0 104px;
    position: relative;
}

.about-hero-panel {
    position: relative;
    padding: 46px;
    border-radius: 40px;
    overflow: hidden;
    isolation: isolate;
}

.about-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(17, 13, 10, 0.04), rgba(17, 13, 10, 0.24)),
        linear-gradient(180deg, rgba(255, 249, 243, 0.88), rgba(240, 231, 221, 0.8));
    z-index: -2;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

.about-hero-glow-one {
    width: 220px;
    height: 220px;
    top: -70px;
    right: 12%;
    background: rgba(201, 149, 61, 0.16);
    animation: blobFloat 11s ease-in-out infinite;
}

.about-hero-glow-two {
    width: 180px;
    height: 180px;
    left: 4%;
    bottom: -56px;
    background: rgba(212, 183, 157, 0.3);
    animation: blobFloat 13s ease-in-out infinite reverse;
}

.about-hero-copy {
    max-width: 620px;
}

.about-hero-title {
    font-size: clamp(3rem, 5.6vw, 5.6rem);
    line-height: 0.94;
    margin: 0 0 22px;
}

.about-hero-text {
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.92;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.about-hero-stat {
    padding: 20px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(119, 71, 40, 0.08);
    box-shadow: 0 16px 32px rgba(33, 22, 15, 0.08);
}

.about-hero-stat strong {
    display: block;
    color: var(#14336e);
    font-size: 1.35rem;
    font-weight: 800;
}

.about-hero-stat span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-hero-visual {
    position: relative;
    min-height: 620px;
    padding-right: 28px;
}

.about-hero-image {
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow-lg);
}

.about-hero-image-main {
    width: min(100%, 500px);
    min-height: 560px;
    margin-left: auto;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
}

.about-hero-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, transparent 56%, rgba(17, 13, 10, 0.42));
}

.about-hero-image-small {
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 220px;
    min-height: 230px;
    border-radius: 28px;
    border: 10px solid rgba(255, 250, 244, 0.95);
    animation: floatCard 9s ease-in-out infinite;
}

.about-hero-card {
    position: absolute;
    right: 0;
    bottom: 54px;
    max-width: 270px;
    padding: 22px 24px;
    border-radius: 28px;
    background: rgba(255, 249, 243, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 36px rgba(33, 22, 15, 0.12);
    backdrop-filter: blur(18px);
    animation: floatCard 10s ease-in-out infinite reverse;
}

.about-hero-card span {
    display: inline-block;
    color: var(#14336e);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero-card strong {
    display: block;
    margin-top: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    line-height: 1.05;
}

.about-story-card,
.about-mission-card,
.about-value-card,
.about-process-panel,
.about-process-step,
.about-cta-panel {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(119, 71, 40, 0.08);
    box-shadow: var(--shadow-md);
}

.about-story-card {
    height: 100%;
    padding: 38px;
}

.about-signature-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    color: var(--muted);
}

.about-signature-line span {
    width: 80px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.about-mission-card {
    height: 100%;
    padding: 38px 34px;
    background:
        radial-gradient(circle at 86% 18%, rgba(201, 149, 61, 0.12), transparent 18%),
        linear-gradient(160deg, rgba(255, 250, 245, 0.94), rgba(240, 230, 221, 0.94));
}

.about-mission-card h3 {
    margin: 20px 0 12px;
    font-size: 1.9rem;
}

.about-value-card {
    height: 100%;
    padding: 30px 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.about-value-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 149, 61, 0.18), rgba(212, 183, 157, 0.42));
    color: var(#14336e);
    font-size: 1.35rem;
}

.about-process-panel {
    padding: 40px;
    background:
        radial-gradient(circle at 12% 24%, rgba(212, 183, 157, 0.18), transparent 22%),
        linear-gradient(145deg, rgba(255, 249, 243, 0.96), rgba(239, 230, 220, 0.95));
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-process-step {
    padding: 26px 22px;
    height: 100%;
}

.about-process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(#14336e), var(--primary));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(159, 106, 67, 0.24);
}

.about-process-step h3 {
    margin: 18px 0 10px;
    font-size: 1.45rem;
}

.about-process-step p {
    color: var(--muted);
    line-height: 1.75;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
    grid-auto-rows: 220px;
}

.about-gallery-item {
    border-radius: 30px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(17, 13, 10, 0.02), rgba(17, 13, 10, 0.34));
}

.about-gallery-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.about-gallery-large {
    grid-row: span 2;
}

.about-gallery-wide {
    grid-column: span 2;
}

.about-cta-panel {
    padding: 44px;
    background:
        radial-gradient(circle at 88% 14%, rgba(201, 149, 61, 0.16), transparent 18%),
        linear-gradient(145deg, rgba(255, 250, 245, 0.96), rgba(238, 228, 218, 0.96));
}

.footer {
    background: #fff;
}

.footer-panel {
    padding: 38px 40px 28px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(191, 219, 254, 0.72);
    box-shadow: 0 18px 42px rgba(147, 197, 253, 0.22);
}

        .footer-copy {
            max-width: 320px;
        }

        .footer-title {
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
            color: var(#14336e);
        }

        .footer-links {
            display: grid;
            gap: 12px;
        }

        .footer-links a,
        .footer-contact a,
        .footer-meta a {
            color: var(--muted);
            transition: color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }

        .footer-links a:hover,
        .footer-contact a:hover,
        .footer-meta a:hover {
            color: var(#14336e);
        }

        .footer-contact {
            display: grid;
            gap: 12px;
            color: var(--muted);
        }

        .footer-contact span,
        .footer-meta span {
            display: inline-flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            color: var(--muted);
            font-size: 0.95rem;
        }

        .footer-line {
            margin-top: 28px;
            padding-top: 22px;
            border-top: 1px solid rgba(119, 71, 40, 0.14);
        }

        .social-link {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.82);
            color: var(#14336e);
            transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
        }

        .social-link:hover {
            transform: translateY(-4px);
            background: var(--dark);
            color: #fff;
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        [data-reveal].revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.12s; }
        .delay-2 { transition-delay: 0.22s; }
        .delay-3 { transition-delay: 0.32s; }
        .delay-4 { transition-delay: 0.42s; }

        @keyframes blobFloat {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(18px, -18px, 0); }
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-14px) rotate(0.5deg); }
        }

        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes processCurveMove {
            0% { stroke-dashoffset: 1180; opacity: 0.72; }
            50% { stroke-dashoffset: 420; opacity: 1; }
            100% { stroke-dashoffset: -260; opacity: 0.72; }
        }

        @keyframes processSparkMove {
            0% { stroke-dashoffset: 1320; opacity: 0; }
            12% { opacity: 1; }
            88% { opacity: 1; }
            100% { stroke-dashoffset: 0; opacity: 0; }
        }

        @keyframes processLineMoveVertical {
            0% { background-position: 0 -220px; }
            100% { background-position: 0 220px; }
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(201, 149, 61, 0.08); opacity: 1; }
            50% { box-shadow: 0 0 0 18px rgba(201, 149, 61, 0); opacity: 0.96; }
        }

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-carousel {
        min-height: 520px;
    }

    .hero-carousel-image {
        min-height: 520px;
    }

    .creative-visual-wrap {
        min-height: 650px;
    }

    .creative-ring {
        width: 490px;
        height: 490px;
    }

    .creative-ring-secondary {
        width: 420px;
        height: 420px;
    }

    .creative-image-card {
        width: min(100%, 500px);
        height: 390px;
    }

    .about-hero-visual {
        min-height: 560px;
        padding-right: 0;
    }

    .about-hero-image-main {
        width: min(100%, 460px);
        min-height: 510px;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
            .section-space {
                padding: 82px 0;
            }

    .hero {
        padding: 42px 0 80px;
    }

    .hero-panel {
        padding: 28px;
        padding-top: 32px;
    }

    .hero-banner-panel {
        min-height: 600px;
        padding: 0;
        border-radius: 0;
    }

    .custom-nav {
        border-radius: 0;
    }

    .brand-badge {
        padding: 8px 0;
    }

    .brand-badge span {
        font-size: 20px;
    }

    .navbar-wrap {
        padding-top: 0;
    }

    .header-shell,
    .hero-shell {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-layout {
        min-height: auto;
    }

    .editorial-content,
    .cta-panel,
    .creative-story {
        padding: 30px;
            }

    .footer-panel {
        padding: 30px 26px 24px;
    }

    .hero-copy {
        padding: 8px 0;
    }

    .hero-banner-copy {
        left: 28px;
        right: 28px;
        bottom: 104px;
        padding: 0;
    }

    .hero-banner-copy .hero-title {
        max-width: 620px;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .hero-media {
        padding: 0;
    }

    .hero-carousel {
        min-height: 480px;
    }

    .hero-carousel-image {
        min-height: 480px;
    }

    .hero-banner-carousel,
    .hero-banner-carousel .hero-carousel-image {
        min-height: 600px;
    }

    .testimonial-carousel {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 12px;
    }

    .testimonial-slide {
        flex-basis: calc((100% - 18px) / 2);
    }

    .testimonial-arrow {
        width: 46px;
        height: 46px;
    }

    .gallery-slide {
        height: 100%;
    }

    .gallery-image {
        height: 340px;
    }

    .creative-metrics {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .creative-visual-main {
        min-height: 540px;
    }

    .creative-visual-wrap {
        min-height: 620px;
    }

    .creative-ring {
        width: 430px;
        height: 430px;
    }

    .creative-ring-secondary {
        width: 360px;
        height: 360px;
    }

    .creative-image-card {
        width: min(100%, 430px);
        height: 330px;
    }

    .creative-orbit-card-bottom {
        right: 24px;
        bottom: 110px;
    }

    .creative-side-stack {
        right: 24px;
        bottom: 22px;
        width: 240px;
    }

    .feature-card-inner {
        min-height: 300px;
        padding: 28px 24px 26px;
    }

    .feature-card:hover .feature-card-inner {
        transform: rotateX(5deg) rotateY(-6deg) translate3d(0, -4px, 18px);
    }

    .collection-stage {
        margin: 0 14px -46px;
    }

    .collection-card:hover .collection-stage {
        transform: rotateX(5deg) rotateY(-5deg) translate3d(0, -6px, 16px);
    }

    .collection-image {
        height: 290px;
    }

    .collection-content {
        padding: 76px 24px 24px;
    }

    .about-hero-panel,
    .about-story-card,
    .about-mission-card,
    .about-process-panel,
    .about-cta-panel {
        padding: 30px;
    }

    .about-hero {
        padding: 28px 0 82px;
    }

    .about-hero-visual {
        min-height: 520px;
    }

    .about-hero-image-main {
        min-height: 460px;
    }

    .about-hero-image-small {
        width: 180px;
        min-height: 190px;
    }

    .about-hero-card {
        max-width: 230px;
        padding: 18px 20px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-gallery-wide {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 30px;
        line-height: 1.25;
            }

            .hero-title .highlight::after {
                display: none;
            }

    .hero-panel {
        padding: 18px;
        border-radius: 28px;
        padding-top: 18px;
    }

    .process-flow {
        padding-top: 0;
    }

    .process-curve {
        display: none;
    }

    .process-grid > [class*="col-"]:nth-child(even) {
        padding-top: 0;
    }

    .process-flow::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 10px;
        bottom: 18px;
        width: 4px;
        transform: translateX(-50%);
        border-radius: 999px;
        background:
            linear-gradient(180deg, rgba(20, 51, 110, 0.14), rgba(20, 51, 110, 0.14)),
            linear-gradient(180deg, transparent, #14336e, #f7b733, transparent);
        background-size: 100% 100%, 100% 220px;
        animation: processLineMoveVertical 3.8s linear infinite;
        z-index: 0;
    }

    .process-card {
        max-width: 360px;
        margin: 0 auto;
        padding: 0 18px 34px;
    }

    .process-circle {
        width: 116px;
        height: 116px;
    }

    .turnkey-carousel {
        padding: 8px;
        border-radius: 20px;
    }

    .turnkey-card-carousel {
        padding: 10px 10px 50px;
    }

    .turnkey-viewport {
        border-radius: 16px;
    }

    .turnkey-card-viewport {
        overflow: hidden;
    }

    .turnkey-project-card {
        min-height: 280px;
    }

    .turnkey-project-card img {
        height: 280px;
    }

    .turnkey-project-title {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .turnkey-slide {
        min-height: 340px;
    }

    .turnkey-image {
        height: 340px;
    }

    .turnkey-caption {
        left: 18px;
        right: 18px;
        bottom: 54px;
    }

    .turnkey-caption h3 {
        font-size: 2rem;
    }

    .hero-banner-panel {
        min-height: 560px;
        padding: 0;
        border-radius: 0;
    }

    .header-shell,
    .hero-shell {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-layout {
        gap: 28px !important;
    }

    .hero-info-grid {
        max-width: 100%;
    }

    .hero-carousel {
        min-height: 420px;
    }

    .hero-carousel-image {
        min-height: 420px;
    }

    .hero-banner-carousel,
    .hero-banner-carousel .hero-carousel-image {
        min-height: 560px;
    }

    .hero-banner-copy {
        left: 18px;
        right: 18px;
        bottom: 100px;
    }

    .hero-banner-controls {
        left: 18px;
        right: 18px;
        bottom: 22px;
    }

    .hero-carousel-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }

    .hero-carousel-caption h3 {
        font-size: 1.3rem;
    }

    .gallery-portfolio {
        padding: 12px;
    }

    .gallery-image {
        height: 320px;
    }

    .contact-panel {
        padding: 14px;
    }

    .contact-form-card,
    .contact-details-card {
        padding: 24px;
    }

    .contact-details-card h3 {
        font-size: 1.55rem;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-viewport {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .testimonial-arrow {
        grid-row: 2;
        justify-self: center;
        margin-top: 12px;
    }

    .testimonial-arrow-prev {
        grid-column: 1;
    }

    .testimonial-arrow-next {
        grid-column: 2;
    }

    .testimonial-slide {
        flex-basis: 100%;
    }

    .gallery-slide {
        height: 100%;
    }

    .brand-panel {
        padding: 24px;
    }

            .feature-card,
            .testimonial-card,
            .service-card,
            .process-card,
            .collection-content,
            .creative-story {
                padding: 24px;
            }

    .feature-card {
        perspective: none;
    }

    .feature-card-inner {
        min-height: auto;
        padding: 26px 22px 24px;
    }

    .feature-card:hover .feature-card-inner {
        transform: translateY(-4px);
    }

    .feature-card-shadow {
        inset: 18px 10px -6px 10px;
        filter: blur(14px);
    }

    .feature-card-orbit {
        width: 66px;
        height: 66px;
        right: 18px;
    }

    .feature-index {
        min-width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 0.82rem;
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    .collection-card {
        perspective: none;
        padding-top: 24px;
    }

    .collection-stage {
        margin: 0 10px -38px;
        padding: 10px;
    }

    .collection-card:hover .collection-stage {
        transform: translateY(-4px);
    }

    .collection-image {
        height: 250px;
        border-radius: 22px;
    }

    .collection-glow-ring {
        width: 64px;
        height: 64px;
        right: 14px;
        bottom: 14px;
    }

    .collection-content {
        padding: 66px 22px 22px;
        border-radius: 26px;
    }

    .collection-number {
        min-width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 0.82rem;
    }

    .collection-card .collection-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .sticky-contact-bar {
     
        right: 12px;
        bottom: 14px;
      
        gap: 10px;
    }

    .sticky-contact-btn {
        min-width: 0;
        justify-content: center;
   
        border-radius: 18px;
    }

    .sticky-contact-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 16px;
        font-size: 1.2rem;
    }

    .sticky-contact-copy strong {
        font-size: 0.92rem;
    }

    .sticky-contact-copy small {
        font-size: 0.7rem;
    }

    .about-hero {
        padding: 18px 0 72px;
    }

    .about-hero-panel,
    .about-story-card,
    .about-mission-card,
    .about-process-panel,
    .about-cta-panel {
        padding: 24px;
        border-radius: 26px;
    }

    .about-hero-title {
        line-height: 1;
    }

    .about-hero-visual {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .about-hero-image-main {
        width: 100%;
        min-height: 360px;
    }

    .about-hero-image-small,
    .about-hero-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .about-hero-image-small {
        min-height: 220px;
        border-width: 0;
    }

    .about-hero-stats {
        max-width: 100%;
    }

    .about-story-card,
    .about-mission-card,
    .about-value-card,
    .about-process-step {
        padding: 24px;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .about-gallery-large,
    .about-gallery-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .creative-point {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .creative-point-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .creative-visual-main {
        min-height: 360px;
    }

    .creative-visual-wrap {
        min-height: auto;
        padding-top: 52px;
        padding-bottom: 12px;
    }

    .creative-thread {
        align-items: flex-start;
        border-radius: 28px;
    }

    .creative-ring {
        width: 320px;
        height: 320px;
    }

    .creative-ring-secondary {
        width: 272px;
        height: 272px;
    }

    .creative-image-card {
        width: 100%;
        height: 300px;
        padding: 10px;
    }

    .creative-orbit-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 18px;
    }

    .creative-visual-path-one,
    .creative-visual-path-two {
        display: none;
    }

    .creative-side-stack {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }

    .creative-metrics {
        max-width: 100%;
    }
        }
