:root {
    --blue: #1d4ed8;
    --blue-dark: #1e3a8a;
    --blue-deep: #15265e;
    --navy: #0f1d4a;
    --ink: #0f172a;
    --muted: #64748b;
    --soft: #f5f7fb;
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    overflow-x: hidden;
}

.section-pad { padding: 70px 0; }
.bg-light-soft { background: var(--soft); }

.eyebrow {
    color: var(--blue);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.eyebrow-light { color: #cdd9ff; }

.section-title {
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: var(--ink);
    text-align: center;
    margin-top: .35rem;
}
.section-title.text-start { text-align: left; }

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 18px rgba(15, 29, 74, .06);
    z-index: 1030;
}
/* .navbar { padding: .5rem 0; } */
.brand-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-top { font-weight: 800; font-size: 1.05rem; color: var(--ink); letter-spacing: .5px; }
.brand-bottom { font-weight: 700; font-size: .72rem; color: var(--blue); letter-spacing: 1px; }
.brand-tag { font-size: .55rem; color: var(--muted); margin-top: 2px; }

.navbar .nav-link {
    color: var(--ink);
    font-weight: 500;
    font-size: .92rem;
    padding: .5rem .85rem;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--blue); }

.btn-phone {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; border-radius: 30px;
    font-weight: 600; font-size: .85rem;
    padding: .5rem 1.1rem;
}
.btn-phone:hover { color: #fff; opacity: .92; }

.dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(15,29,74,.12); border-radius: 12px; }
.dropdown-item:active { background: var(--blue); }

/* Hover dropdowns on desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu { display: block; }
    /* Bridge the gap so the menu doesn't close while moving the cursor down */
    .navbar-nav .dropdown > .dropdown-menu { margin-top: 0; }
    .navbar-nav .dropdown-toggle::after { transition: transform .2s ease; }
    .navbar-nav .dropdown:hover > .dropdown-toggle::after { transform: rotate(180deg); }
}

