/* ================== GLOBAL ================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Hero */
    --gold: #7C8A91;
    --gold-lt: #d4a96a;
    --dark: #0a0a0a;
    --white: #f5f0eb;
    --white-dim: rgba(245, 240, 235, 0.72);
    --nav-h: 72px;

    /* Workspace */
    --ws-teal: #637b86;
    --ws-teal-dark: #3f484c;
    --ws-teal-lt: #839ba6;
    --ws-bg: #f4f2ef;
    --ws-bg-card: #ffffff;
    --ws-text: #1a1a1a;
    --ws-text-dim: #5a5a5a;
    --ws-shadow: 0 2px 24px rgba(99, 123, 134, 0.10);
    --ws-shadow-hover: 0 12px 48px rgba(99, 123, 134, 0.18);

    /* Form */
    --f-gold: #fff;
    --f-gold-lt: #e8d5aa;
    --f-dark: #0d0d0d;
    --f-border: rgba(201, 169, 110, 0.25);
    --f-text-muted: rgba(255, 255, 255, 0.55);
    /* --ff-display: 'Cormorant Garamond', serif; */
    --ff-body: 'Inter', sans-serif;
}

/* ================== KEYFRAMES ================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bgZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.00);
    }
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 40px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 123, 134, 0.25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(99, 123, 134, 0);
    }
}

@keyframes bgDrift {
    from {
        transform: scale(1.04) translateX(0);
    }

    to {
        transform: scale(1.04) translateX(-1.5%);
    }
}

@keyframes lineGlow {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 50px;
        opacity: 1;
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes formFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.section-hero {
    font-family: 'Montserrat', sans-serif;
    /* background: var(--dark); */
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

.section-hero-two {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    /* min-height: 50vh;
    padding-top: 100px; */
    background-size: contain;
}

nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: #fff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 146, 74, 0.20);
    transition: background .4s;
}

nav.scrolled {
    background: #f7f6f5;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-box {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gold);
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.logo-box::before {
    content: 'S';
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    position: absolute;
    top: 3px;
    left: 6px;
}

.logo-box::after {
    content: 'S';
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(184, 146, 74, 0.40);
    position: absolute;
    bottom: 4px;
    right: 5px;
}

.logo-words {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-words span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

.logo-words span+span {
    color: rgba(245, 240, 235, 0.55);
}

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

.nav-links a {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #7C8A91;
    position: relative;
    padding-bottom: 4px;
    transition: color .28s;
}

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

.nav-links a:hover {
    color: #000;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    transition: background .28s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-lt) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .34s, opacity .34s, width .34s;
    transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(0px, -1px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 1px);
}

.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s ease;
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--white);
    padding: 10px 0;
    position: relative;
    transition: color .28s;
}

.mob-overlay a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .32s;
}

.mob-overlay a:hover {
    color: var(--gold);
}

.mob-overlay a:hover::after {
    width: 60%;
}

.mob-overlay .mob-cta {
    margin-top: 18px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 44px;
}

.mob-overlay .mob-cta::after {
    display: none;
}

.mob-overlay .mob-cta:hover {
    background: var(--gold-lt);
    color: var(--dark);
}

@media (max-width: 880px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mob-overlay {
        display: flex;
    }
}



/* Full CSS for both video elements */
/* ── Hero Section ── */
/* ── Hero Section ── */

/* ════════ HERO ════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

/* .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('hero_bg_1_5x.webp') center / cover no-repeat;
    animation: bgZoom 20s ease-out forwards;
    will-change: transform;
} */

/* .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.58) 52%,
            rgba(10, 10, 10, 0.20) 100%);
} */

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Left */
.hero-left {
    padding: 40px 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp 0.72s 0.18s ease forwards;
}

.eyebrow-line {
    display: block;
    height: 1px;
    background: var(--gold);
    width: 0;
    animation: lineExpand 0.55s 0.18s ease forwards;
}

.hero-eyebrow p {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {

    font-size: clamp(54px, 7.5vw, 92px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -1px;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp 0.80s 0.38s ease forwards;

}

.hero-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-sub {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--white-dim);
    max-width: 370px;
    margin-bottom: 46px;
    opacity: 0;
    animation: fadeUp 0.80s 0.58s ease forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 34px;
    background: var(--white);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--white);
    transition: background .32s, color .32s, border-color .32s;
    opacity: 0;
    animation: fadeUp 0.80s 0.76s ease forwards;
}

.hero-btn svg {
    flex-shrink: 0;
    transition: transform .32s;
}

.hero-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: rgba(245, 240, 235, 0.55);
}

.hero-btn:hover svg {
    transform: translateX(6px);
}

/* Right */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 0.95s 0.52s ease forwards;
}

.img-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.img-frame::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 58%;
    height: 3px;
    background: var(--gold);
}

.img-frame::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 3px;
    height: 58%;
    background: var(--gold);
}

