
:root {
    --ink: #0a0d12;
    --panel: #12151d;
    --panel2: #171b25;
    --line: rgba(255,255,255,.09);
    --amber: #f5a623;
    --flame: #e4572e;
    --cyan: #4dd8f2;
    --text: #f5f3ee;
    --muted: #98a0ad;
    --grad: linear-gradient(95deg,var(--amber),var(--flame));
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--text);
    font-family: 'Inter',sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces',serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter',sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--grad);
        display: block;
    }

.script {
    font-family: 'Caveat',cursive;
    font-weight: 700;
}

.accent {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.muted {
    color: var(--muted);
}

section {
    padding: 20px 0;
}



/* ---------- reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14.5px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary {
    background: var(--grad);
    color: #12100c;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px -8px rgba(228,87,46,.55);
    }

.btn-outline {
    border-color: rgba(255,255,255,.28);
    color: var(--text);
}

    .btn-outline:hover {
        border-color: var(--amber);
        background: rgba(245,166,35,.08);
    }

/* ---------- header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,13,18,.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .brand svg {
        width: 34px;
        height: 34px;
    }

.brand-text b {
    font-family: 'Fraunces',serif;
    font-size: 19px;
    display: block;
}

    .brand-text b .hl {
        color: var(--amber);
    }

.brand-text span {
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--muted);
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    list-style: none;
    margin: 0 0 0 0;
}
.nav-links a {
        font-size: 14px;
        font-weight: 300;
        color: var(--muted);
        transition: color .2s;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0px;
    }
        .nav-links a:hover {
            color: var(--text);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .nav-cta .btn {
        padding: 11px 22px;
        font-size: 13.5px;
    }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

    .burger span {
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
    }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0 0 0 0;
    top: 64px;
    background: var(--ink);
    z-index: 99;
    padding: 30px 24px;
    flex-direction: column;
    gap: 22px;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 17px;
        font-weight: 600;
        color: var(--text);
    }



/* ---------- HERO SLIDER ---------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 300px 0px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    display: flex;
    align-items: center;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide:nth-child(1) .slide-bg {
    /*background: radial-gradient(ellipse 900px 600px at 82% 30%, rgba(77,216,242,.20), transparent 60%), radial-gradient(ellipse 700px 500px at 10% 90%, rgba(245,166,35,.14), transparent 60%), linear-gradient(180deg,#0a0d12,#0d1118 60%, #0a0d12);*/
    background-image: url(../img/banner/1.png);
    background-size:cover;
    background-repeat:no-repeat;
}

