/* ── HERO ── */
.hero {
    min-height: 88vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, #11145b 0%, transparent 60%), radial-gradient(circle at 20% 80%, #30306e 0%, transparent 50%);
    background-image: url(/images/hero-banner.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    opacity: 0.8;
}

@media(max-width:640px){
    .hero-bg{
        background-position: 57% center;
    }
    .hero-grid{
        background-color: rgba(0, 0, 0, 0.414);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    /* background-color: rgba(238, 238, 238, 0.5); */
    /* background-image: linear-gradient(rgba(0, 200, 224, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 224, .04) 1px, transparent 1px); */
    background-size: 48px 48px;

}

.hero-glow {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 224, .12) 0%, transparent 65%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.535);
    border: 1px solid rgba(255, 255, 255, 0.647);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px
}

.hero-eyebrow span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px
}

.hero h1 em {
    font-style: normal;
    /* color: #8182a2; */
    color: var(--mid);
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 36px;
    max-width: 440px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-primary {
    background: white;
    color: var(--navy);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: all .2s
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 24px #11135e59;
}

.btn-outline {
    background: transparent;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    text-decoration: none;
    letter-spacing: .3px;
    transition: all .2s
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .06)
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px
}

.stat-item {
    text-align: left
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 2px
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    max-width: 360px
}

.hcard-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.hcard-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--cyandim);
    border: 1px solid rgba(0, 200, 224, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.hcard-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff
}

.hcard-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px
}

.hcard-badge {
    margin-left: auto;
    background: #00c8e022;
    border: 1px solid rgba(0, 200, 224, .3);
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: .5px
}

.hcard-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.hcard-row:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.hcard-row-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45)
}

.hcard-row-val {
    font-size: 12px;
    font-weight: 600;
    color: #fff
}

.hcard-row-val.ok {
    color: #2dd88e
}

.ping-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2dd88e;
    display: inline-block;
    margin-right: 5px;
    animation: ping 2s ease infinite
}

@keyframes ping {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

/* ── CATEGORIES ── */
.cats {
    padding: 72px 24px;
    background: #fff
}

/* .cats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
    margin-top: 48px
} */

.cats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    justify-content: center;  /* centers the whole grid */
    gap: 20px;
    margin-top: 48px;
}

.cat-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 1px solid #e8ecf8;
    transition: transform .3s, box-shadow .3s
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s
}

.cat-card:hover img {
    transform: scale(1.07)
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 40, .85) 0%, rgba(5, 10, 40, .1) 60%, transparent 100%)
}

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px
}

.cat-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px
}

.cat-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s
}

.cat-card:hover .cat-arrow {
    opacity: 1
}

/* ── ABOUT ── */
.about {
    padding: 80px 24px;
    background: var(--lite)
}

.about-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.about-visual {
    position: relative
}

.about-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 62, .4), transparent)
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -16px;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(13, 27, 62, .3)
}

.about-badge-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white
}

.about-badge-text {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-top: 2px
}

.about-text {
    padding-bottom: 24px
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 16px
}

.about-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 28px
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #d6e0ff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan)
}

.pill-icon {
    font-size: 16px
}

/* ── WHY US ── */
.why {
    padding: 80px 24px;
    background: #fff
}

.why-grid {
    max-width: 1200px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.why-card {
    background: var(--lite);
    border: 1px solid #e0e8ff;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .25s
}

.why-card:hover {
    background: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 27, 62, .15)
}

.why-card:hover .wc-title {
    color: #fff
}

.why-card:hover .wc-text {
    color: rgba(255, 255, 255, .5)
}

.wc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #d6e0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: background .25s, border .25s
}

.why-card:hover .wc-icon {
    background: rgba(0, 200, 224, .12);
    border-color: rgba(0, 200, 224, .3)
}

.wc-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    transition: color .25s
}

.wc-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    transition: color .25s
}

/* ── EXPERTISE ── */
.expertise {
    padding: 80px 24px;
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.expertise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, #0d2a5e, transparent)
}

.expertise-inner {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2
}

.exp-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 48px
}

.exp-img {
    position: relative;
    overflow: hidden;
    min-height: 300px
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.exp-card:hover .exp-img img {
    transform: scale(1.04)
}

.exp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 10, 40, .5), transparent 60%)
}

.exp-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--cyan);
    color: var(--ink);
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: .6px
}

.exp-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.exp-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.25
}

.exp-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-bottom: 24px
}

.exp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px
}

.exp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7)
}

.exp-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(0, 200, 224, .12);
    border: 1px solid rgba(0, 200, 224, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.exp-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--cyan);
    stroke-width: 2.5;
    fill: none
}

/* ── SERVICES ── */
.services {
    padding: 80px 24px;
    background: var(--lite)
}

.svc-grid {
    max-width: 1200px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.svc-card {
    background: #fff;
    border: 1px solid #e0e8ff;
    border-radius: 20px;
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(13, 27, 62, .1);
    border-color: #b8ccff
}

.svc-head {
    background: var(--navy);
    padding: 28px;
    position: relative;
    overflow: hidden
}

.svc-head::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 200, 224, .08)
}

.svc-badge-sm {
    display: inline-block;
    background: rgba(255, 255, 255, 0.558);
    border: 1px solid rgba(255, 255, 255, 0.558);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .8px;
    margin-bottom: 12px;
    text-transform: uppercase
}

.svc-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 6px
}

.svc-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5
}

.svc-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.svc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted)
}

.svc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0
}

.svc-btn {
    display: block;
    text-align: center;
    background: var(--lite);
    border: 1.5px solid #d6e0ff;
    color: var(--navy);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    letter-spacing: .3px;
    transition: all .2s
}

.svc-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

/* ── TESTIMONIALS ── */
.testi {
    padding: 80px 24px;
    background: #fff
}

.testi-grid {
    max-width: 1200px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.tcard {
    background: var(--lite);
    border: 1px solid #e0e8ff;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transition: all .25s
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(13, 27, 62, .08)
}

.tcard-quote {
    font-family: 'Syne', sans-serif;
    font-size: 60px;
    color: #d6e0ff;
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    font-weight: 800;
    user-select: none
}

.tcard-stars {
    color: #f5c842;
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 1px
}

.tcard-text {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px
}

.tcard-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e8ecf8
}

.tcard-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0
}

.tcard-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--ink)
}

.tcard-loc {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px
}

/* ── CONTACT ── */
.contact {
    padding: 80px 24px;
    background: var(--lite)
}

.contact-inner {
    max-width: 800px;
    margin: auto
}

.contact-form {
    background: #fff;
    border: 1px solid #e0e8ff;
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 48px auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px
}
.form-group *{
    padding: 8px 12px ;
}
.form-group.full {
    grid-column: 1/-1
}

label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--navy)
}

input,
select,
textarea {
    border: 1.5px solid #e0e8ff;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border .2s
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--navy)
}

textarea {
    resize: none
}

.form-submit {
    background: var(--navy);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: .3px;
    transition: all .2s;
    width: 100%;
    margin-top: 8px;
}

.form-submit:hover {
    box-shadow: 0 8px 24px #11135e59;
    transform: translateY(-1px)
}