.img-frame img {
    width: 100%;
    display: block;
    border: 1px solid rgba(184, 146, 74, 0.28);
}

.img-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: #0e0e0e;
    border: 1px solid rgba(184, 146, 74, 0.32);
    padding: 16px 22px;
    min-width: 158px;
}

.badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.badge-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: 5px;
}

/* ════════ Mobile ════════ */
@media (max-width: 880px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 24px 80px;
        gap: 56px;
        text-align: center;
    }

    .hero-left {
        padding: 16px 0 0;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn {
        margin: 0 auto;
    }

    .img-frame {
        max-width: 300px;
        margin: 0 auto;
    }

    .img-badge {
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(42px, 12vw, 58px);
    }
}


/* .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(./ss-image/test-hero.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    margin-top: 0;
}


@media only screen and (max-width: 767px) {
    .hero-bg {
        background-image: url(./ss-image/test-hero.webp);
        width: 100%;
        height: 1000px;
        justify-content: center;
        justify-items: center;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        object-fit: cover;
        margin-top: 80px;
        padding: 0px;
        overflow: hidden;
    }
} */

/* ==========================================================================
   2. COUNTER SECTION
   ========================================================================== */
.section-counter {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.impact-section {
    position: relative;
    width: 100%;
    background: #111;
    overflow: hidden;
    padding: 80px 40px;
}

canvas#bgCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 65% at 50% 50%, transparent 10%, #111 100%);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.content .eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content .main-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: clamp(12px, 1.5vw, 15px);
    color: #777;
    font-weight: 400;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .impact-section {
        padding: 60px 24px;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 16px;
    }

    .content .main-title {
        margin-bottom: 44px;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   3. WORKSPACE SECTION
   ========================================================================== */
.section-workspace {
    font-family: 'Montserrat', sans-serif;
    color: var(--ws-text);
    position: relative;
    background: var(--ws-bg);
}

.principles-section {
    padding: 96px 48px 112px;
    background: var(--ws-bg);
    position: relative;
    overflow: hidden;
}

.principles-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(99, 123, 134, 0.055) 0%, transparent 50%), radial-gradient(circle at 85% 75%, rgba(184, 146, 74, 0.045) 0%, transparent 50%);
    pointer-events: none;
}

.section-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeIn 0.6s 0.1s ease forwards;
}

.section-tag .t-line {
    display: block;
    height: 1px;
    background: var(--gold);
    width: 0;
    animation: lineExpand 0.55s 0.3s ease forwards;
}

.section-tag span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3.2vw, 30px);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ws-teal-dark);
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeUp 0.7s 0.25s ease forwards;
}

.section-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 300;
    color: var(--ws-text-dim);
    font-style: italic;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s ease forwards;
    margin: 0;
}

.section-workspace .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.section-workspace .cards-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(33.33% + 12px);
    width: calc(33.33% - 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--ws-teal), transparent);
    transform-origin: left;
    opacity: 0.25;
    pointer-events: none;
}

.section-workspace .card {
    background: var(--ws-bg-card);
    border: 1px solid rgba(99, 123, 134, 0.10);
    border-radius: 2px;
    padding: 32px 28px 36px;
    position: relative;
    box-shadow: var(--ws-shadow);
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(36px);
}

.section-workspace .card.visible {
    animation: fadeUp 0.65s ease forwards;
}

.section-workspace .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ws-shadow-hover);
    border-color: rgba(99, 123, 134, 0.22);
}

.section-workspace .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ws-teal), var(--ws-teal-lt));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
    border-radius: 2px 2px 0 0;
}

.section-workspace .card:hover::before {
    transform: scaleX(1);
}

.section-workspace .card-num {
    width: 64px;
    height: 64px;
    background: var(--ws-teal);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    position: relative;
    transition: background 0.32s, transform 0.32s;
    animation: pulse 3s ease infinite;
}

.section-workspace .card:hover .card-num {
    background: var(--ws-teal-dark);
    transform: scale(1.06);
}

.section-workspace .card-num span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
    display: block;
}

.section-workspace .card-num::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.35);
    border-right: 1.5px solid rgba(255, 255, 255, 0.35);
}

.section-workspace .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ws-teal-dark);
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.28s;
}

.section-workspace .card:hover .card-title {
    color: var(--ws-teal);
}

.section-workspace .card-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ws-text-dim);
    text-align: justify;
    margin: 0;
}