.slide:nth-child(2) .slide-bg {
    background-image: url('../img/myimages/b2.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.slide:nth-child(3) .slide-bg {

    background-image: url('../img/myimages/b3.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-copy .eyebrow {
    color: var(--amber);
}

.hero-copy h1 {
    font-size: clamp(34px,4.6vw,58px);
    margin-bottom: 6px;
}

    .hero-copy h1 .line2 {
        display: block;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-tag {
    font-size: 22px;
    color: var(--amber);
    margin: 14px 0 18px;
}

.hero-copy p {
    color: var(--muted);
    font-size: 14px;
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.hero-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}

    .hero-stats div b {
        font-family: 'Fraunces',serif;
        font-size: 26px;
        color: var(--amber);
        display: block;
    }

    .hero-stats div span {
        font-size: 12.5px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .08em;
    }

/* hero visual: scan graphic */
.scan-art {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin: 0 auto;
}

.scan-ring {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px solid rgba(77,216,242,.35);
}

    .scan-ring::after {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 50%;
        border-top: 2px solid var(--cyan);
        animation: spin 5s linear infinite;
        filter: drop-shadow(0 0 8px rgba(77,216,242,.7));
    }

.scan-core {
    position: absolute;
   /* inset: 22%;*/
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(77,216,242,.35), rgba(10,13,18,.05) 60%);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .scan-core svg {
        width: 62%;
        height: 62%;
        opacity: .92;
    }

.scan-sweep {
    position: absolute;
    left: 0;
    right: 0;
    height: 26%;
    background: linear-gradient(180deg, transparent, rgba(77,216,242,.5), transparent);
    animation: sweep 3.2s ease-in-out infinite;
}

@keyframes sweep {
    0% {
        top: -30%;
    }

    100% {
        top: 105%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.scan-chip {
    position: absolute;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(18,21,29,.85);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 7px;
}

    .scan-chip svg {
        width: 16px;
        height: 16px;
    }

.chip1 {
    top: 6%;
    left: 0;
}

.chip2 {
    bottom: 10%;
    right: 0;
}

.chip3 {
    top: 44%;
    right: -4%;
}

.slider-controls {
    position: absolute;
    bottom: 34px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    transition: all .3s;
}

    .dot.active {
        background: var(--amber);
        width: 26px;
        border-radius: 6px;
    }

.arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: .25s;
}

    .arrow:hover {
        border-color: var(--amber);
        background: rgba(245,166,35,.12);
    }



/* ---------- Animated icon system ---------- */
.icon-anim {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(245,166,35,.35);
    background: linear-gradient(160deg, rgba(245,166,35,.08), rgba(228,87,46,.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .icon-anim svg {
        width: 26px;
        height: 26px;
        stroke: var(--amber);
        fill: none;
        stroke-width: 1.6;
    }

.i-spin svg {
    animation: iconspin 6s linear infinite;
    transform-origin: center;
}

.i-pulse svg {
    animation: iconpulse 2.2s ease-in-out infinite;
}

.i-float svg {
    animation: iconfloat 2.6s ease-in-out infinite;
}

.i-blink circle, .i-blink .blinkdot {
    animation: iconblink 1.8s ease-in-out infinite;
}

.i-draw path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: icondraw 3s ease-in-out infinite;
}

@keyframes iconspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes iconpulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.14);
        opacity: .75;
    }
}

@keyframes iconfloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes iconblink {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

@keyframes icondraw {
    0% {
        stroke-dashoffset: 120;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -120;
    }
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

    .about-grid h2 {
        font-size: clamp(28px,3.4vw,40px);
        margin-bottom: 18px;
    }

    .about-grid p {
        color: var(--muted);
        margin-bottom: 16px;
        max-width: 520px;
    }

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

    .feature h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .feature p {
        font-size: 13px;
        color: var(--muted);
        margin: 0;
    }
.director-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(160deg,#1a1510,#0d0d10 70%);
    aspect-ratio: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0px;
}}

    .director-card .glyph {
        position: absolute;
        top: 34px;
        left: 34px;
        width: 60px;
        height: 60px;
        opacity: .9;
    }

        .director-card .glyph svg {
            width: 100%;
            height: 100%;
            stroke: var(--amber);
            fill: none;
            stroke-width: 1.3;
        }

    .director-card .dname {
        font-family: 'Fraunces',serif;
        font-size: 15px;
        color: var(--text);
        margin-top: 14px;
    }

    .director-card .drole {
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--amber);
    }

    .director-card .brandmark {
        font-family: 'Fraunces',serif;
        font-size: 26px;
    }

        .director-card .brandmark .hl {
            color: var(--amber);
        }

    .director-card .tagline2 {
        font-size: 12px;
        color: var(--muted);
        margin-top: 6px;
    }

.photo-note {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(0,0,0,.5);
    border: 1px solid var(--line);
    color: var(--muted);
}



/* ---------- CBCT / feature grid section ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

    .split h2 {
        font-size: clamp(28px,3.4vw,40px);
        margin-bottom: 16px;
    }

    .split p {
        color: var(--muted);
        margin-bottom: 14px;
        max-width: 480px;
    }

.grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.gcard {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius);
    padding: 22px;
}

    .gcard h4 {
        font-size: 15.5px;
        margin: 14px 0 6px;
    }

    .gcard p {
        font-size: 13px;
        color: var(--muted);
        margin: 0;
    }


/* ---------- Services tabs ---------- */
.tabs-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

    .tabs-head h2 {
        font-size: clamp(26px,3.6vw,38px);
    }
.foot-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 36px;
    margin-bottom: 20px;
}
    .tab-switch .inner {
        display: flex;
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 100px;
        padding: 5px;
    }

.tab-btn {
    padding: 11px 26px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

    .tab-btn.active {
        background: var(--grad);
        color: #12100c;
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: grid;
    }

.svc-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.svc-card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius);
    padding: 22px;
    transition: .25s;
}

    .svc-card:hover {
        border-color: rgba(245,166,35,.4);
        transform: translateY(-4px);
    }

    .svc-card h4 {
        font-size: 15px;
        margin: 14px 0 6px;
    }

    .svc-card p {
        font-size: 12.5px;
        color: var(--muted);
        margin: 0;
    }



/* ---------- Branches ---------- */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.branch-card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
}

    .branch-card:hover {
        border-color: rgba(245,166,35,.4);
        transform: translateY(-4px);
    }