/* ===== BUTTONS ===== */
.btn-primary-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; border-radius: 8px; font-weight: 600;
    padding: .7rem 1.4rem;
}
.btn-primary-blue:hover { color: #fff; opacity: .92; }
.btn-outline-blue {
    border: 1.5px solid var(--blue); color: var(--blue);
    border-radius: 8px; font-weight: 600; padding: .7rem 1.4rem; background: #fff;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(180deg, #fff 0%, #eef3fc 100%);
    padding: 60px 0;
}
.hero-title { font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.05; }
.t-dark { color: var(--ink); }
.t-blue { color: var(--blue); }
.hero-sub {
    display: flex; align-items: center; gap: 10px;
    color: var(--blue); font-weight: 600; margin: 1rem 0 1.2rem;
    font-size: .95rem;
}
.hero-sub span { height: 2px; width: 28px; background: var(--blue); display: inline-block; }
.hero-text { color: var(--muted); max-width: 520px; }
.hero-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.hero-list li { margin-bottom: .6rem; font-weight: 500; font-size: .95rem; }
.hero-list i { color: var(--blue); margin-right: 8px; }

.hero-image { position: relative; }
.hero-image img { border-radius: 14px; width: 100%; box-shadow: 0 20px 50px rgba(15,29,74,.18); }
.hero-badge {
    position: absolute; right: 18px; bottom: 18px;
    background: var(--navy); color: #fff;
    padding: .7rem 1rem; border-radius: 10px;
    display: flex; align-items: center; gap: 10px;
    font-size: .82rem; font-weight: 500; max-width: 230px;
}
.hero-badge i { color: #6ea8ff; font-size: 1.3rem; }

/* ===== ABOUT ===== */
.about-image img { box-shadow: 0 18px 45px rgba(15,29,74,.15); }
.stat-item {
    display: flex; align-items: center; gap: 14px; margin-bottom: 1.4rem;
}
.stat-ico {
    width: 48px; height: 48px; flex: 0 0 48px;
    display: grid; place-items: center;
    background: #eaf0ff; color: var(--blue);
    border-radius: 50%; font-size: 1.25rem;
}
.stat-num { display: block; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.stat-label { display: block; color: var(--muted); font-size: .85rem; }

/* ===== SERVICES ===== */
.service-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(15,29,74,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,29,74,.14); }
.service-img { position: relative; height: 150px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
/* image sliders fill their card / detail wrappers */
.service-img .carousel,
.service-img .carousel-inner,
.service-img .carousel-item { height: 100%; }
.service-detail-img .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
/* full-width services gallery slider — show full image, no cropping */
.services-gallery .carousel-item img { width: 100%; height: auto; object-fit: contain; }
.services-gallery .gallery-cap {
    display: inline-block; padding: 8px 20px; border-radius: 30px;
    background: rgba(15,29,74,.7); font-weight: 600; letter-spacing: .3px;
}
.service-icon {
    position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; display: grid; place-items: center; font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(29,78,216,.4);
}
.service-body { padding: 34px 18px 22px; text-align: center; }
.service-body h5 { font-weight: 700; font-size: 1.05rem; }
.service-body ul { list-style: none; padding: 0; margin: .8rem 0 0; text-align: left; }
.service-body ul li { font-size: .8rem; margin-bottom: .45rem; color: #334155; }
.service-body ul li i { color: var(--blue); margin-right: 6px; font-size: .8rem; }

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; padding: 55px 0;
}
.why-title { font-weight: 700; font-size: 1.5rem; margin-top: .4rem; }
.why-item { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: .95rem; }
.why-ico {
    width: 42px; height: 42px; flex: 0 0 42px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.15); border-radius: 10px; font-size: 1.15rem;
}

/* ===== PROCESS ===== */
.process-row { position: relative; }
.process-step { position: relative; }
/* dashed connector line between steps (desktop) */
.process-step::before {
    content: "";
    position: absolute;
    top: 45px; left: 50%; width: 100%;
    border-top: 2px dashed #c9d6f5;
    z-index: 0;
}
.process-row > [class*="col-"]:last-child .process-step::before { display: none; }
.process-circle {
    position: relative; z-index: 1;
    width: 90px; height: 90px; margin: 0 auto 1rem; position: relative;
    border: 2px dashed #c9d6f5; border-radius: 50%;
    display: grid; place-items: center;
    background: #f3f7ff; color: var(--blue); font-size: 2rem;
}
.process-num {
    position: absolute; top: -6px; right: 6px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--blue); color: #fff;
    font-size: .72rem; font-weight: 700;
    display: grid; place-items: center;
}
.process-step h6 { font-weight: 700; margin-top: .4rem; }

/* ===== SATISFACTION ===== */
.satisfaction-box {
    background: #eef3fc; border-radius: 18px; padding: 34px;
}
.sat-emoji { font-size: 2.4rem; color: var(--blue); }
.gallery-img { height: 120px; width: 100%; object-fit: cover; box-shadow: 0 8px 22px rgba(15,29,74,.12); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: #cbd5e1; padding-top: 55px; }
.footer-label { color: #93b0ff; font-size: .75rem; letter-spacing: 2px; font-weight: 600; }
.footer-title { color: #fff; font-weight: 700; font-size: 1.5rem; }
.footer-ico { color: #6ea8ff; font-size: 1.2rem; margin-top: 3px; }
.site-footer strong { color: #fff; font-weight: 600; }
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 14px; padding: 26px; color: #fff;
}
.footer-cta i { font-size: 1.6rem; }
.footer-cta h5 { font-weight: 700; margin: .6rem 0 .4rem; }
.footer-cta p { color: #dbe5ff; font-size: .88rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 45px; padding: 18px 0; font-size: .82rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; right: 22px; bottom: 22px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--blue); color: #fff;
    display: grid; place-items: center; font-size: 1.2rem;
    opacity: 0; visibility: hidden; transition: .3s; z-index: 1040;
    box-shadow: 0 8px 24px rgba(29,78,216,.45);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { color: #fff; transform: translateY(-3px); }

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contact {
    position: fixed; left: 22px; bottom: 22px;
    display: flex; flex-direction: column; gap: 12px;
    z-index: 1040;
}
.fc-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(15,29,74,.3);
    transition: transform .25s ease, box-shadow .25s ease;
}
.fc-btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,29,74,.4); }
.fc-whatsapp { background: #25d366; }
.fc-phone { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }

@media (max-width: 575.98px) {
    .floating-contact { left: 16px; bottom: 16px; gap: 10px; }
    .fc-btn { width: 46px; height: 46px; font-size: 1.3rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff; margin-top: .6rem; padding: 1rem;
        border-radius: 12px; box-shadow: 0 10px 30px rgba(15,29,74,.1);
    }
    .hero { padding: 40px 0; }
    .hero-list { margin-top: 1rem; }
    .section-title.text-start { text-align: center; }
    .why-title { margin-bottom: 1rem; }
    .process-step::before { display: none; }
}
@media (max-width: 575.98px) {
    .section-pad { padding: 45px 0; }
    .satisfaction-box { padding: 22px; }

    /* Hero: text on top, image below on mobile */
    .hero-image { margin-top: 1.5rem; }
    .hero-badge { position: static; margin-top: 14px; max-width: 100%; }

    /* Services: two cards side by side (col-6) on mobile */
    #services .row { --bs-gutter-x: .75rem; }
    #services .service-img { height: 110px; }
    #services .service-body { padding: 26px 12px 18px; }
    #services .service-body h5 { font-size: .92rem; }
    #services .service-body ul li { font-size: .72rem; margin-bottom: .35rem; }
    #services .service-more { font-size: .78rem; }

    /* About: stats 2 x 2 on mobile */
    .about-section .col-lg-3 { display: flex; flex-wrap: wrap; }
    .about-section .stat-item { flex: 0 0 50%; max-width: 50%; margin-bottom: 1rem; gap: 10px; padding-right: 8px; }
    .about-section .stat-ico { width: 40px; height: 40px; flex: 0 0 40px; font-size: 1.05rem; }
    .about-section .stat-num { font-size: .95rem; }
    .about-section .stat-label { font-size: .78rem; }

    /* Why Choose Us: two per row on mobile */
    .why-section .why-item { font-size: .82rem; gap: 10px; }
    .why-section .why-ico { flex: 0 0 auto; }

    /* Process: two per row on mobile */
    .process-step h6 { font-size: .9rem; }
    .process-step p { font-size: .75rem; }

    /* Service Areas: two cards side by side on mobile */
    .city-card h5 { font-size: .95rem; }
    .city-card p { font-size: .75rem; }
}

/* ===========================================================================
   INNER PAGES (about / services / service / city / location / area / contact)
   =========================================================================== */
.text-primary-blue { color: var(--blue) !important; }
.shadow-soft { box-shadow: 0 18px 45px rgba(15,29,74,.14); }
.service-more { color: var(--blue); font-weight: 600; font-size: .85rem; }
.service-more i { transition: transform .2s; }
.service-card:hover .service-more i { transform: translateX(4px); }

/* page hero band */
.page-hero {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; padding: 46px 0 40px;
}
.page-hero .breadcrumb { margin-bottom: .6rem; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: #d9e3ff; text-decoration: none; font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #9fb6ef; }
.page-hero-title { font-weight: 800; font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin: 0; }
.page-hero-sub { color: #dbe5ff; margin: .4rem 0 0; font-size: 1rem; }

/* generic blocks */
.block-title { font-weight: 700; font-size: 1.25rem; margin: 2rem 0 1rem; color: var(--ink); }
.block-title.mt-0 { margin-top: 0; }
.lead-text { font-size: 1.02rem; color: #475569; line-height: 1.8; }
.check-line { color: #334155; font-size: .92rem; }
.check-line i { color: var(--blue); margin-right: 8px; }

.offer-pill {
    background: #f3f7ff; border: 1px solid #e2eaff; border-radius: 10px;
    padding: .7rem 1rem; font-size: .9rem; font-weight: 500; color: #1e293b; height: 100%;
}
.offer-pill i { color: var(--blue); margin-right: 8px; }

/* mission box (about) */
.mission-box {
    background: #f3f7ff; border-left: 4px solid var(--blue);
    border-radius: 10px; padding: 1rem 1.2rem; margin-top: 1.4rem;
    display: flex; gap: 12px; align-items: center;
}
.mission-box i { font-size: 1.6rem; color: var(--blue); }

/* feature card (why choose) */
.feature-card {
    background: #fff; border-radius: 14px; padding: 1.6rem;
    box-shadow: 0 8px 30px rgba(15,29,74,.07);
    display: flex; align-items: center; gap: 16px; font-weight: 500;
    transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-ico {
    width: 52px; height: 52px; flex: 0 0 52px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; display: grid; place-items: center; font-size: 1.3rem;
}

/* city card */
.city-card {
    background: #fff; border-radius: 14px; padding: 2rem 1.6rem; text-align: center;
    box-shadow: 0 8px 30px rgba(15,29,74,.07); transition: transform .25s, box-shadow .25s;
}
.city-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,29,74,.14); }
.city-ico {
    width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
    background: #eaf0ff; color: var(--blue); display: grid; place-items: center; font-size: 1.7rem;
}
.city-card h5 { font-weight: 700; }

/* services overview rows */
.service-row { padding: 12px 0; }
.service-divider { margin: 3rem 0; border-top: 1px dashed #cbd5e1; }
.service-detail-img { position: relative; display: inline-block; width: 100%; }
.service-detail-badge {
    position: absolute; top: 16px; left: 16px;
    width: 50px; height: 50px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; display: grid; place-items: center; font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(29,78,216,.4);
}

/* sidebar */
.sidebar-card {
    background: #fff; border-radius: 14px; padding: 1.4rem;
    box-shadow: 0 8px 30px rgba(15,29,74,.07); margin-bottom: 1.4rem;
}
.sidebar-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin-bottom: .35rem; }
.sidebar-links li a {
    display: flex; align-items: center; gap: 8px;
    padding: .55rem .7rem; border-radius: 8px; text-decoration: none;
    color: #334155; font-size: .9rem; font-weight: 500; transition: .2s;
}
.sidebar-links li a:hover,
.sidebar-links li.active a { background: #eaf0ff; color: var(--blue); }
.sidebar-links li a i { color: var(--blue); }
.sidebar-links.plain li { display: flex; align-items: center; gap: 8px; padding: .4rem 0; font-size: .9rem; color: #334155; }

.sidebar-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; border-radius: 14px; padding: 1.6rem; text-align: center;
}
.sidebar-cta i { font-size: 1.8rem; }
.sidebar-cta h5 { font-weight: 700; margin: .6rem 0 .4rem; }
.sidebar-cta p { font-size: .88rem; color: #e0e8ff; }

/* area links / groups */
.area-group { margin-bottom: 2rem; }
.area-group-title {
    font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px; color: var(--ink);
}
.area-group-title i {
    width: 38px; height: 38px; border-radius: 9px; background: #eaf0ff;
    color: var(--blue); display: grid; place-items: center; font-size: 1.1rem;
}
.area-link {
    display: block; background: #fff; border: 1px solid #e7edf7; border-radius: 9px;
    padding: .6rem .8rem; font-size: .82rem; color: #334155; text-decoration: none;
    font-weight: 500; transition: .2s; height: 100%;
}
.area-link:hover { border-color: var(--blue); background: #f3f7ff; color: var(--blue); }
.area-link i { color: var(--blue); margin-right: 5px; }

.all-areas-box {
    background: #eef3fc; border-radius: 12px; padding: 1.2rem 1.4rem; margin-top: 1rem;
}
.all-areas-box h6 { font-weight: 700; margin-bottom: .4rem; }
.all-areas-box p { color: #475569; font-size: .9rem; }

.keywords-box {
    background: #f5f7fb; border-radius: 10px; padding: 1rem 1.2rem;
    font-size: .82rem; color: #64748b;
}
.keywords-box strong { color: #334155; }

/* CTA band */
.cta-band {
    background: var(--navy); color: #fff; padding: 50px 0; text-align: center;
}
.cta-band h3 { font-weight: 700; }
.cta-band p { color: #cbd5e1; margin-bottom: 1.4rem; }

/* contact page */
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-top: 1.4rem; }
.contact-ico {
    width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
    background: #eaf0ff; color: var(--blue); display: grid; place-items: center; font-size: 1.2rem;
}
.contact-line a { color: var(--blue); text-decoration: none; }
.contact-form-card {
    background: #fff; border-radius: 16px; padding: 2rem;
    box-shadow: 0 12px 40px rgba(15,29,74,.1);
}
.contact-form-card .form-control,
.contact-form-card .form-select { border-radius: 8px; padding: .6rem .8rem; }
.contact-form-card .form-label { font-weight: 500; font-size: .88rem; }
.form-note { font-size: .82rem; color: #64748b; }

/* footer extra columns */
.footer-col-title { color: #fff; font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links li a { font-size: .85rem; }

@media (max-width: 991.98px) {
    .page-hero { text-align: center; }
    .page-hero .breadcrumb { justify-content: center; }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
}
.gallery-filter {
    border: 1.5px solid #dbe3f3;
    background: #fff;
    color: var(--blue-dark);
    font-weight: 500;
    font-size: .85rem;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s ease;
}
.gallery-filter:hover { border-color: var(--blue); color: var(--blue); }
.gallery-filter.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(29,78,216,.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.gallery-card {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15,29,74,.1);
    background: #eef2fb;
    aspect-ratio: 4 / 3;
}
.gallery-card.is-hidden { display: none; }
.gallery-link { display: block; width: 100%; height: 100%; }
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.gallery-card:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(to top, rgba(15,29,74,.78), rgba(15,29,74,.05) 55%);
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.8rem; }
.gallery-overlay .gallery-name { font-weight: 600; font-size: .95rem; }

@media (max-width: 767.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}
@media (max-width: 419.98px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(8,14,38,.92);
    padding: 2rem;
}
.gallery-lightbox.open { display: flex; }
.glb-stage { margin: 0; max-width: 90vw; max-height: 86vh; text-align: center; }
.glb-stage img {
    max-width: 90vw;
    max-height: 78vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.glb-stage figcaption { color: #e7edff; margin-top: .9rem; font-weight: 500; }
.glb-close, .glb-nav {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: background .2s ease;
}
.glb-close:hover, .glb-nav:hover { background: rgba(255,255,255,.28); }
.glb-close {
    top: 1.2rem; right: 1.4rem;
    width: 44px; height: 44px;
    font-size: 1.6rem; line-height: 1;
}
.glb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    font-size: 1.4rem;
}
.glb-prev { left: 1.2rem; }
.glb-next { right: 1.2rem; }
@media (max-width: 575.98px) {
    .glb-nav { width: 42px; height: 42px; }
    .glb-prev { left: .5rem; }
    .glb-next { right: .5rem; }
}