.section-workspace .feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.section-workspace .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-workspace .feature-icon {
    color: #000;
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.section-workspace .feature-item span {
    display: block;
}

.section-workspace .card-watermark {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(99, 123, 134, 0.055);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.32s;
}

.section-workspace .card:hover .card-watermark {
    opacity: 0;
}

.section-workspace .card.last {
    grid-column: 2;
}

@media (max-width: 900px) {
    .principles-section {
        padding: 72px 32px 88px;
    }

    .section-workspace .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-workspace .card.last {
        grid-column: 1 / -1;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 580px) {
    .principles-section {
        padding: 56px 20px 72px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-workspace .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-workspace .card.last {
        grid-column: 1;
        max-width: 100%;
    }

    .section-workspace .card {
        padding: 26px 22px 30px;
    }

    .section-workspace .card-num {
        width: 56px;
        height: 56px;
    }

    .section-workspace .card-num span {
        font-size: 35px;
    }

    .section-workspace .card-title {
        font-size: 16px;
    }
}

/* ==========================================================================
   4. EXECUTION DISCIPLINE
   ========================================================================== */
.section-execution {
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.ed-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d1b2a;
}

.ed-bg {
    position: absolute;
    inset: 0;
    background-image: url(./ss-image/execution_discipline_1_5x.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.ed-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(100, 140, 180, 0.10) 0%, transparent 70%);
}

.ed-content-div {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem 2.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.ed-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.ed-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ed-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 1.5rem 1.4rem 1.8rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
}

.ed-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 3px;
    background: #ffffff;
    transition: width 0.35s ease;
}

.ed-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
}

.ed-card:hover::after {
    width: 7rem;
}

.ed-card-title {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    line-height: 1.3;
}

.ed-card-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

@media (max-width: 768px) {
    .ed-cards {
        grid-template-columns: 1fr;
    }

    .ed-title {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
    }
}

/* ==========================================================================
   5. EXPERTISE
   ========================================================================== */
.section-expertise {
    font-family: 'Source Sans 3', sans-serif;
    background: #f5f5f3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.expertise-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.expertise-title {
    text-align: center;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    letter-spacing: 0.25em;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    align-items: center;
}

.center-image {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 340px;
    position: relative;
    align-self: stretch;
}

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

.expertise-grid .card {
    background: #fff;
    padding: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.expertise-grid .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #4a6370;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-grid .card:hover::after {
    width: 100%;
}

.expertise-grid .card:hover {
    box-shadow: 0 8px 32px rgba(74, 99, 112, 0.13);
}

.expertise-grid .card h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    margin-top: 0;
}

.expertise-grid .card p {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 1.3vw, 0.88rem);
    color: #555;
    line-height: 1.75;
    text-align: justify;
    margin: 0;
}

.card-left {
    text-align: right;
}

.card-left p {
    text-align: justify;
}

.card-right {
    text-align: left;
}

.card-tl {
    grid-column: 1;
    grid-row: 1;
}

.card-ml {
    grid-column: 1;
    grid-row: 2;
}

.card-bl {
    grid-column: 1;
    grid-row: 3;
}

.card-tr {
    grid-column: 3;
    grid-row: 1;
}

.card-mr {
    grid-column: 3;
    grid-row: 2;
}

.card-br {
    grid-column: 3;
    grid-row: 3;
}

@media (max-width: 900px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .center-image {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        height: 280px;
        order: -1;
    }

    .center-image img {
        height: 100%;
    }

    .card-tl,
    .card-ml,
    .card-bl,
    .card-tr,
    .card-mr,
    .card-br {
        grid-column: 1;
        grid-row: auto;
    }

    .card-left {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-expertise {
        padding: 40px 14px;
    }

    .expertise-title {
        margin-bottom: 36px;
    }

    .center-image {
        height: 220px;
    }

    .expertise-grid .card {
        padding: 22px 18px;
    }
}

/* ==========================================================================
   6. PROVEN IMPACT
   ========================================================================== */
.section-proven-impact {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f5f7 !important;
}

.pi-section {
    padding: 80px 20px;
    text-align: center;
    background: #f4f5f7 !;
}

.pi-heading {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #3f484c, #637b86);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pi-sub {
    font-size: clamp(14px, 2vw, 17px);
    color: #6b7280;
    max-width: 660px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.pi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.pi-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px 36px;
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin: 0;
}

.pi-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pi-card:nth-child(2) {
    transition-delay: 0.15s;
}

.pi-card:nth-child(3) {
    transition-delay: 0.30s;
}

.pi-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: transparent;
}

.pi-card::before,
.pi-card::after {
    display: none;
}

.pi-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(90deg, #3f484c, #637b86);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pi-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.pi-stat {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    color: #3f484c;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.pi-label {
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.pi-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
}

.pi-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 600px) {
    .pi-section {
        padding: 50px 16px;
    }

    .pi-grid {
        grid-template-columns: 1fr;
    }

    .pi-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   7. FORM SECTION
   ========================================================================== */
.section-form {
    font-family: var(--ff-body);
    background: var(--f-dark);
}

.craft-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--f-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('./ss-image/form_bg.webp') center/cover no-repeat fixed;
    z-index: 0;
    transform: scale(1.04);
    animation: bgDrift 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.35;
}