.branch-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .branch-photo svg {
        width: 100%;
        height: 100%;
    }

    .branch-photo .tag {
        position: absolute;
        bottom: 10px;
        left: 10px;
        font-size: 10.5px;
        padding: 5px 10px;
        border-radius: 100px;
        background: rgba(10,13,18,.7);
        border: 1px solid var(--line);
        backdrop-filter: blur(4px);
    }

.branch-body {
    padding: 20px;
}

    .branch-body h4 {
        font-family: 'Fraunces',serif;
        font-size: 18px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .branch-body h4 svg {
            width: 16px;
            height: 16px;
            stroke: var(--amber);
            fill: none;
            flex-shrink: 0;
        }

.branch-line {
    display: flex;
    gap: 9px;
    font-size: 12.8px;
    color: var(--muted);
    margin-bottom: 8px;
    align-items: flex-start;
}

    .branch-line svg {
        width: 14px;
        height: 14px;
        stroke: var(--amber);
        fill: none;
        flex-shrink: 0;
        margin-top: 2px;
    }

.branch-body .btn-outline {
    margin-top: 12px;
    padding: 9px 18px;
    font-size: 12.5px;
    display: inline-flex;
}



/* ---------- Reviews ---------- */
.review-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
}

.review-track-wrap {
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 22px;
    transition: transform .6s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 15px);
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 18px;
    padding: 26px;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

    .stars svg {
        width: 16px;
        height: 16px;
        fill: var(--amber);
        stroke: none;
    }

.review-card p {
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #12100c;
    font-size: 14px;
}

.reviewer b {
    display: block;
    font-size: 14px;
}

.reviewer span {
    font-size: 12px;
    color: var(--muted);
}

.review-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}



/* ---------- CTA band ---------- */
.cta-band {
    border-radius: 22px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, rgba(245,166,35,.14), rgba(228,87,46,.08));
    border: 1px solid rgba(245,166,35,.25);
}
    .cta-band h3 {
        font-size: clamp(20px,2.6vw,28px);
        max-width: 520px;
    }

.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--line);
    padding: 36px 0 0;
    background: var(--panel);
}

.foot-brand p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 14px 0 18px;
    max-width: 280px;
}

.social {
    display: flex;
    gap: 10px;
}

    .social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social svg {
        width: 16px;
        height: 16px;
        stroke: var(--text);
        fill: none;
    }

.foot-col h5 {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}
.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0;
}
.foot-col a, .foot-col li {
    font-size: 13.5px;
    color: var(--muted);
    font-family: "Poppins", sans-serif;
}
    .foot-col a:hover {
        color: var(--text);
    }

.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 15px;
}
.gallery img {
    margin-bottom:30px;
    height:200px;
    object-fit:cover;
    width:100%;
}
.flex {
    display: flex;
    gap:20px;
}




/************my css************/
.mega {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    background: #17171b;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    opacity: 0;
    visibility: hidden;
    translate: 0 8px;
    transition: opacity .2s ease, translate .2s ease, visibility .2s;
    box-shadow: 0 0 30px 0 #ffffff2b;
}
.nav > ul.nav-links > li:hover .mega {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
}
.mega-col h5 {
    color: #f4a024;
    font-family: "Poppins", sans-serif;
}
.mega-col ul li {
    list-style: none;
    padding: 0 0 10px 41px;
    position: relative;
}
.mega-col ul li img {
    height: 25px;
    filter: brightness(0) saturate(100%) invert(68%) sepia(1%) saturate(2232%) hue-rotate(151deg) brightness(96%) contrast(87%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.responsiveview {
    display: none;
}
.foot-brand img {
    height: 100%;
    width: 100%;
}
.foot-bottom span a img {
    height: 20px;
}
.foot-bottom span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.gallerybaneer img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
/*.mega-col ul li a{

}*/
    .mega-col ul{
    padding: 0;
}
.tab-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}