/* ==========================================================================
   Gitank Dijital Pvt Ltd — website styles
   Brand colours come from Admin → Settings → General (CSS variables in layout)
   ========================================================================== */

:root {
    --brand: #0A6BDB;
    --brand-2: #00C2FF;
    --accent: #E6007E;
    --dark: #0A1433;
    --heading: #0E1A3C;
    --text: #4A5568;
    --muted: #6B7589;
    --soft: #F3F7FC;
    --border: #E3E9F2;
    --white: #FFFFFF;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 12px 40px rgba(14, 26, 60, .08);
    --shadow-lg: 0 24px 60px rgba(14, 26, 60, .14);
    --grad: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 55%, #1D2B94 100%);
    --grad-accent: linear-gradient(120deg, var(--brand) 0%, #6B22B5 55%, var(--accent) 100%);
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 500;
    color: var(--heading);
    line-height: 1.3;
    letter-spacing: -.01em;
    margin-bottom: .6em;
}

b, strong, th, dt { font-weight: 500; }

p { margin-bottom: 1rem; }

a { color: var(--brand); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

::selection { background: var(--brand); color: #fff; }

.container { max-width: 1240px; }

.section { padding: 110px 0; position: relative; }
.bg-soft { background: var(--soft); }

.text-highlight {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* ---------- Buttons ---------- */
.btn {
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .01em;
    transition: all .35s var(--ease);
}
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn i { font-size: 1.05em; transition: transform .3s var(--ease); }
.btn:hover i.bi-arrow-right { transform: translateX(4px); }

.btn-brand {
    color: #fff;
    border: 0;
    background: var(--grad);
    background-size: 160% 100%;
    background-position: 0 0;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 30%, transparent);
}
.btn-brand:hover, .btn-brand:focus-visible {
    color: #fff;
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px color-mix(in srgb, var(--brand) 38%, transparent);
}

.btn-outline-brand { color: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent); background: transparent; }
.btn-outline-brand:hover { color: #fff; background: var(--brand); border-color: var(--brand); }

.btn-white { background: #fff; color: var(--heading); border: 0; }
.btn-white:hover { background: var(--heading); color: #fff; }

.btn-outline-white { color: #fff; border: 1px solid rgba(255, 255, 255, .5); background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--heading); border-color: #fff; }

/* ---------- Section titles ---------- */
.section-title { max-width: 640px; margin-bottom: 50px; }
.section-title.is-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; }
.section-title p { color: var(--muted); font-size: 16.5px; margin: 0; }

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}
.sub-title::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-accent);
}
.section-title.is-center .sub-title::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-accent);
}
.section-title.is-light h2 { color: #fff; }
.section-title.is-light p { color: rgba(255, 255, 255, .75); }
.section-title.is-light .sub-title { color: var(--brand-2); }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.section-head .section-title { margin-bottom: 0; }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 46px; }
.topbar-welcome { margin: 0; }
.topbar-info, .topbar-social { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.topbar-info { gap: 26px; flex-wrap: wrap; }
.topbar-info li, .topbar-info a { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .78); }
.topbar-info a:hover { color: #fff; }
.topbar-info i { color: var(--brand-2); }
.topbar-social { gap: 6px; }
.topbar-social a {
    width: 30px; height: 30px; display: grid; place-items: center;
    border-radius: 50%; color: rgba(255, 255, 255, .8); font-size: 13px;
}
.topbar-social a:hover { background: var(--grad); color: #fff; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    /* Above Bootstrap's offcanvas backdrop (1040): the mobile menu lives inside this header,
       so a lower value would let the dim layer cover the menu links. */
    z-index: 1046;
    /* No backdrop-filter here: it would make this header the containing block for the
       fixed-position mobile menu inside it, pushing the menu off-screen. */
    background: #fff;
    transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(14, 26, 60, .08); }
.site-header .navbar { padding: 14px 0; }
.navbar-brand { padding: 0; margin-right: 30px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 86px; height: auto; flex-shrink: 0; }
.logo-swoosh { stroke: #fff; }
.logo-dark .logo-swoosh { stroke: var(--dark); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 27px; font-weight: 500; color: var(--heading); letter-spacing: -.01em; }
.logo-sub { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); margin-top: 5px; }
.logo-dark .logo-name { color: #fff; }
.logo-dark .logo-sub { color: var(--brand-2); }
.logo-img { max-height: 58px; width: auto; }

.navbar-nav { gap: 6px; }
.navbar-nav .nav-link {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--heading);
    padding: 10px 14px !important;
    position: relative;
}
.navbar-nav .nav-link::after { display: none; }
.navbar-nav .nav-link.dropdown-toggle { padding-right: 26px !important; }
.navbar-nav .nav-link.dropdown-toggle::before {
    content: "\F282";
    font-family: bootstrap-icons;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    transition: transform .3s var(--ease);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show { color: var(--brand); }

.dropdown-menu {
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 250px;
}
.dropdown-item {
    font-size: 15px;
    color: var(--text);
    padding: 9px 14px;
    border-radius: 8px;
    transition: all .25s var(--ease);
}
.dropdown-item:hover, .dropdown-item:focus { background: var(--soft); color: var(--brand); padding-left: 20px; }
.dropdown-item-all { color: var(--brand); border-top: 1px solid var(--border); margin-top: 6px; border-radius: 0 0 8px 8px; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-call { display: flex; align-items: center; gap: 12px; color: var(--heading); }
.header-call-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: color-mix(in srgb, var(--brand) 10%, transparent);
    color: var(--brand); font-size: 15px;
    transition: all .3s var(--ease);
}
.header-call:hover .header-call-icon { background: var(--grad); color: #fff; }
.header-call-text { display: flex; flex-direction: column; font-size: 16px; font-weight: 500; line-height: 1.3; }
.header-call-text small { font-size: 13px; color: var(--muted); font-weight: 400; }

.navbar-toggler {
    border: 0; padding: 10px; width: 46px; height: 46px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    border-radius: 12px; background: var(--soft);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span { display: block; height: 2px; border-radius: 2px; background: var(--heading); }
.navbar-toggler span:nth-child(2) { width: 70%; margin-left: auto; }

@media (min-width: 992px) {
    .navbar-expand-lg .offcanvas .offcanvas-body { align-items: center; }
    .navbar-nav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; animation: dropIn .25s var(--ease); }
    .navbar-nav .dropdown:hover > .nav-link.dropdown-toggle::before { transform: translateY(-50%) rotate(180deg); }
    .navbar-nav .dropdown-menu { top: 100%; }
}
@keyframes dropIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1199.98px) {
    .header-call { display: none; }
    .navbar-nav .nav-link { padding: 10px 9px !important; }
}
@media (min-width: 1200px) {
    .navbar-nav { gap: 0; }
    .navbar-nav .nav-link { padding: 10px 12px !important; }
    .navbar-nav .nav-link.dropdown-toggle { padding-right: 26px !important; }
    .navbar-brand { margin-right: 16px; }
}
.header-actions .btn { white-space: nowrap; }

@media (max-width: 991.98px) {
    .offcanvas { max-width: 340px; }
    .offcanvas-header { border-bottom: 1px solid var(--border); padding: 18px 22px; }
    .offcanvas-body { padding: 18px 22px 30px; display: flex; flex-direction: column; }
    /* mx-auto centres the menu on desktop; inside the slide-in panel the links must fill the width */
    .offcanvas-body .navbar-nav { gap: 0; width: 100%; margin-left: 0 !important; margin-right: 0 !important; }
    .navbar-nav .nav-link { padding: 12px 0 !important; border-bottom: 1px solid var(--border); }
    .navbar-nav .nav-link.dropdown-toggle::before { right: 0; }
    .dropdown-menu { box-shadow: none; padding: 4px 0 8px 12px; min-width: 0; }
    .header-actions { flex-direction: column; align-items: stretch; margin-top: 24px; }
    .header-call { display: flex; }
    .logo-mark { width: 60px; }
    .logo-name { font-size: 22px; }
}

/* ---------- Hero (light split banner: photo left, text right) ---------- */
.hero { position: relative; overflow: hidden; background: #F4F8FD; border-top: 1px solid var(--border); }
.hero-slider .swiper-slide {
    position: relative;
    min-height: clamp(540px, 78vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(100deg, #FFFFFF 0%, #F7FAFE 45%, #EEF4FB 100%);
}
.hero-media { position: absolute; top: 0; bottom: 0; left: 0; width: 52%; z-index: 0; }
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
    transform: scale(1.06);
    transition: transform 7s ease-out;
}
.hero-slider .swiper-slide-active .hero-media img { transform: scale(1); }
.hero .container { position: relative; z-index: 2; }
.hero-content { width: 50%; margin-left: auto; padding: 60px 0 130px 44px; }

.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px;
    border-radius: 50px;
    background: color-mix(in srgb, var(--brand) 8%, #fff);
    border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
    color: var(--brand);
    font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.hero .hero-title {
    color: var(--heading);
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1.38;
    font-weight: 400;
    letter-spacing: -.01em;
    margin-bottom: 26px;
}
.hero-quote-mark {
    display: inline-block;
    font-style: italic;
    font-weight: 500;
    color: var(--brand);
}
.hero-quote-mark.is-open { margin-right: .1em; }
.hero-quote-mark.is-close { margin-left: .06em; }
.hero .text-highlight { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-person { margin: 0 0 30px; display: flex; flex-direction: column; gap: 4px; }
.hero-person-name { font-size: 21px; font-weight: 500; color: var(--heading); line-height: 1.3; }
.hero-person-role { font-size: 15.5px; color: var(--muted); }
.hero-text { font-size: 17px; color: var(--text); max-width: 560px; margin-bottom: 32px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-outline { color: var(--heading); background: #fff; border: 1px solid #D5DEEA; }
.btn-hero-outline:hover { color: var(--brand); border-color: var(--brand); background: #fff; }

.hero-slider .swiper-slide .hero-content > * { opacity: 0; transform: translateY(26px); transition: all .9s var(--ease); }
.hero-slider .swiper-slide-active .hero-content > * { opacity: 1; transform: none; }
.hero-slider .swiper-slide-active .hero-content > *:nth-child(2) { transition-delay: .12s; }
.hero-slider .swiper-slide-active .hero-content > *:nth-child(3) { transition-delay: .24s; }
.hero-slider .swiper-slide-active .hero-content > *:nth-child(4) { transition-delay: .36s; }
.hero-slider .swiper-slide-active .hero-content > *:nth-child(5) { transition-delay: .48s; }

.hero-arrow {
    position: absolute; z-index: 5; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--heading); font-size: 20px;
    box-shadow: 0 10px 30px rgba(14, 26, 60, .12);
    transition: all .3s var(--ease);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-arrow:hover { background: var(--grad); border-color: transparent; color: #fff; }
.hero-pagination {
    position: absolute; z-index: 5;
    left: calc(50% + 44px) !important; bottom: 96px !important;
    display: flex; gap: 8px; width: auto !important;
}
.hero-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: #C8D3E1; opacity: 1; margin: 0 !important; transition: all .3s; }
.hero-pagination .swiper-pagination-bullet-active { width: 36px; border-radius: 6px; background: var(--grad); }

@media (max-width: 991.98px) {
    .hero-slider .swiper-slide { flex-direction: column; align-items: stretch; min-height: 0; }
    .hero-media { position: relative; width: 100%; height: clamp(260px, 52vw, 420px); }
    .hero-media img {
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
    }
    .hero-content { width: 100%; padding: 0 0 96px; margin-top: -30px; }
    .hero .hero-title { font-size: clamp(24px, 6vw, 34px); margin-bottom: 20px; }
    .hero-arrow { display: none; }
    .hero-pagination { left: 50% !important; transform: translateX(-50%); bottom: 62px !important; }
}
@media (max-width: 575.98px) {
    .hero-person-name { font-size: 18px; }
    .hero-person-role, .hero-text { font-size: 15px; }
    .hero-buttons .btn-lg { padding: 13px 24px; font-size: 15px; }
}

/* ---------- Highlight strip ---------- */
.highlight-strip { position: relative; z-index: 6; margin-top: -56px; }
.highlight-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.highlight-item {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 20px;
    color: var(--heading);
    position: relative;
    transition: all .35s var(--ease);
}
.highlight-item + .highlight-item { border-left: 1px solid var(--border); }
.highlight-item::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.highlight-item:hover { color: var(--heading); background: var(--soft); }
.highlight-item:hover::after { transform: scaleX(1); }
.highlight-icon {
    width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
    display: grid; place-items: center; font-size: 14px; color: #fff;
    background: var(--grad);
    transition: transform .4s var(--ease);
}
.highlight-item:hover .highlight-icon { transform: scale(1.08); }
.highlight-text { display: flex; flex-direction: column; }
.highlight-title { font-size: 15.5px; font-weight: 500; line-height: 1.3; }
.highlight-link { font-size: 13px; color: var(--muted); margin-top: 2px; }
.highlight-item:hover .highlight-link { color: var(--brand); }

@media (max-width: 991.98px) {
    .highlight-box { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:nth-child(3) { border-left: 0; }
    .highlight-item:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 575.98px) {
    .highlight-strip { margin-top: -44px; }
    .highlight-box { grid-template-columns: 1fr; }
    .highlight-item + .highlight-item { border-left: 0; border-top: 1px solid var(--border); }
    .highlight-item { padding: 14px 18px; }
}

/* ---------- About ---------- */
.about-section.section { padding: 70px 0; }
.about-media { position: relative; padding: 0 0 56px; max-width: 580px; }
.about-media.is-single { padding-bottom: 0; }
/* with no second image there is nothing to overlap, so the photo uses the full column */
.about-media.is-single .about-img-main { width: 100%; }
.about-media.is-full .about-img-main {
    width: 100%; height: auto; aspect-ratio: auto; object-fit: contain;
    border-radius: 0; box-shadow: none;
}
.about-media.is-full.is-single { max-width: 500px; margin-inline: auto; }

.about-img-main {
    position: relative; display: block;
    width: 80%; aspect-ratio: 4 / 4.6; object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(14, 26, 60, .12);
}
.about-img-small {
    position: absolute; right: 0; bottom: 0;
    width: 50%; aspect-ratio: 4 / 3.3; object-fit: cover;
    border-radius: 20px; border: 8px solid #fff;
    box-shadow: var(--shadow-lg);
}
.experience-badge {
    position: absolute; right: 0; top: 44px;
    display: flex; flex-direction: column; align-items: flex-start;
    width: 176px; padding: 20px 22px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(14, 26, 60, .14);
    animation: floatY 5s ease-in-out infinite;
}
.experience-icon {
    width: 28px; height: 28px; border-radius: 50%; margin-bottom: 8px;
    display: grid; place-items: center; font-size: 14px; color: #fff; background: var(--grad-accent);
}
.experience-number {
    font-size: 40px; font-weight: 500; line-height: 1.05;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.experience-label { font-size: 14px; line-height: 1.45; color: var(--muted); margin-top: 4px; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.section-title.is-compact { margin-bottom: 16px; }
.section-title.is-compact h2 { font-size: clamp(28px, 2.7vw, 38px); line-height: 1.28; margin-bottom: 0; }
.lead-text { font-size: 16.5px; line-height: 1.8; color: var(--text); margin-bottom: 0; }

.check-list { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
.check-list.single { grid-template-columns: 1fr; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--heading); font-size: 15.5px; line-height: 1.5; }
.check-list i {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    display: grid; place-items: center; font-size: 14px; color: #fff; background: var(--grad);
}
.check-list.is-cards { gap: 10px; margin: 20px 0 26px; }
.check-list.is-cards li {
    align-items: center; gap: 12px;
    padding: 13px 16px;
    border-radius: 14px;
    background: var(--soft);
    border: 1px solid var(--border);
    font-size: 15px; line-height: 1.4;
    transition: all .3s var(--ease);
}
.check-list.is-cards li:hover { background: #fff; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-2px); }
.check-list.is-cards i { width: 26px; height: 26px; }

.about-footer { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 28px; }
.founder { display: flex; align-items: center; gap: 14px; }
.about-footer .btn + .founder { padding-left: 28px; border-left: 1px solid var(--border); }
.founder-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center;
    font-size: 14px; font-weight: 500; color: #fff; letter-spacing: .02em;
    background: var(--grad-accent);
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--border);
}
.founder-name { font-size: 17px; font-weight: 500; color: var(--heading); margin: 0; line-height: 1.3; }
.founder-role { font-size: 14px; color: var(--muted); margin: 2px 0 0; }

@media (max-width: 991.98px) {
    .about-media { margin: 0 auto; }
}
@media (max-width: 575.98px) {
    .about-media { padding-bottom: 40px; }
    .experience-badge { width: 140px; padding: 14px 16px; top: 24px; }
    .experience-icon { width: 24px; height: 24px; font-size: 12px; margin-bottom: 4px; }
    .experience-number { font-size: 30px; }
    .experience-label { font-size: 12.5px; }
    .check-list { grid-template-columns: 1fr; }
    .about-footer .btn + .founder { padding-left: 0; border-left: 0; }
}

/* ---------- Service cards ---------- */
.service-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 26, 60, .05);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-thumb { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-thumb img { transform: scale(1.07); }
.service-body { position: relative; padding: 42px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
    position: absolute; top: -20px; left: 24px;
    width: 36px; height: 36px; border-radius: 12px;
    display: grid; place-items: center; font-size: 15px; color: #fff;
    background: var(--grad);
    border: 5px solid #fff;
    box-sizing: content-box;
    transition: background .4s var(--ease);
}
.service-card:hover .service-icon { background: var(--grad-accent); }
.service-body h3 { font-size: 21px; margin-bottom: 10px; }
.service-body h3 a { color: var(--heading); }
.service-body h3 a:hover { color: var(--brand); }
.service-body p { color: var(--muted); font-size: 15.5px; flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; color: var(--brand); }
.read-more i { transition: transform .3s var(--ease); }
.read-more:hover i { transform: translateX(5px); }

/* ---------- Counters ---------- */
.counter-section { position: relative; padding: 0; background: linear-gradient(var(--soft) 50%, #fff 50%); }
.counter-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 56px 50px;
    background: var(--dark);
}
.counter-wrap::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--brand-2) 35%, transparent), transparent 40%),
        radial-gradient(circle at 90% 90%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 40%);
}
.counter-wrap .row { position: relative; }
.counter-item { display: flex; align-items: center; gap: 18px; color: #fff; }
.counter-icon {
    width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
    display: grid; place-items: center; font-size: 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
    color: var(--brand-2);
}
.counter-number { font-size: clamp(30px, 3.2vw, 42px); font-weight: 500; line-height: 1.1; margin: 0; color: #fff; }
.counter-label { margin: 4px 0 0; color: rgba(255, 255, 255, .75); font-size: 15px; }

@media (max-width: 767.98px) {
    .counter-wrap { padding: 36px 22px; }
    .counter-item { flex-direction: column; text-align: center; gap: 10px; }
    .counter-icon { width: 34px; height: 34px; font-size: 15px; }
}

/* ---------- Why choose us ---------- */
.feature-item { height: 100%; }
.feature-icon {
    width: 34px; height: 34px; border-radius: 11px;
    display: grid; place-items: center; font-size: 15px;
    color: var(--brand);
    background: color-mix(in srgb, var(--brand) 9%, transparent);
    margin-bottom: 18px;
    transition: all .4s var(--ease);
}
.feature-item:hover .feature-icon { background: var(--grad); color: #fff; transform: translateY(-4px); }
.feature-item h3 { font-size: 19px; margin-bottom: 8px; }
.feature-item p { font-size: 15.5px; color: var(--muted); margin: 0; }

.why-media { position: relative; padding: 0 0 40px 40px; }
.why-media::before {
    content: ""; position: absolute; left: 0; bottom: 0; width: 70%; height: 70%;
    border-radius: 24px; background: var(--grad-accent); opacity: .12;
}
.why-media img { position: relative; width: 100%; aspect-ratio: 1 / .95; object-fit: cover; border-radius: 24px; }
.why-call {
    position: absolute; right: 24px; bottom: 0;
    display: flex; align-items: center; gap: 14px;
    padding: 18px 26px 18px 18px;
    border-radius: 18px;
    background: #fff;
    color: var(--heading);
    box-shadow: var(--shadow-lg);
    font-size: 19px; font-weight: 500; line-height: 1.3;
}
.why-call small { display: block; font-size: 13.5px; color: var(--muted); font-weight: 400; }
.why-call-icon {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    font-size: 16px; color: #fff; background: var(--grad);
    animation: ring 2.4s ease-in-out infinite;
}
@keyframes ring { 0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 45%, transparent); } 50% { box-shadow: 0 0 0 12px transparent; } }

/* ---------- Process ---------- */
.process-row { position: relative; }
.process-item { text-align: center; padding: 0 12px; position: relative; }
@media (min-width: 992px) {
    .process-row > div:not(:last-child) .process-item::after {
        content: ""; position: absolute; top: 32px; left: calc(50% + 46px); width: calc(100% - 68px);
        border-top: 2px dashed color-mix(in srgb, var(--brand) 30%, transparent);
    }
}
.process-icon {
    position: relative;
    width: 64px; height: 64px; margin: 0 auto 18px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 22px; color: var(--brand);
    background: #fff;
    box-shadow: var(--shadow);
    transition: all .4s var(--ease);
}
.process-item:hover .process-icon { background: var(--grad); color: #fff; transform: translateY(-6px); }
.process-number {
    position: absolute; top: 0; right: 0;
    width: 24px; height: 24px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 11px; font-weight: 500; color: #fff;
    background: var(--grad-accent);
    border: 3px solid #fff;
}
.process-item h3 { font-size: 19px; }
.process-item p { font-size: 15.5px; color: var(--muted); margin: 0; }

/* ---------- Jobs ---------- */
.job-card {
    height: 100%;
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    transition: all .35s var(--ease);
    display: flex; flex-direction: column;
}
.job-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job-card-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.job-icon {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center; font-size: 15px; color: var(--brand);
    background: color-mix(in srgb, var(--brand) 9%, transparent);
}
.job-card:hover .job-icon { background: var(--grad); color: #fff; }
.job-card h3 { font-size: 19px; margin: 0 0 2px; }
.job-card h3 a { color: var(--heading); }
.job-card h3 a:hover { color: var(--brand); }
.job-company { font-size: 14px; color: var(--muted); }
.job-type {
    margin-left: auto; white-space: nowrap;
    font-size: 13px; padding: 5px 12px; border-radius: 50px;
    color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, transparent);
}
.job-meta { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14.5px; color: var(--text); }
.job-meta li { display: flex; align-items: center; gap: 7px; }
.job-meta i { color: var(--brand); }
.job-card-foot {
    margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--border);
    display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.job-salary { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--heading); }
.job-salary i { color: var(--brand); }

.job-detail-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.job-detail-head .job-icon { width: 40px; height: 40px; font-size: 17px; }
.job-detail-head h2 { margin-bottom: 8px; }
.job-detail-head .job-meta { margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-section { background: var(--dark); overflow: hidden; }
.testimonial-section.section { padding: 66px 0; }
.testimonial-section .section-title { margin-bottom: 28px; }
.testimonial-section::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--brand) 40%, transparent), transparent 35%),
        radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 35%);
}
.testimonial-section .container { position: relative; }
.testimonial-slider { padding-bottom: 42px; }
.testimonial-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 24px 24px 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    transition: all .35s var(--ease);
}
.testimonial-card:hover { background: rgba(255, 255, 255, .09); }
.testimonial-quote { position: absolute; top: 14px; right: 22px; font-size: 40px; line-height: 1; color: var(--brand-2); opacity: .35; }
.testimonial-stars { color: #FFB800; font-size: 14px; display: flex; gap: 3px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 15.5px; line-height: 1.7; margin: 0 0 18px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); }
.testimonial-author img, .testimonial-initials { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-initials { display: grid; place-items: center; font-size: 14px; font-weight: 500; color: #fff; background: var(--grad-accent); }
.testimonial-meta { display: flex; flex-direction: column; line-height: 1.5; }
.testimonial-name { color: #fff; font-size: 15.5px; font-weight: 500; }
.testimonial-role { font-size: 13.5px; color: rgba(255, 255, 255, .6); }
.testimonial-pagination .swiper-pagination-bullet { background: rgba(255, 255, 255, .5); opacity: 1; width: 10px; height: 10px; transition: all .3s; }
.testimonial-pagination .swiper-pagination-bullet-active { background: var(--brand-2); width: 30px; border-radius: 6px; }
.testimonial-slider .swiper-slide { height: auto; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 4.4;
    background: var(--soft);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-initials {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-size: 44px; font-weight: 300; color: #fff; letter-spacing: .04em;
    background: var(--grad);
}
.team-card:nth-child(3n+2) .team-initials, .col-sm-6:nth-child(3n+2) .team-initials { background: var(--grad-accent); }
.team-social {
    position: absolute; left: 50%; bottom: 18px;
    display: flex; gap: 8px; list-style: none; margin: 0; padding: 0;
    transform: translate(-50%, 20px); opacity: 0; transition: all .4s var(--ease);
}
.team-card:hover .team-social { transform: translate(-50%, 0); opacity: 1; }
.team-social a {
    width: 32px; height: 32px; border-radius: 50%;
    display: grid; place-items: center; font-size: 14px; background: #fff; color: var(--brand);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}
.team-social a:hover { background: var(--brand); color: #fff; }
.team-info {
    position: relative;
    margin: -34px 18px 0;
    padding: 18px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}
.team-info h3 { font-size: 18px; margin: 0 0 2px; }
.team-info span { font-size: 14.5px; color: var(--brand); }

@media (hover: none) { .team-social { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- Consultation ---------- */
.consult-wrap { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.consult-info {
    height: 100%;
    padding: 56px 46px;
    color: rgba(255, 255, 255, .85);
    background: var(--grad);
    position: relative; overflow: hidden;
}
.consult-info::after {
    content: ""; position: absolute; width: 320px; height: 320px; right: -140px; bottom: -140px;
    border-radius: 50%; border: 60px solid rgba(255, 255, 255, .08);
}
.consult-info .sub-title { color: #fff; }
.consult-info .sub-title::before { background: #fff; }
.consult-info h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); }
.consult-info .text-highlight { background: none; color: #fff; -webkit-text-fill-color: #fff; }
.consult-contact { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 22px; position: relative; z-index: 1; }
.consult-contact li { display: flex; gap: 16px; align-items: flex-start; line-height: 1.55; }
.consult-contact small { display: block; font-size: 13px; color: rgba(255, 255, 255, .7); }
.consult-contact a { color: #fff; font-size: 17px; }
.consult-contact-icon {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center; font-size: 15px; color: #fff;
    background: rgba(255, 255, 255, .15);
}
.consult-form { padding: 56px 50px; }
.consult-form h3 { font-size: 24px; margin-bottom: 26px; }
@media (max-width: 575.98px) {
    .consult-info, .consult-form { padding: 36px 24px; }
}

/* ---------- Forms ---------- */
.form-label { font-size: 14.5px; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.form-control, .form-select {
    font-family: inherit;
    font-size: 15.5px;
    color: var(--heading);
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: var(--soft);
    transition: all .25s var(--ease);
}
.form-control::placeholder { color: #9AA3B5; }
.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent);
}
.form-card { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-card-title { font-size: 24px; margin-bottom: 24px; }
@media (max-width: 575.98px) { .form-card { padding: 26px 20px; } }

/* ---------- Blog cards ---------- */
.post-card {
    height: 100%; background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10.5; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.07); }
.post-date {
    position: absolute; left: 18px; bottom: 18px;
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 12px; border-radius: 12px;
    background: #fff; color: var(--muted); font-size: 12.5px; line-height: 1.2; text-transform: uppercase;
}
.post-date strong { font-size: 22px; color: var(--brand); font-weight: 500; }
.post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-category { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--accent); margin-bottom: 8px; }
.post-body h3 { font-size: 20px; line-height: 1.4; }
.post-body h3 a { color: var(--heading); }
.post-body h3 a:hover { color: var(--brand); }
.post-body p { color: var(--muted); font-size: 15px; flex: 1; }
.post-meta { list-style: none; padding: 0; margin: 0 0 12px; display: flex; gap: 22px; font-size: 14.5px; color: var(--muted); }
.post-meta li { display: flex; align-items: center; gap: 7px; }
.post-meta i { color: var(--brand); }

/* ---------- Events ---------- */
.event-card {
    height: 100%; background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.event-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10.5; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.event-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8, 16, 42, .55)); }
.event-card:hover .event-thumb img { transform: scale(1.07); }
.event-date {
    position: absolute; z-index: 1; left: 18px; top: 18px;
    display: flex; flex-direction: column; align-items: center;
    min-width: 66px; padding: 8px 10px; border-radius: 14px;
    background: #fff; box-shadow: 0 8px 20px rgba(8, 16, 42, .18); line-height: 1.15;
}
.event-day { font-size: 26px; font-weight: 500; color: var(--brand); }
.event-month { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.event-status {
    position: absolute; z-index: 1; right: 16px; bottom: 16px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 13px; border-radius: 50px; font-size: 13px;
    color: #fff; background: rgba(8, 16, 42, .6); backdrop-filter: blur(6px);
}
.event-status.is-upcoming { background: var(--grad-accent); }
.event-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.event-category {
    align-self: flex-start; display: inline-block; margin-bottom: 10px;
    padding: 4px 12px; border-radius: 50px; font-size: 13px;
    color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, transparent);
}
.event-body h3 { font-size: 20px; line-height: 1.4; margin-bottom: 10px; }
.event-body h3 a { color: var(--heading); }
.event-body h3 a:hover { color: var(--brand); }
.event-meta { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 4px; font-size: 14.5px; color: var(--text); }
.event-meta li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.event-meta i { color: var(--brand); margin-top: 1px; }
.event-meta-lg { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 15.5px; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.event-body p { color: var(--muted); font-size: 15px; flex: 1; }
.event-cover { position: relative; }
.event-cover .event-status { bottom: 50px; right: 20px; font-size: 14px; padding: 7px 16px; }

.event-gallery { margin-top: 50px; }
.event-gallery h3 { font-size: 26px; margin-bottom: 20px; }
.event-gallery h3 span { color: var(--muted); font-size: 18px; }
.event-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.event-gallery-item {
    position: relative; padding: 0; border: 0; overflow: hidden; cursor: zoom-in;
    aspect-ratio: 4 / 3; border-radius: var(--radius-sm); background: var(--soft);
}
.event-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.event-gallery-zoom {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-size: 24px; color: #fff; opacity: 0;
    background: color-mix(in srgb, var(--dark) 55%, transparent); transition: opacity .35s var(--ease);
}
.event-gallery-item:hover img { transform: scale(1.08); }
.event-gallery-item:hover .event-gallery-zoom, .event-gallery-item:focus-visible .event-gallery-zoom { opacity: 1; }
@media (max-width: 575.98px) { .event-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.gallery-modal .modal-content { background: transparent; border: 0; }
.gallery-modal .carousel-item img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius-sm); }
.gallery-caption { text-align: center; color: rgba(255, 255, 255, .85); margin: 12px 0 0; font-size: 15px; }
.gallery-close { position: absolute; top: -40px; right: 0; z-index: 5; opacity: .9; }
.gallery-arrow { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; color: #fff; background: rgba(255, 255, 255, .15); }
.gallery-modal .carousel-control-prev, .gallery-modal .carousel-control-next { width: 70px; opacity: 1; }
.modal-backdrop.show { opacity: .88; }

/* ---------- Clients ---------- */
.partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.partner-card {
    width: 160px; height: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 14px 12px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--heading);
    transition: all .35s var(--ease);
}
a.partner-card:hover { color: var(--heading); border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.partner-logo { width: 100%; height: 64px; display: grid; place-items: center; }
.partner-logo img { max-width: 110px; max-height: 64px; width: auto; height: auto; object-fit: contain; transition: transform .4s var(--ease); }
a.partner-card:hover .partner-logo img { transform: scale(1.05); }
.partner-initials {
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 19px; font-weight: 500; color: #fff; background: var(--grad);
}
.partner-name { font-size: 14px; font-weight: 500; text-align: center; line-height: 1.3; }
.partner-visit { display: inline-flex; align-items: center; gap: 4px; margin-top: -4px; font-size: 12px; color: var(--muted); }
a.partner-card:hover .partner-visit { color: var(--brand); }

/* Compact partners section: less space above/below and a smaller heading */
.clients-section.section { padding-top: 50px; }
.section:has(+ .clients-section) { padding-bottom: 70px; }
main > .clients-section:last-child { padding-bottom: 140px !important; }
.clients-section .section-title { margin-bottom: 24px; }
.clients-section .sub-title { font-size: 12.5px; margin-bottom: 8px; }
.clients-section .sub-title::before, .clients-section .section-title.is-center .sub-title::after { width: 26px; }
.clients-section .section-title h2 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 0; }
.client-slider .swiper-slide { height: auto; }
.client-slider .partner-card { width: 100%; }
@media (max-width: 575.98px) {
    .partner-grid { gap: 14px; }
    .partner-card { width: calc(50% - 8px); }
    .clients-section.section { padding-top: 40px; }
    .section:has(+ .clients-section) { padding-bottom: 50px; }
    main > .clients-section:last-child { padding-bottom: 190px !important; }
}

/* ---------- Page banner ---------- */
.page-banner {
    position: relative;
    padding: 110px 0 100px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.page-banner::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(8, 16, 42, .92) 0%, color-mix(in srgb, var(--brand) 70%, rgba(8, 16, 42, .8)) 100%);
}
.page-banner::after {
    content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -160px;
    border-radius: 50%; border: 70px solid rgba(255, 255, 255, .06);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 16px; }
.page-banner .breadcrumb {
    justify-content: center; margin: 0;
    display: inline-flex; padding: 9px 22px; border-radius: 50px;
    background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15);
    font-size: 15px;
}
.page-banner .breadcrumb a { color: rgba(255, 255, 255, .85); }
.page-banner .breadcrumb a:hover { color: #fff; }
.page-banner .breadcrumb-item.active { color: var(--brand-2); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .5); }

/* ---------- Detail pages & sidebar ---------- */
.detail-image { width: 100%; border-radius: var(--radius); margin-bottom: 30px; aspect-ratio: 16 / 9; object-fit: cover; }
.detail-content h2 { font-size: clamp(26px, 3vw, 34px); }
.rich-content { font-size: 16.5px; line-height: 1.85; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin-top: 1.6em; }
.rich-content ul { list-style: none; padding: 0; }
.rich-content ul li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.rich-content ul li::before {
    content: "\F26E"; font-family: bootstrap-icons;
    position: absolute; left: 0; top: 1px; color: var(--brand);
}
.rich-content img { border-radius: var(--radius-sm); }
.rich-content a { text-decoration: underline; text-underline-offset: 3px; }

.sidebar { position: sticky; top: 110px; display: grid; gap: 28px; }
.sidebar-widget { background: var(--soft); border-radius: var(--radius); padding: 30px; }
.widget-title { font-size: 20px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); position: relative; }
.widget-title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 50px; height: 2px; background: var(--grad-accent); }
.service-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.service-menu a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 14px 18px; border-radius: 12px;
    background: #fff; color: var(--heading); font-size: 15.5px;
    transition: all .3s var(--ease);
}
.service-menu a span { display: flex; align-items: center; gap: 10px; }
.service-menu a span i { color: var(--brand); }
.service-menu a:hover, .service-menu a.active { background: var(--grad); color: #fff; }
.service-menu a:hover span i, .service-menu a.active span i { color: #fff; }

.help-widget { text-align: center; color: rgba(255, 255, 255, .85); background: var(--grad-accent); position: relative; overflow: hidden; }
.help-widget h3 { color: #fff; font-size: 22px; }
.help-icon {
    width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%;
    display: grid; place-items: center; font-size: 19px; color: #fff; background: rgba(255, 255, 255, .15);
}
.help-phone { display: block; font-size: 24px; color: #fff; margin: 4px 0 20px; }
.help-phone:hover { color: #fff; opacity: .85; }

.summary-list { list-style: none; padding: 0; margin: 0; }
.summary-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--border); font-size: 15px; }
.summary-list li span:first-child { color: var(--muted); }
.summary-list li span:last-child { color: var(--heading); text-align: right; }

.recent-posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.recent-posts a { display: flex; gap: 14px; align-items: center; color: var(--heading); }
.recent-posts img { width: 78px; height: 70px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.recent-title { display: block; font-size: 15px; line-height: 1.45; font-weight: 500; }
.recent-posts small { color: var(--muted); }
.recent-posts a:hover .recent-title { color: var(--brand); }

.detail-faq { margin-top: 50px; }
.detail-faq h3 { font-size: 26px; margin-bottom: 20px; }

/* ---------- FAQ accordion ---------- */
.faq-accordion { display: grid; gap: 14px; }
.faq-accordion .accordion-item { border: 1px solid var(--border); border-radius: 14px !important; overflow: hidden; }
.faq-accordion .accordion-header { margin: 0; }
.faq-accordion .accordion-button {
    font-family: inherit; font-size: 16.5px; font-weight: 500; color: var(--heading);
    padding: 20px 24px; background: #fff; box-shadow: none; line-height: 1.5;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--brand); background: var(--soft); }
.faq-accordion .accordion-button::after {
    background-image: none; content: "\F4FE"; font-family: bootstrap-icons;
    width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
    background: color-mix(in srgb, var(--brand) 10%, transparent); color: var(--brand); font-size: 18px;
    transform: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after { content: "\F2EA"; background: var(--grad); color: #fff; }
.faq-accordion .accordion-body { padding: 0 24px 22px; background: var(--soft); color: var(--text); font-size: 15.5px; }

/* ---------- Mission / Vision ---------- */
.mvv-card {
    height: 100%; padding: 40px 34px; border-radius: var(--radius); background: #fff;
    box-shadow: 0 4px 20px rgba(14, 26, 60, .05); transition: all .35s var(--ease);
    border-bottom: 3px solid transparent;
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--accent); }
.mvv-icon {
    width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
    font-size: 17px; color: #fff; background: var(--grad); margin-bottom: 16px;
}
.mvv-card h3 { font-size: 22px; }
.mvv-card p { color: var(--muted); margin: 0; }

/* ---------- Contact page ---------- */
.contact-card {
    height: 100%; text-align: center; padding: 40px 28px; border-radius: var(--radius);
    background: var(--soft); transition: all .35s var(--ease);
}
.contact-card:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.contact-card-icon {
    width: 42px; height: 42px; margin: 0 auto 16px; border-radius: 50%;
    display: grid; place-items: center; font-size: 17px; color: #fff; background: var(--grad);
}
.contact-card h3 { font-size: 21px; }
.contact-card p { margin: 0; color: var(--text); }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--brand); }
.contact-form-box .section-title { margin-bottom: 30px; }
.map-box { height: 100%; min-height: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-box iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.empty-state { text-align: center; padding: 50px 20px; border: 1px dashed var(--border); border-radius: var(--radius); }
.empty-state i { font-size: 42px; color: var(--brand); }
.empty-state p { max-width: 520px; margin: 12px auto 0; }

/* ---------- Pagination ---------- */
.pagination { justify-content: center; gap: 8px; }
.page-link { border-radius: 50% !important; width: 44px; height: 44px; display: grid; place-items: center; color: var(--heading); border: 1px solid var(--border); }
.page-item.active .page-link { background: var(--grad); border-color: transparent; }
.page-link:hover { color: var(--brand); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--dark); color: rgba(255, 255, 255, .72); }
main > :last-child { padding-bottom: 190px !important; }
.site-footer::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 40%);
}
.site-footer .container { position: relative; }
.footer-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    padding: 36px 44px;
    border-radius: 22px;
    background: var(--grad-accent);
    transform: translateY(-50%);
    margin-bottom: -20px;
    box-shadow: 0 24px 50px rgba(8, 16, 42, .25);
}
.footer-cta-text { display: flex; align-items: center; gap: 20px; color: rgba(255, 255, 255, .85); }
.footer-cta-text h3 { color: #fff; font-size: clamp(20px, 2.2vw, 26px); margin: 0 0 4px; }
.footer-cta-text p { margin: 0; }
.footer-cta-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; font-size: 17px; color: #fff; background: rgba(255, 255, 255, .15); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-main { padding-bottom: 60px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-about { font-size: 15.5px; }
.footer-title { color: #fff; font-size: 19px; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--grad-accent); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links a { color: rgba(255, 255, 255, .72); font-size: 15.5px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s var(--ease); }
.footer-links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-2); opacity: .7; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; font-size: 15.5px; line-height: 1.6; }
.footer-contact li { display: flex; gap: 12px; }
.footer-contact i { color: var(--brand-2); margin-top: 2px; }
.footer-contact a { color: rgba(255, 255, 255, .72); }
.footer-contact a:hover { color: #fff; }
.footer-follow { margin: 26px 0 12px; color: #fff; font-size: 15px; font-weight: 500; }
.footer-social { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
    font-size: 14px; color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .3s var(--ease);
}
.footer-social a:hover { color: #fff; background: var(--grad); border-color: transparent; transform: translateY(-3px); }
.footer-social a.is-youtube:hover { background: #FF0000; }
.footer-social a.is-facebook:hover { background: #1877F2; }
.footer-social a.is-google:hover { background: #EA4335; }
.footer-social a.is-twitter:hover { background: #000; border-color: rgba(255, 255, 255, .3); }
.footer-social a.is-linkedin:hover { background: #0A66C2; }
.footer-social a.is-instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B 50%, #8134AF); }
.footer-bottom { position: relative; border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; font-size: 14.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-bottom ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .72); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 767.98px) {
    .footer-cta { padding: 28px 24px; }
    main > :last-child { padding-bottom: 230px !important; }
    .footer-cta-text { flex-direction: column; align-items: flex-start; }
}

/* ---------- Job search ---------- */
.job-search {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 12px;
    padding: 14px; margin: -10px auto 18px; max-width: 1040px;
    background: #fff; border-radius: 20px; box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.job-search-field { position: relative; }
.job-search-field i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--brand); z-index: 1; pointer-events: none; }
.job-search-field .form-control, .job-search-field .form-select { padding-left: 42px; height: 100%; min-height: 52px; }
.job-search .btn { min-height: 52px; border-radius: 12px; }
.job-results-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; max-width: 1040px; margin: 0 auto 26px; min-height: 26px; font-size: 15px; color: var(--muted); }
.job-results-bar p { margin: 0; }
.job-results-bar strong { color: var(--heading); }
.job-clear { font-size: 14.5px; display: inline-flex; gap: 6px; align-items: center; }
@media (max-width: 991.98px) { .job-search { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .job-search { grid-template-columns: 1fr; } }

.job-new { display: inline-block; vertical-align: middle; margin-left: 6px; padding: 2px 9px; border-radius: 50px; font-size: 11.5px; line-height: 1.5; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--grad-accent); }
.job-foot-info { display: flex; flex-direction: column; gap: 2px; }
.job-deadline { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.job-deadline i { color: var(--accent); }

.closed-notice { display: flex; gap: 18px; align-items: flex-start; padding: 26px 28px; border-radius: var(--radius); background: #FFF4F4; border: 1px solid #FAD4D4; }
.closed-notice > i { font-size: 32px; color: #D92D20; }
.closed-notice h3 { font-size: 20px; margin-bottom: 6px; }
.closed-notice p { margin: 0; }

/* ---------- Share ---------- */
.share-box { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border); }
.share-label { display: inline-flex; align-items: center; gap: 8px; color: var(--heading); font-weight: 500; margin-right: 6px; }
.share-btn {
    position: relative; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
    display: grid; place-items: center; font-size: 14px; color: var(--text); background: #fff;
    transition: all .3s var(--ease);
}
.share-btn:hover { color: #fff; transform: translateY(-3px); border-color: transparent; }
.share-btn.is-whatsapp:hover { background: #25D366; }
.share-btn.is-facebook:hover { background: #1877F2; }
.share-btn.is-linkedin:hover { background: #0A66C2; }
.share-btn.is-x:hover { background: #111; }
.share-btn.is-copy:hover { background: var(--brand); }
.share-copied {
    position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translate(-50%, 4px);
    white-space: nowrap; padding: 4px 10px; border-radius: 6px; font-size: 12.5px;
    color: #fff; background: var(--heading); opacity: 0; pointer-events: none; transition: all .25s;
}
.share-btn.copied .share-copied { opacity: 1; transform: translate(-50%, 0); }

/* ---------- 404 ---------- */
.error-box { max-width: 640px; margin: 0 auto; text-align: center; }
.error-code { display: block; font-size: clamp(90px, 16vw, 150px); font-weight: 500; line-height: 1; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.error-box h1 { font-size: clamp(24px, 3vw, 34px); }
.error-box p { color: var(--muted); margin-bottom: 30px; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 3000; padding: 10px 18px; border-radius: 10px; background: var(--heading); color: #fff; transition: top .2s; }
.skip-link:focus { top: 12px; color: #fff; }
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent); outline-offset: 3px; box-shadow: none; }

/* ---------- Mobile menu contact & quick action bar ---------- */
.offcanvas-contact { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14.5px; line-height: 1.55; }
.offcanvas-contact p { display: flex; gap: 10px; margin-bottom: 12px; }
.offcanvas-contact i { color: var(--brand); margin-top: 2px; }
.offcanvas-contact a { color: var(--text); }
.offcanvas-contact .footer-social a { color: var(--brand); background: var(--soft); }
.offcanvas-contact .footer-social a:hover { color: #fff; }

.app-bar { display: none; }
@media (max-width: 991.98px) {
    .app-bar {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 1045;
        display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
        align-items: end;
        padding: 8px 6px calc(6px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(14, 26, 60, .1);
    }
    .app-bar a {
        position: relative;
        display: flex; flex-direction: column; align-items: center; gap: 3px;
        padding: 6px 2px 4px;
        font-size: 11px; line-height: 1.2; color: var(--muted);
        border-radius: 12px;
    }
    .app-bar a i { font-size: 19px; color: var(--heading); transition: color .25s var(--ease); }
    .app-bar a.active { color: var(--brand); }
    .app-bar a.active i { color: var(--brand); }
    .app-bar a.active::before {
        content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
        width: 18px; height: 3px; border-radius: 0 0 4px 4px; background: var(--grad);
    }
    .app-bar a.is-whatsapp i { color: #25D366; }
    .app-bar-center { justify-content: flex-end; }
    .app-bar-fab {
        width: 46px; height: 46px; margin-top: -24px; border-radius: 50%;
        display: grid; place-items: center;
        color: #fff; background: var(--grad);
        border: 4px solid #fff;
        box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 40%, transparent);
    }
    .app-bar-center i { font-size: 20px; color: #fff; }
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ---------- Floating buttons & toast ---------- */
.whatsapp-float, .back-to-top {
    position: fixed; right: 22px; z-index: 1040;
    width: 46px; height: 46px; border-radius: 50%; border: 0;
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
    transition: all .3s var(--ease);
}
.whatsapp-float { bottom: 82px; background: #25D366; font-size: 22px; }
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
.back-to-top { bottom: 24px; background: var(--grad); font-size: 17px; opacity: 0; visibility: hidden; transform: translateY(20px); }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

.site-toast {
    position: fixed; left: 50%; top: 24px; z-index: 2000;
    display: flex; align-items: center; gap: 14px;
    width: min(520px, calc(100vw - 32px));
    padding: 16px 18px; border-radius: 16px;
    background: #fff; box-shadow: var(--shadow-lg); border-left: 4px solid #1DB954;
    transform: translate(-50%, -150%); transition: transform .5s var(--ease);
}
.site-toast.show { transform: translate(-50%, 0); }
.site-toast.is-error { border-left-color: #D92D20; }
.site-toast.is-error .site-toast-icon { background: #D92D20; }
.site-toast p { margin: 0; flex: 1; color: var(--heading); font-size: 15px; line-height: 1.5; }
.site-toast-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: #1DB954; color: #fff; font-size: 20px; }
.site-toast button { border: 0; background: none; font-size: 22px; color: var(--muted); padding: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-media img, .experience-badge, .why-call-icon { animation: none; transition: none; }
}

/* ---------- Responsive spacing ---------- */
@media (max-width: 991.98px) {
    .section { padding: 80px 0; }
    .section-title { margin-bottom: 36px; }
    .section-head { margin-bottom: 36px; }
    .sidebar { position: static; }
}
@media (max-width: 575.98px) {
    .container { padding-left: 16px; padding-right: 16px; }
    body { font-size: 15.5px; }
    .section { padding: 64px 0; }
    .page-banner { padding: 70px 0 64px; }
}

/* Mobile: the app bar replaces the floating WhatsApp button (kept last so it wins over the base rules) */
@media (max-width: 991.98px) {
    .whatsapp-float { display: none; }
    .back-to-top { bottom: calc(86px + env(safe-area-inset-bottom)); width: 44px; height: 44px; font-size: 17px; }
    .topbar-inner { justify-content: center; }
    .topbar-info { gap: 18px; font-size: 12.5px; justify-content: center; }
}

/* ---------- Sitemap page ---------- */
.sitemap-card { height: 100%; padding: 24px 24px 20px; border-radius: var(--radius); background: var(--soft); border: 1px solid var(--border); }
.sitemap-card h2 { display: flex; align-items: center; gap: 10px; font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sitemap-card h2 i { color: var(--brand); font-size: 17px; }
.sitemap-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.sitemap-card li a { display: block; position: relative; padding-left: 18px; color: var(--text); font-size: 14.5px; line-height: 1.45; }
.sitemap-card li a::before { content: "\F285"; font-family: bootstrap-icons; position: absolute; left: 0; top: 1px; color: var(--brand); font-size: 12px; }
.sitemap-card li a:hover { color: var(--brand); }
.sitemap-card li a span { color: var(--muted); font-size: 13.5px; }
.sitemap-note { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.sitemap-xml li a { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; }

/* ---------- Small reminder popup (two panel) ---------- */
.site-popup {
    position: fixed; z-index: 1044;
    bottom: 24px; width: min(400px, calc(100vw - 32px)); max-width: calc(100vw - 32px);
    border-radius: 22px;
    overflow: hidden;
    display: grid; grid-template-columns: 1fr;
    opacity: 0; transform: translateY(18px) scale(.97);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.site-popup.has-side { width: min(720px, calc(100vw - 32px)); grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
.site-popup.is-bottom-right { right: 24px; }
.site-popup.is-bottom-left { left: 24px; }
.site-popup.show { opacity: 1; transform: none; }
.site-popup.is-center { top: 50%; left: 50%; right: auto; bottom: auto; transform: translate(-50%, -48%) scale(.97); }
.site-popup.is-center.show { transform: translate(-50%, -50%); }

.site-popup-main { position: relative; min-width: 0; padding: 32px 30px 26px; overflow: hidden; }
.site-popup-glow, .site-popup-side-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.site-popup-glow { left: -80px; top: -90px; width: 200px; height: 200px; }

.site-popup-close {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 28px; height: 28px; border: 0; border-radius: 50%;
    display: grid; place-items: center; font-size: 11px;
    transition: all .25s var(--ease);
}
.site-popup-badge {
    position: relative; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px;
    padding: 4px 11px; border-radius: 50px;
    font-size: 10.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
}
.site-popup-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: popupDot 1.8s ease-in-out infinite; }
@keyframes popupDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }
.site-popup-title { position: relative; margin: 0; font-size: 23px; font-weight: 500; line-height: 1.28; letter-spacing: -.015em; }
.site-popup-text { position: relative; margin: 10px 0 0; font-size: 14px; line-height: 1.6; }
.site-popup-actions { position: relative; display: grid; gap: 10px; margin-top: 22px; }
.site-popup-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 14px; border-radius: 13px;
    font-size: 14.5px; font-weight: 500; line-height: 1.25; color: #fff;
    white-space: normal; overflow-wrap: anywhere;
    transition: all .3s var(--ease);
}
.site-popup-btn i { font-size: 15px; }
.site-popup-btn-arrow { margin-left: auto; transition: transform .3s var(--ease); }
.site-popup-btn:hover { color: #fff; transform: translateY(-2px); }
.site-popup-btn:hover .site-popup-btn-arrow { transform: translateX(3px); }
.site-popup-btn.is-whatsapp { background: linear-gradient(135deg, #2CE06C 0%, #25D366 45%, #12A04E 100%); box-shadow: 0 10px 22px rgba(37, 211, 102, .28); }
.site-popup-note { position: relative; margin: 16px 0 0; font-size: 13px; }
.site-popup-note a { font-weight: 500; }

/* Right panel: live jobs and the next event */
.site-popup-side { position: relative; min-width: 0; padding: 28px 24px; color: #fff; background: var(--grad-accent); overflow: hidden; }
.site-popup-side-glow { right: -70px; bottom: -80px; width: 190px; height: 190px; background: radial-gradient(circle, rgba(255, 255, 255, .28), transparent 70%); }
.site-popup-side-title { position: relative; margin: 0 0 14px; font-size: 14px; font-weight: 500; letter-spacing: .01em; color: rgba(255, 255, 255, .92); }
.site-popup-jobs { position: relative; display: grid; gap: 10px; }
.site-popup-job {
    display: flex; align-items: center; gap: 11px;
    padding: 12px 13px; border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff; transition: all .3s var(--ease);
}
.site-popup-job:hover { color: #fff; background: rgba(255, 255, 255, .96); transform: translateY(-2px); }
.site-popup-job:hover .site-popup-job-title { color: var(--heading); }
.site-popup-job:hover .site-popup-job-meta { color: var(--muted); }
.site-popup-job:hover .site-popup-job-icon { background: var(--grad); color: #fff; }
.site-popup-job-icon {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center; font-size: 14px;
    background: rgba(255, 255, 255, .2); transition: all .3s var(--ease);
}
.site-popup-job-text { display: flex; flex-direction: column; min-width: 0; }
.site-popup-job-title { font-size: 14px; font-weight: 500; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-popup-job-meta { font-size: 12px; color: rgba(255, 255, 255, .78); line-height: 1.4; }
.site-popup-event {
    position: relative; display: flex; align-items: center; gap: 10px; margin-top: 14px;
    padding: 11px 13px; border-radius: 14px;
    background: rgba(0, 0, 0, .18); color: #fff; font-size: 12.5px; line-height: 1.35;
    transition: all .3s var(--ease);
}
.site-popup-event:hover { color: #fff; background: rgba(0, 0, 0, .3); }
.site-popup-event span { display: flex; flex-direction: column; min-width: 0; }
.site-popup-event strong { font-weight: 500; font-size: 13px; }
.site-popup-event > i:first-child { font-size: 16px; }
.site-popup-event > i:last-child { margin-left: auto; }

/* Dark look (left panel) */
.site-popup.style-dark .site-popup-main { background: linear-gradient(150deg, #0B1740 0%, #16265E 100%); color: #fff; }
.style-dark { border: 1px solid rgba(255, 255, 255, .14); box-shadow: 0 30px 80px rgba(8, 16, 42, .5); }
.style-dark .site-popup-glow { background: radial-gradient(circle, rgba(0, 194, 255, .35), transparent 70%); }
.style-dark .site-popup-close { color: #fff; background: rgba(255, 255, 255, .16); }
.style-dark .site-popup-close:hover { background: #fff; color: var(--dark); transform: rotate(90deg); }
.style-dark .site-popup-badge { color: #fff; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .18); }
.style-dark .site-popup-title { color: #fff; }
.style-dark .site-popup-text { color: rgba(255, 255, 255, .74); }
.style-dark .site-popup-note { color: rgba(255, 255, 255, .6); }
.style-dark .site-popup-note a { color: #fff; }
.style-dark .site-popup-btn.is-brand { background: linear-gradient(135deg, #00C2FF 0%, #0A6BDB 100%); box-shadow: 0 10px 24px rgba(10, 107, 219, .4); }

/* Light look (left panel) */
.site-popup.style-light .site-popup-main { background: #fff; color: var(--heading); }
.style-light { border: 1px solid var(--border); box-shadow: 0 30px 70px rgba(14, 26, 60, .24); }
.style-light .site-popup-glow { background: radial-gradient(circle, color-mix(in srgb, var(--brand) 14%, transparent), transparent 70%); }
.style-light .site-popup-close { color: var(--muted); background: rgba(14, 26, 60, .06); }
.style-light .site-popup-close:hover { background: var(--heading); color: #fff; transform: rotate(90deg); }
.style-light .site-popup-badge { color: var(--brand); background: color-mix(in srgb, var(--brand) 9%, transparent); }
.style-light .site-popup-title { color: var(--heading); }
.style-light .site-popup-text { color: var(--muted); }
.style-light .site-popup-note { color: var(--muted); }
.style-light .site-popup-btn.is-brand { background: var(--grad); box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 28%, transparent); }

@media (max-width: 1099.98px) {
    /* One column below laptop width: the two panel layout needs room, and on phones the
       popup must stay small because Google counts how much screen an interstitial covers. */
    .site-popup.has-side { width: min(400px, calc(100vw - 32px)); grid-template-columns: 1fr; }
    .site-popup-side { display: none; }
}
@media (max-width: 991.98px) {
    .site-popup:not(.is-center) { bottom: calc(84px + env(safe-area-inset-bottom)); right: 16px !important; left: 16px !important; width: auto; }
    .site-popup-main { padding: 20px 18px 16px; }
    .site-popup-badge { margin-bottom: 10px; }
    .site-popup-title { font-size: 17.5px; }
    .site-popup-text { font-size: 13px; margin-top: 7px; }
    .site-popup-actions { gap: 8px; margin-top: 16px; }
    .site-popup-btn { padding: 11px 12px; font-size: 13.5px; }
    .site-popup-note { margin-top: 12px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    .site-popup { transition: none; }
    .site-popup-dot { animation: none; }
}