.craft-bg {
    position: absolute;
    inset: 0;
    background: url('./ss-image/form_bg.webp') center/cover no-repeat fixed;
    z-index: 0;
    transform: scale(1.04);
    animation: bgDrift 18s ease-in-out infinite alternate;
}

.craft-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.35;
}

.craft-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--f-gold), transparent);
    z-index: 10;
    animation: lineGlow 3s ease-in-out infinite alternate;
}

.craft-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0;
}

.container-form {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.left-panel {
    padding: 3rem 2.5rem 3rem 3rem;
    border: 1px solid var(--f-border);
    background: transparent;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: fadeSlideLeft 0.9s cubic-bezier(.22, 1, .36, 1) both;
    backdrop-filter: blur(22px) saturate(1.3);
    -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--f-gold);
    border-left: 2px solid var(--f-gold);
}

.left-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--f-gold);
    border-right: 2px solid var(--f-gold);
}

.headline {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 1.6rem;
    animation: fadeSlideLeft 1s 0.15s cubic-bezier(.22, 1, .36, 1) both;
}

.headline .gold-word {
    color: var(--f-gold);
    font-style: italic;
}

.body-text {
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--f-text-muted);
    text-align: justify;
    animation: fadeSlideLeft 1s 0.25s cubic-bezier(.22, 1, .36, 1) both;
}

.gold-divider {
    width: 50px;
    height: 1px;
    background: var(--f-gold);
    margin: 2rem 0;
    animation: expandLine 1s 0.5s ease both;
}

.info-block {
    margin-bottom: 1.6rem;
    animation: fadeSlideLeft 1s 0.4s cubic-bezier(.22, 1, .36, 1) both;
}

.info-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--f-gold);
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.info-value {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.info-value a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s;
}

.info-value a:hover {
    color: var(--f-gold);
}

.right-panel {
    padding: 3rem 2.5rem;
    border: 1px solid var(--f-border);
    backdrop-filter: blur(22px) saturate(1.3);
    -webkit-backdrop-filter: blur(22px) saturate(1.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: fadeSlideRight 0.9s cubic-bezier(.22, 1, .36, 1) both;
}

.right-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--f-gold);
    border-right: 2px solid var(--f-gold);
}

.right-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--f-gold);
    border-left: 2px solid var(--f-gold);
}

.form-title {
    font-family: var(--ff-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
    animation: fadeSlideRight 1s 0.15s cubic-bezier(.22, 1, .36, 1) both;
    margin-top: 0;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(201, 169, 110, 0.22) !important;
    border-radius: 3px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--ff-body);
    font-size: 0.875rem;
    padding: 0.82rem 1.1rem;
    transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.38) !important;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--f-gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12) !important;
    outline: none !important;
}

.form-select option {
    background: #1a1510;
    color: #fff;
}

.phone-group {
    display: flex;
    gap: 0.5rem;
}

.phone-group .country-select {
    width: 130px;
    flex-shrink: 0;
}

.phone-group .phone-input {
    flex: 1;
}

.field-anim {
    animation: formFadeUp 0.7s cubic-bezier(.22, 1, .36, 1) both;
}

.field-anim:nth-child(1) {
    animation-delay: 0.25s;
}

.field-anim:nth-child(2) {
    animation-delay: 0.35s;
}

.field-anim:nth-child(3) {
    animation-delay: 0.45s;
}

.field-anim:nth-child(4) {
    animation-delay: 0.55s;
}

.field-anim:nth-child(5) {
    animation-delay: 0.65s;
}

.field-anim:nth-child(6) {
    animation-delay: 0.75s;
}

.btn-expert {
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    color: #0d0d0d;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s, box-shadow 0.4s;
    animation: formFadeUp 0.7s 0.8s cubic-bezier(.22, 1, .36, 1) both;
}

.btn-expert::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--f-gold) 0%, var(--f-gold-lt) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(.22, 1, .36, 1);
    z-index: 0;
}

.btn-expert:hover::before {
    transform: scaleX(1);
}

.btn-expert:hover {
    color: #0d0d0d;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.28);
}

.btn-expert span {
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
    animation: formFadeUp 0.7s 0.95s cubic-bezier(.22, 1, .36, 1) both;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars .av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--f-dark);
    background: linear-gradient(135deg, var(--f-gold) 0%, #8a6a30 100%);
    margin-left: -8px;
    font-size: 0.62rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.trust-avatars .av:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.72rem;
    color: var(--f-text-muted);
    letter-spacing: 0.03em;
}

.trust-text strong {
    color: #fff;
}

@media (max-width: 991.98px) {

    .left-panel,
    .right-panel {
        margin-bottom: 1.5rem;
        padding: 2.5rem 2rem;
    }

    .craft-inner {
        padding: 3rem 0;
    }
}

@media (max-width: 575.98px) {

    .left-panel,
    .right-panel {
        padding: 2rem 1.5rem;
    }

    .headline {
        font-size: 2.4rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .phone-group {
        flex-direction: column;
    }

    .phone-group .country-select {
        width: 100%;
    }
}

/* ==========================================================================
   8. FOOTER SECTION
   ========================================================================== */
.section-footer {
    background: #0a0f14;
    font-family: 'Jost', sans-serif;
}

.footer {
    position: relative;
    background: #111820;
    overflow: hidden;
    width: 100%;
}

canvas#bgLines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-box {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.012);
    pointer-events: none;
    z-index: 1;
}

.footer-title {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 24px 68px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-title h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.85rem, 5.5vw, 3.5rem);
    font-weight: 600;
    color: #ede9e3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0;
}

.card1-section {
    position: relative;
    z-index: 2;
}

.card1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-footer .card1 {
    position: relative;
    padding: 44px 38px 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    isolation: isolate;
}

.section-footer .card1::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(480px circle at var(--cx, -999px) var(--cy, -999px), rgba(126, 232, 250, 0.18), transparent 55%);
    z-index: 0;
    opacity: 0;
    transition: opacity .45s;
    pointer-events: none;
}

.section-footer .card1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(300px circle at var(--cx, -999px) var(--cy, -999px), rgba(126, 232, 250, 0.045), transparent 65%);
    z-index: 0;
    opacity: 0;
    transition: opacity .45s;
    pointer-events: none;
}

.section-footer .card1-section.lit .card1::before,
.section-footer .card1-section.lit .card1::after {
    opacity: 1;
}

.section-footer .card-inner1 {
    position: relative;
    z-index: 1;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #c4bfb8;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.brand-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #c4bfb8;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

.col-label {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c4bfb8;
    margin-bottom: 22px;
    margin-top: 0;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.link-list a {
    font-size: 0.83rem;
    font-weight: 300;
    color: #c4bfb8;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color .2s;
}

.link-list a:hover {
    color: #c4bfb8;
}

.info-text {
    font-size: 0.79rem;
    font-weight: 300;
    color: #c4bfb8;
    line-height: 1.85;
    margin: 0;
}

.info-phone {
    display: block;
    margin-top: 6px;
    font-size: 0.86rem;
    font-weight: 400;
    color: #c4bfb8;
    letter-spacing: 0.04em;
}

.info-gap {
    margin-top: 30px;
}

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

    .card1--brand {
        grid-column: span 2;
    }
}

@media (max-width: 520px) {
    .card1-grid {
        grid-template-columns: 1fr;
    }

    .card1--brand {
        grid-column: span 1;
    }

    .section-footer .card {
        padding: 32px 22px 36px;
    }

    .footer-title {
        padding: 48px 20px 44px;
    }
}


/* ==========================================================================
    ABOUT SECTION 
   ========================================================================== */

/* Container & Layout */
.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Typography */
.ab-subtitle {
    color: #8a8a8a;
    letter-spacing: 1.px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ab-title {
    color: #45555f;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
}

@media (max-width: 746px) {

    .ab-title {
        font-weight: 500;
    }
}

.ab-description p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Image Grid Layout */
/* .ab-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: center;
} */

.ab-img-box {
    position: relative;
    /* Adds the grey bars seen in the image */
    border-top: 4px solid #546e7a;
    border-bottom: 4px solid #546e7a;
    padding: 10px 0;
}

.ab-img-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Staggered positioning for Desktop */
.ab-center-right {
    grid-column: 2;
    grid-row: 1 / span 2;
}

/* Responsive Mobile View */
@media (max-width: 992px) {
    .ab-container {
        padding: 50px 20px;
    }

    .ab-image-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .ab-center-right {
        grid-column: auto;
        grid-row: auto;
    }
}

/* THE WAY WE WORK */
.wh-ab-wrap {
    font-family: sans-serif;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.wh-ab-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    text-align: center;
    margin-bottom: 6px
}

.wh-ab-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 500;
    text-align: center;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem
}

.wh-ab-desktop {
    display: block
}

.wh-ab-mobile {
    display: none
}

/* ── DESKTOP ── */
.wh-ab-timeline-wrap {
    position: relative;
    padding: 20px 0 20px
}

.wh-ab-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

.wh-ab-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1
}

.wh-ab-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.wh-ab-step:nth-child(1) {
    padding-top: 0px
}

.wh-ab-step:nth-child(2) {
    padding-top: 50px
}

.wh-ab-step:nth-child(3) {
    padding-top: 100px
}

.wh-ab-step:nth-child(4) {
    padding-top: 150px
}

.wh-ab-dot-wrap {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 3
}

.wh-ab-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #4a6670;
    background: #f0f2f4;
    transition: transform .3s, background .3s
}

.wh-ab-step:hover .wh-ab-dot {
    transform: scale(1.3);
    background: #4a6670
}

.wh-ab-connector {
    width: 1px;
    height: 20px;
    background: #4a6670;
    opacity: 0.4;
    flex-shrink: 0
}

.wh-ab-card {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 12px;
    padding: 1.25rem;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease, box-shadow .3s
}

.wh-ab-card.wh-ab-visible {
    opacity: 1;
    transform: translateY(0)
}

.wh-ab-card:hover {
    box-shadow: 0 4px 20px rgba(74, 102, 112, 0.13)
}

.wh-ab-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.4
}

.wh-ab-card h3.pi-label,
.wh-ab-m-card h3.pi-label {
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wh-ab-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6
}

.wh-ab-card p.pi-desc,
.wh-ab-m-card p.pi-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.75;
    margin: 0;
}

.wh-ab-num {
    font-size: 10px;
    font-weight: 600;
    color: #4a6670;
    letter-spacing: 1.5px;
    margin-bottom: 5px
}

/* ── MOBILE ── */
.wh-ab-m-wrap {
    position: relative
}

.wh-ab-m-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1
}

.wh-ab-m-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s ease, transform .5s ease
}

.wh-ab-m-step.wh-ab-visible {
    opacity: 1;
    transform: translateX(0)
}

.wh-ab-m-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
}

.wh-ab-m-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #4a6670;
    background: #f0f2f4;
    transition: transform .3s, background .3s;
    flex-shrink: 0
}

.wh-ab-m-step:hover .wh-ab-m-dot {
    transform: scale(1.3);
    background: #4a6670
}

.wh-ab-m-card {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    flex: 1;
    margin-left: 15px;
}

/* .wh-ab-m-card h3 {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
            line-height: 1.4
        } */

/* .wh-ab-m-card p {
            font-size: 12px;
            color: #666;
            line-height: 1.6
        } */

.wh-ab-m-num {
    font-size: 10px;
    font-weight: 600;
    color: #4a6670;
    letter-spacing: 1.5px;
    margin-bottom: 4px
}

@media(max-width:700px) {
    .wh-ab-desktop {
        display: none
    }

    .wh-ab-mobile {
        display: block
    }
}

/* pricing card section */
.prc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── Card ── */
.prc-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

/* Image */
.prc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prc-card:hover .prc-card__img {
    transform: scale(1.06);
}

/* Dark overlay — always present, deepens on hover */
.prc-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    transition: background 0.4s ease;
}

.prc-card:hover .prc-card__overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.15) 100%);
}

/* Text container */
.prc-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px 22px;
    color: #fff;
}

/* Title — always visible */
.prc-card__title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    transition: margin-bottom 0.35s ease;
}

/* Description — hidden by default, slides in on hover */
.prc-card__desc {
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition:
        max-height 0.4s ease,
        opacity 0.35s ease 0.05s,
        transform 0.35s ease 0.05s;
    text-align: justify;
    margin-top: 0;
}

.prc-card:hover .prc-card__title {
    margin-bottom: 10px;
}

.prc-card:hover .prc-card__desc {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

/* Animated border accent on hover */
.prc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 4px;
    transition: border-color 0.35s ease;
    pointer-events: none;
}

.prc-card:hover::after {
    border-color: rgba(255, 255, 255, 0.25);
}

/* ── Mobile: always show description ── */
@media (max-width: 768px) {
    .prc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .prc-card__desc {
        max-height: 120px;
        opacity: 1;
        transform: translateY(0);
    }

    .prc-card__title {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .prc-card__desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .prc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .prc-card {
        aspect-ratio: 16 / 9;
    }

    .prc-card__title {
        font-size: 18px;
    }

    .prc-card__desc {
        font-size: 12.5px;
    }
}


/* service process section start */
:root {
    --ser-bg-dark: #121212;
    --ser-card-bg: #222222;
    --ser-card-hover: #2a2a2a;
    --ser-text-main: #ffffff;
    --ser-text-muted: #a0a0a0;
}

body.ser-body-bg {
    background-color: var(--ser-bg-dark);
    /* Creating the grid background effect via CSS */

    background-size: 40px 40px;
    color: var(--ser-text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.service-process {
    background-image: url(./ss-image/black-tunnel.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
}

.ser-main-wrapper {
    padding: 80px 0;
}

/* Card Container */
.ser-process-card {
    background-color: var(--ser-card-bg);
    padding: 3rem 2rem;
    height: 100%;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    cursor: default;
}

/* Hover Interaction */
.ser-process-card:hover {
    background-color: var(--ser-card-hover);
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon Box */
.ser-icon-box {
    background-color: #ffffff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.ser-process-card:hover .ser-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.ser-icon-box i {
    color: #000;
    font-size: 24px;
}

/* Typography */
.ser-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-color: var(--ser-text-main);
}

.ser-text {
    color: var(--ser-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ser-main-wrapper {
        padding: 40px 15px;
    }

    .ser-process-card {
        padding: 2rem 1.5rem;
    }
}

/* service process section end */

:root {
    --do-accent: #546e7a;
    --do-text: #455a64;
}



.do-section {
    padding: 80px 0;
    text-align: center;
}

/* --- Header Section --- */
.do-header-sub {
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

.do-header-main {
    font-weight: 700;
    color: var(--do-text);
    margin-bottom: 15px;
}

.do-header-desc {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Staggered Gallery Logic --- */
.do-gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Cuts off the 1st and last images */
    padding: 40px 0 100px 0;
}

.do-gallery-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    /* Track is wider than 100% to create the "cut-off" look */
    min-width: 120%;
    margin-left: -10%;
}

.do-img-card {
    flex: 0 0 15%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Offset for even images (2nd, 4th, 6th) */
.do-img-card:nth-child(even) {
    margin-top: 35px;
}

/* Top and Bottom Accent Bars */
.do-img-card::before,
.do-img-card::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 4px;
    background-color: var(--do-accent);
    z-index: 2;
    transition: width 0.3s ease;
}

.do-img-card::before {
    top: -15px;
}

.do-img-card::after {
    bottom: -15px;
}

.do-img-card img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.9);
}

/* --- Hover Effects --- */
.do-img-card:hover {
    z-index: 10;
}

.do-img-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.do-img-card:hover::before,
.do-img-card:hover::after {
    width: 85px;
}

/* --- Mobile Responsiveness (1.5 Image View) --- */
@media (max-width: 768px) {
    .do-gallery-track {
        min-width: 260%;
        margin-left: -80%;
        gap: 10px;
    }

    .do-img-card {
        flex: 0 0 42%;
        /* Shows 1.5 - 2 images clearly */
    }

    .do-header-desc {
        padding: 0 20px;
    }
}

/* Scroll Reveal Animation */
.do-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease-out;
}

.do-reveal.do-visible {
    opacity: 1;
    transform: translateY(0);
}

:root {
    --com-dark-slate: #455a64;
    --com-light-bg: #f8f9fa;
    --com-text-gray: #6c757d;
}

/* body {
            background-color: var(--com-light-bg);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--com-dark-slate);
        }*/

.com-workspace-section {
    padding: 100px 0;
}

/* Left Side Headings 
        .com-section-subtitle {
            letter-spacing: 2px;
            font-size: 0.9rem;
            color: var(--com-text-gray);
        }

        .com-main-title {
            color: var(--com-dark-slate);
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .com-description {
            color: var(--com-text-gray);
        }

        /* Service Card Container */
.com-service-card {
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.com-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
}

/* Individual Service Row Hover */
.com-service-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.com-service-item:hover {
    background-color: #f1f3f5;
}

/* Icon Animation */
.com-icon-box {
    font-size: 1.8rem;
    color: var(--com-dark-slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.com-service-item:hover .com-icon-box {
    transform: scale(1.2) rotate(-5deg);
    color: #263238;
}

/* Button Styling & Hover */
.com-btn-register {
    background-color: #546e7a;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.com-btn-register:hover {
    background-color: #263238;
    color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Entry Animation */
.com-fade-in-up {
    animation: comFadeInUp 0.8s ease backwards;
}

@keyframes comFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .com-workspace-section {
        text-align: center;
        padding: 60px 0;
    }

    .com-service-item {
        text-align: left;
    }
}

/* about com end  */
/* ==========================================================================
   9. PRICING WAY (PRW) CARDS
   ========================================================================== */
.prw-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
}

.prw-card--light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prw-card-name {
    width: 75%;
    /* Reduced width size as requested */
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Reduced height for specific cards */
#prw-card-1,
#prw-card-3 {
    padding: 1.5rem;
    min-height: auto;
    height: fit-content;
    /* Ensure height is reduced and compact */
}

.prw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* pricing card values */

.prz-bg-light {
    background-color: #fcfcfc;
}

.prz-subheading {
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #637B86 !important;
}

.prz-main-title {
    color: #3F484C;
    letter-spacing: 1px;
}

.prz-card {
    border: none;
    border-radius: 4px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    background: #fff;
}

.prz-card-body {
    display: flex;
    flex-direction: column;
}

/* Featured Card Gradient */
.prz-card-featured {
    background: linear-gradient(135deg, #3F484C 0%, #637B86 100%);
    padding: 40px 30px;
    /* Slightly larger as per image design */
}

.prz-class-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.prz-card-title {
    font-size: 1.5rem;
    min-height: 60px;
}

.prz-starting-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

.prz-price {
    font-size: 1.75rem;
}

.prz-description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    min-height: 80px;
}

/* Badge Styling */
.prz-badge-popular {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Button Styles */
.prz-btn {
    padding: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 0;
    /* Boxy style from image */
}

.prz-btn-outline {
    background: linear-gradient(to right, #3F484C, #637B86);
    color: #fff !important;
}

.prz-btn-white {
    background: #fff;
    color: #3F484C !important;
}

.prz-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .prz-card-featured {
        padding: 30px;
    }

    .prz-card-title {
        min-height: auto;
    }
}

/* --- Entrance Animations --- */
@keyframes przFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prz-pricing-section .col-lg-4 {
    opacity: 0;
    animation: przFadeUp 0.8s ease-out forwards;
}

/* Staggering the animation for each card */
.prz-pricing-section .col-lg-4:nth-child(1) {
    animation-delay: 0.1s;
}

.prz-pricing-section .col-lg-4:nth-child(2) {
    animation-delay: 0.3s;
}

.prz-pricing-section .col-lg-4:nth-child(3) {
    animation-delay: 0.5s;
}

/* --- Enhanced Hover Effects --- */

/* Standard Card Hover */
.prz-card-standard {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.prz-card-standard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #637B86;
}

/* Featured Card Hover (The Gradient One) */
.prz-card-featured {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.prz-card-featured:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(63, 72, 76, 0.3) !important;
}

/* Subtle shine effect on the featured card */
.prz-card-featured::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
}

.prz-card-featured:hover::after {
    left: 100%;
    top: 100%;
}

/* Button Pulse Effect */
.prz-btn {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.prz-btn:active {
    transform: scale(0.95);
}

.prz-btn-white:hover {
    background-color: #f8f9fa;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prz-btn-outline:hover {
    filter: brightness(1.1);
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(63, 72, 76, 0.2);
}

/* Popular Badge Animation */
.prz-badge-popular {
    animation: przPulse 2s infinite;
}

@keyframes przPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* --- CSS START (con-form prefix) --- */
.con-form-section {
    background-color: #ffffff;
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.con-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
}

.con-form-title {
    color: #637B86;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.con-form-subtitle {
    color: #888;
    font-size: 1rem;
    margin-top: -10px;
}

.con-form-label {
    color: #3F484C;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* Input and Textarea Styling */
.con-form-input,
.con-form-textarea,
.con-form-select {
    border: 1px solid #ced4da;
    border-radius: 0;
    padding: 12px;
    font-size: 15px;
    color: #000000 !important;
    /* Forces black text color for user input */
    width: 100%;
}

/* Placeholder Styling */
.con-form-input::placeholder,
.con-form-textarea::placeholder {
    color: #bbb;
    font-style: italic;
}

/* Icon styling for select/options */
.con-form-select-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233F484C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
    /* Removes default browser arrow */
}

.con-form-input:focus,
.con-form-textarea:focus {
    border-color: #637B86;
    box-shadow: none;
    outline: none;
}

/* Input Group for Phone */
.con-form-input-group {
    display: flex;
}

.con-form-country-select {
    max-width: 110px;
    border: 1px solid #ced4da;
    border-right: none;
    background-color: #fff;
    padding-left: 10px;
    color: #000;
    font-weight: 500;
}

/* Submit Button with Gradient */
.con-form-submit-btn {
    background: linear-gradient(to right, #3F484C, #637B86);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 18px;
    font-size: 24px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.con-form-submit-btn:hover {
    color: #fff;
    opacity: 0.9;
}

/* Validation border color */
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

.contact-background {
    background-image: url(./ss-image/white_tunnel_bg.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* --- CSS START (con-form prefix) --- */


/* Centering the entire section on PC */
.conm-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 20px;
}

/* Main Container: Split into 2 columns (6 & 6) */
.conm-main-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    /* Adjust width as needed */
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Left Column (Content - 50%) */
.conm-col-content {
    flex: 0 0 50%;
    background-image: url(./ss-image/contact-left.webp);
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    padding: 60px;
    position: relative;
}

/* Grid pattern overlay */
.conm-col-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

.conm-label {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    color: #a0aab2;
    margin-bottom: 15px;
}

.conm-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.conm-lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bdc8d0;
    margin-bottom: 45px;
}

.conm-detail-group {
    margin-bottom: 25px;
}

.conm-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7f8c95;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.conm-detail-value {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

/* Right Column (Map - 50%) */
.conm-col-map {
    flex: 0 0 50%;
    min-height: 500px;
    background: #e5e3df;
}

.conm-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile Responsive adjustments */
@media (max-width: 992px) {
    .conm-main-container {
        flex-direction: column;
        max-width: 600px;
    }

    .conm-col-content,
    .conm-col-map {
        flex: 0 0 100%;
    }

    .conm-col-content {
        padding: 40px 30px;
    }

    .conm-main-title {
        font-size: 2.2rem;
    }

    .conm-col-map {
        height: 350px;
        min-height: 300px;
    }
}

/* MAP CONTACT END HERE */