/* ============================================================
   RESELL MODAL
   ============================================================ */
#resell-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#resell-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.resell-modal-box {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 44px 40px 36px;
    position: relative;
    box-shadow: 0 32px 72px rgba(0, 30, 68, 0.22);
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s ease;
}
#resell-modal-overlay.is-open .resell-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.resell-modal-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #001e44, #FE8900);
    border-radius: 18px 18px 0 0;
}
.resell-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.resell-modal-close:hover {
    color: #001e44;
    background: #f0f3f8;
}
.resell-modal-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #001e44;
    margin: 0 0 6px;
}
.resell-modal-sub {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 22px;
}
.resell-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 540px) {
    .resell-form-row { grid-template-columns: 1fr; }
    .resell-modal-box { padding: 36px 20px 28px; }
}
.resell-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.resell-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.resell-form-group label .req {
    color: #e53935;
}
.resell-form-control {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #d8dde8;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #222;
    background: #f8f9fc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
select.resell-form-control { cursor: pointer; }
.resell-form-control:focus {
    border-color: #001e44;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 30, 68, 0.08);
}
.resell-form-control.input-error {
    border-color: #e53935;
    background: #fff8f8;
}
.resell-err {
    font-size: 0.76rem;
    color: #e53935;
    margin-top: 3px;
    min-height: 14px;
}
.resell-submit-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #001e44, #003580);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    box-shadow: 0 6px 18px rgba(0, 30, 68, 0.22);
}
.resell-submit-btn:hover {
    background: linear-gradient(135deg, #FE8900, #e07a00);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(254, 137, 0, 0.3);
}

/* ── Resell success toast ── */
.resell-success-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #001e44;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(0,30,68,0.28);
    z-index: 999999;
    opacity: 1;
    transition: opacity 0.4s ease;
    white-space: nowrap;
}

/* ── Logo colour filter: converts white logo to #001e44 navy ── */
.logo-header,
.mobile-logo img {
    /* white → black → #001e44 (R:0 G:30 B:68) */
    filter: brightness(0) saturate(100%) invert(8%) sepia(64%) saturate(2600%) hue-rotate(200deg) brightness(90%);
}

/* === Homepage Blog Section === */

.idx-blog-sec {
    padding: 90px 0;
    background: #fff;
}

.idx-blog-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0f1d36;
    line-height: 1.25;
    margin: 12px 0 14px;
}

.idx-blog-sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* Card */
.idx-blog-card {
    background: #fff;
    border: 1.5px solid #e8eef8;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(26,60,110,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.idx-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.25);
}

/* Image */
.idx-blog-img-wrap {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.idx-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.idx-blog-card:hover .idx-blog-img-wrap img {
    transform: scale(1.07);
}

.idx-blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,56,0.35) 0%, transparent 55%);
    pointer-events: none;
}

.idx-blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}

/* Body */
.idx-blog-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.idx-blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.idx-blog-meta span {
    font-size: 12.5px;
    color: #9ca3af;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.idx-blog-meta i {
    color: #2563eb;
    font-size: 11px;
}

.idx-blog-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.idx-blog-heading a {
    color: #0f1d36;
    text-decoration: none;
    transition: color 0.2s;
}

.idx-blog-heading a:hover {
    color: #2563eb;
}

/* Button */
.idx-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s, color 0.25s;
    width: fit-content;
}

.idx-blog-btn i {
    font-size: 12px;
    transition: transform 0.25s;
}

.idx-blog-btn:hover {
    color: #1a3c6e;
}

.idx-blog-btn:hover i {
    transform: translateX(5px);
}

/* Featured card accent */
.idx-blog-card--featured {
    border-color: rgba(37,99,235,0.2);
    box-shadow: 0 6px 28px rgba(37,99,235,0.1);
}

.idx-blog-card--featured .idx-blog-img-wrap {
    height: 240px;
}

@media (max-width: 767px) {
    .idx-blog-sec { padding: 60px 0; }
    .idx-blog-img-wrap { height: 200px; }
}

/* === Trusted Developers / Brand Marquee === */

.dev-sec {
    padding: 80px 0 0;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8f9fb 100%);
    overflow: hidden;
}

.dev-heading {
    text-align: center;
    margin-bottom: 52px;
}

.dev-title {
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    color: #0f1d36;
    line-height: 1.25;
    margin: 12px 0 14px;
}

.dev-sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Marquee outer */
.dev-marquee-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 48px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.dev-marquee-wrap::-webkit-scrollbar {
    display: none;
}

.dev-marquee-wrap {
    scrollbar-width: none;
}

.dev-marquee-wrap.is-dragging {
    cursor: grabbing;
}

/* Scrolling track */
.dev-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Individual logo card */
.dev-logo-card {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    background: #fff;
    border: 1.5px solid #e8eef8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    box-shadow: 0 4px 18px rgba(26,60,110,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.dev-logo-card:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 16px 40px rgba(37,99,235,0.18);
    border-color: rgba(37,99,235,0.35);
}

.dev-logo-card img {
    max-width: 100%;
    max-height: 72px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0%) opacity(1);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.dev-logo-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

/* Fallback initial */
.dev-logo-fallback {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .dev-logo-card { width: 160px; height: 96px; padding: 16px 18px; }
    .dev-logo-card img { max-height: 56px; }
    .dev-track { gap: 14px; }
    .dev-sec { padding-top: 60px; }
}

/* === Premium Testimonials Section === */

.testi-sec {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f4ff 0%, #f8f9fb 60%, #eef2ff 100%);
    overflow: hidden;
}

/* Background orbs */
.testi-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
}
.testi-orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #bfdbfe, transparent);
    top: -80px; left: -100px;
}
.testi-orb-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #c7d2fe, transparent);
    bottom: -60px; right: -80px;
}

/* Heading */
.testi-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0f1d36;
    line-height: 1.2;
    margin: 12px 0 14px;
}
.testi-sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* Slider wrapper */
.testi-slider-wrap {
    position: relative;
    padding-bottom: 60px;
}

/* Card */
.testi-card {
    background: #fff;
    border: 1.5px solid rgba(37,99,235,0.1);
    border-radius: 22px;
    padding: 34px 30px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a3c6e, #2563eb);
    opacity: 0;
    transition: opacity 0.3s;
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.25);
}
.testi-card:hover::before {
    opacity: 1;
}

/* Quote icon */
.testi-card-quote {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(37,99,235,0.28);
}
.testi-card-quote i {
    color: #fff;
    font-size: 16px;
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 3px;
}
.testi-stars i {
    color: #f59e0b;
    font-size: 13px;
}

/* Review text */
.testi-card-text {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.85;
    flex: 1;
    margin: 0;
}

/* Footer: avatar + author */
.testi-card-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #f0f4ff;
    margin-top: auto;
}
.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--av-bg, #dbeafe);
    color: var(--av-color, #1d4ed8);
    font-size: 18px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(37,99,235,0.15);
}
.testi-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f1d36;
    margin: 0 0 2px;
}
.testi-role {
    font-size: 12.5px;
    color: #6b7280;
    font-weight: 500;
}

/* Controls */
.testi-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    margin-top: 36px;
}
.testi-nav-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(37,99,235,0.25);
    background: #fff;
    color: #1a3c6e;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}
.testi-nav-btn:hover {
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

/* Progress bar */
.testi-progress {
    flex: 1;
    max-width: 280px;
    height: 4px;
    background: #dce8ff;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.testi-progress .swiper-pagination-progressbar-fill {
    background: linear-gradient(90deg, #1a3c6e, #2563eb) !important;
    border-radius: 2px;
    height: 100%;
    transition: transform 0.5s ease !important;
}

@media (max-width: 767px) {
    .testi-sec { padding: 64px 0; }
    .testi-card { padding: 26px 22px 22px; }
    .testi-progress { max-width: 160px; }
}

/* === How We Work Section === */

.hww-sec {
    padding: 90px 0;
    background: #fff;
}

.hww-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0f1d36;
    line-height: 1.2;
    margin: 12px 0 0;
}

.hww-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid #dce8ff;
}

/* Cards row */
.hww-card {
    position: relative;
    background: #f8f9fb;
    border: 1.5px solid #e8eef8;
    border-radius: 20px;
    padding: 36px 28px 32px;
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    overflow: hidden;
    animation: aboutFadeUp 0.6s ease both;
    animation-delay: var(--hww-delay, 0s);
}
.hww-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.3);
    background: #fff;
}

/* Step number watermark */
.hww-step-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: rgba(37,99,235,0.06);
    letter-spacing: -2px;
    pointer-events: none;
    transition: color 0.28s;
}
.hww-card:hover .hww-step-num {
    color: rgba(37,99,235,0.11);
}

/* Icon */
.hww-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26,60,110,0.08), rgba(37,99,235,0.14));
    border: 1.5px solid rgba(37,99,235,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.28s, box-shadow 0.28s, transform 0.28s;
}
.hww-icon-wrap i {
    font-size: 22px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.28s;
}
.hww-card:hover .hww-icon-wrap {
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
    transform: scale(1.08);
}
.hww-card:hover .hww-icon-wrap i {
    -webkit-text-fill-color: #fff;
    filter: none;
}

/* Title & text */
.hww-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f1d36;
    margin-bottom: 10px;
    transition: color 0.25s;
}
.hww-card:hover .hww-card-title {
    color: #2563eb;
}
.hww-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

/* Connector arrow between cards (hidden on last) */
.hww-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #bdd0f5, #2563eb);
    z-index: 2;
}
.hww-connector::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #2563eb;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@media (max-width: 991px) {
    .hww-subtitle { padding-left: 0; border-left: none; padding-top: 0; }
    .hww-connector { display: none; }
}
@media (max-width: 767px) {
    .hww-sec { padding: 60px 0; }
}

/* === Premium About Us Page === */

/* Shared About Tag */
.about-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.about-tag-light {
    background: rgba(37,99,235,0.18);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.3);
}

/* Fade-up animation */
@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.about-fade-up {
    animation: aboutFadeUp 0.65s ease both;
}

/* ---- Section 1: Intro ---- */

.about-intro-sec {
    padding: 90px 0 80px;
    background: #fff;
    overflow: hidden;
}

.about-collage {
    position: relative;
    height: 520px;
    user-select: none;
}

.about-col-main {
    position: absolute;
    right: 0; top: 0;
    width: 68%; height: 94%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    z-index: 1;
}

.about-col-sm {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    border: 5px solid #fff;
    z-index: 2;
}

.about-col-sm-1 {
    left: 0; bottom: 0;
    width: 46%; height: 50%;
}

.about-col-sm-2 {
    left: 6%; top: 28px;
    width: 38%; height: 40%;
    z-index: 3;
}

.about-col-main img,
.about-col-sm img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.about-col-main:hover img,
.about-col-sm:hover img {
    transform: scale(1.07);
}

.about-exp-badge {
    position: absolute;
    bottom: 32px; right: 6px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(37,99,235,0.4);
    z-index: 4;
    min-width: 130px;
}

.about-exp-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.about-exp-txt {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-intro-content {
    padding-left: 20px;
}

.about-intro-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    color: #0f1d36;
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-intro-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

.about-feat-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 26px 0;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feat-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.about-feat-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f1d36;
    margin-bottom: 3px;
}

.about-feat-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.65;
}

/* Why-choose icon (SVG image variant) */
.about-why-icon-sm {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26,60,110,0.07), rgba(37,99,235,0.13));
    border: 1.5px solid rgba(37,99,235,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.25s, box-shadow 0.25s;
}
.about-why-icon-sm img {
    width: 24px; height: 24px;
    object-fit: contain;
}
.about-feat-item:hover .about-why-icon-sm {
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}
.about-feat-item:hover .about-why-icon-sm img {
    filter: brightness(0) invert(1);
}

/* Intro divider accent */
.about-intro-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #1a3c6e, #2563eb);
    border-radius: 2px;
    margin-bottom: 22px;
}

/* Stats row */
.about-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 28px 0 0;
    padding: 20px 28px;
    background: #f1f5ff;
    border-radius: 16px;
    border: 1.5px solid #dce8ff;
}
.about-stat {
    text-align: center;
    flex: 1;
}
.about-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-stat-num sup {
    font-size: 15px;
    font-weight: 800;
}
.about-stat-lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
.about-stat-sep {
    width: 1px;
    height: 44px;
    background: #c8d9f5;
    flex-shrink: 0;
}

/* CTA row */
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
    transition: transform 0.25s, box-shadow 0.25s;
    white-space: nowrap;
}
.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37,99,235,0.45);
    color: #fff;
}
.about-cta-btn i { transition: transform 0.25s; }
.about-cta-btn:hover i { transform: translateX(5px); }

.about-contact-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.about-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #1a3c6e;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1.5px solid #dce8ff;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.about-chip i {
    color: #2563eb;
    font-size: 12px;
    transition: color 0.22s;
}
.about-chip-phone:hover {
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.about-chip-phone:hover i { color: #fff; }

@media (max-width: 991px) {
    .about-intro-content { padding-left: 0; margin-top: 10px; }
    .about-collage { height: 420px; }
}

@media (max-width: 767px) {
    .about-stats-row { padding: 16px 16px; gap: 4px; }
    .about-stat-num { font-size: 22px; }
    .about-cta-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
    .about-collage { height: 300px; }
    .about-col-sm-2 { display: none; }
    .about-exp-badge { padding: 12px 16px; min-width: 100px; }
    .about-exp-num { font-size: 24px; }
    .about-stats-row { flex-wrap: wrap; gap: 12px; }
    .about-stat-sep { display: none; }
}

/* ---- Section 2: Mission / Vision / Values ---- */

.about-mvv-sec {
    padding: 90px 0;
    background: #f8f9fb;
}

.about-mvv-heading {
    text-align: center;
    margin-bottom: 52px;
}

.about-mvv-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-mvv-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.about-mvv-card {
    background: #fff;
    border-radius: 20px;
    padding: 42px 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
    overflow: hidden;
}

.about-mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(0,0,0,0.13);
    border-top-color: #2563eb;
}

.about-mvv-num {
    position: absolute;
    top: 16px; right: 22px;
    font-size: 58px;
    font-weight: 900;
    color: rgba(37,99,235,0.06);
    line-height: 1;
    pointer-events: none;
}

.about-mvv-icon {
    width: 82px; height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(37,99,235,0.12);
}

.about-mvv-card:hover .about-mvv-icon {
    transform: scale(1.12) rotate(6deg);
}

.about-mvv-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.about-mvv-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 12px;
}

.about-mvv-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* ---- Section 3: Why Choose Us ---- */

.about-why-sec {
    padding: 90px 0 100px;
    background: linear-gradient(135deg, #080f20 0%, #0d2150 50%, #080f20 100%);
    position: relative;
    overflow: hidden;
}

.about-why-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-why-glow-1 {
    width: 600px; height: 600px;
    top: -20%; right: -10%;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
}

.about-why-glow-2 {
    width: 400px; height: 400px;
    bottom: -10%; left: -5%;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
}

.about-why-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-why-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 0;
}

.about-why-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 26px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-why-card:hover {
    background: rgba(37,99,235,0.14);
    border-color: rgba(37,99,235,0.45);
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(37,99,235,0.22);
}

.about-why-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    border-radius: 14px;
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-why-card:hover .about-why-icon {
    transform: scale(1.12);
    background: rgba(37,99,235,0.35);
}

.about-why-icon img {
    width: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.about-why-card:hover .about-why-icon img {
    opacity: 1;
}

.about-why-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
    line-height: 1.3;
}

.about-why-content p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .about-why-sub { margin-top: 10px; }
}

/* === Premium Career Page === */

.career-sec {
    padding: 80px 0 100px;
    background: #f8f9fb;
}

.career-heading {
    text-align: center;
    margin-bottom: 56px;
}

.career-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.career-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 12px;
    line-height: 1.2;
}

.career-sub {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---- Job Cards / Accordion ---- */

.job-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* Active/open card gets accent border */
.job-card:has(.accordion-collapse.show) {
    border-color: #2563eb;
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
}

.job-card-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.job-card-btn:hover {
    background: #f0f6ff;
}

.job-card:has(.accordion-collapse.show) .job-card-btn {
    background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
}

.job-btn-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.job-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.job-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #0f1d36;
    margin-bottom: 6px;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.job-meta span {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta span i {
    font-size: 11px;
    color: #9ca3af;
}

.job-badge {
    background: #e0edff;
    color: #1d4ed8 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 10px;
    border-radius: 50px;
}

.job-toggle-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.job-card-btn .job-toggle-icon .fa-minus { display: none; }
.job-card-btn .job-toggle-icon .fa-plus  { display: flex; }

.job-card-btn:not(.collapsed) .job-toggle-icon .fa-plus  { display: none; }
.job-card-btn:not(.collapsed) .job-toggle-icon .fa-minus { display: flex; }

.job-card-btn:not(.collapsed) .job-toggle-icon {
    background: #2563eb;
    color: #fff;
    transform: rotate(0deg);
}

.job-body {
    padding: 0 28px 28px;
}

/* Key Info Highlights */
.job-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    background: #f8f9fb;
    border-radius: 12px;
}

.job-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 160px;
}

.job-highlight-item > i {
    font-size: 18px;
    flex-shrink: 0;
}

.jh-label, .jh-val {
    display: block;
    line-height: 1.4;
}

.jh-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

.jh-val {
    font-size: 13px;
    font-weight: 600;
    color: #0f1d36;
}

.job-roles-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f1d36;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.job-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-roles li {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.job-roles li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
}

/* ---- Apply Form (sticky) ---- */

.career-form-sticky {
    position: sticky;
    top: 100px;
}

.career-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.11);
    border-top: 4px solid #2563eb;
}

.career-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.career-form-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.career-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 6px;
}

.career-form-sub {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.career-form-card .prem-field {
    margin-bottom: 14px;
}

.career-form-card .prem-textarea {
    margin-bottom: 14px;
}

.career-file-group {
    margin-bottom: 14px;
}

.career-file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: #f9fafb;
    font-weight: 500;
}

.career-file-label:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
}

.career-file-label input[type="file"] {
    display: none;
}

/* Fade-up animation */
@keyframes careerFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.career-fade-up {
    animation: careerFadeUp 0.6s ease both;
}

/* Mobile */
@media (max-width: 991px) {
    .career-form-sticky { position: static; }
    .career-form-card { margin-top: 10px; }
}

@media (max-width: 575px) {
    .job-card-btn { padding: 18px 18px; }
    .job-body      { padding: 0 18px 22px; }
    .career-form-card { padding: 28px 20px 32px; }
    .job-num { width: 38px; height: 38px; font-size: 12px; }
    .job-highlight-item { min-width: 120px; }
}

/* === Premium Contact Section === */
.prem-contact-sec {
    padding: 80px 0 100px;
    background: #f8f9fb;
}

.prem-contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.prem-contact-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.prem-contact-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 12px;
    line-height: 1.2;
}

.prem-contact-sub {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Info Cards */
.prem-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.prem-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.prem-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--ic) 12%, transparent);
    color: var(--ic);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 2px solid color-mix(in srgb, var(--ic) 25%, transparent);
}

.prem-info-card:hover .prem-info-icon {
    background: var(--ic);
    color: #fff;
    transform: scale(1.1);
}

.prem-info-label {
    font-size: 16px;
    font-weight: 700;
    color: #0f1d36;
    margin-bottom: 8px;
}

.prem-info-val {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.prem-info-val:hover {
    color: #2563eb;
}

/* Map + Form layout */
.prem-contact-body {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 32px;
    align-items: stretch;
    min-height: 560px;
}

@media (max-width: 1100px) {
    .prem-contact-body {
        grid-template-columns: 1fr;
    }
}

.prem-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    min-height: 420px;
    position: relative;
}

.prem-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

/* Form card */
.prem-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 38px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 575px) {
    .prem-form-card {
        padding: 30px 22px;
    }
}

.prem-form-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 6px;
}

.prem-form-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 26px;
    line-height: 1.6;
}

.prem-field {
    position: relative;
}

.prem-field > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.prem-input {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 13px 16px 13px 42px;
    font-size: 14px;
    color: #0f1d36;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: inherit;
}

.prem-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
    background: #fff;
}

.prem-field:focus-within > i {
    color: #2563eb;
}

.prem-textarea {
    padding-left: 16px;
    min-height: 120px;
    resize: vertical;
}

.prem-submit-btn {
    width: 100%;
    padding: 15px 28px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    margin-top: 4px;
}

.prem-submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1a3c6e);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,99,235,0.35);
}

/* === Premium FAQ Page === */

.prem-faq-sec {
    padding: 80px 0 100px;
    background: #f8f9fb;
}

.prem-faq-heading {
    text-align: center;
    margin-bottom: 52px;
}

.prem-faq-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 12px;
    line-height: 1.2;
}

.prem-faq-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.prem-faq-sub a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-color: rgba(37,99,235,0.35);
    font-weight: 600;
    transition: color 0.3s ease;
}

.prem-faq-sub a:hover { color: #1a3c6e; }

/* FAQ Card */
.faq-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* Open card accent */
.faq-card:has(.accordion-collapse.show) {
    border-color: #2563eb;
    box-shadow: 0 8px 28px rgba(37,99,235,0.12);
}

/* Button */
.faq-card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-card-btn:hover {
    background: #f5f8ff;
}

.faq-card:has(.accordion-collapse.show) .faq-card-btn {
    background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
}

/* Q icon badge */
.faq-q-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
    transition: transform 0.3s ease;
}

.faq-card:has(.accordion-collapse.show) .faq-q-icon {
    transform: scale(1.08);
}

/* Question text */
.faq-q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #0f1d36;
    line-height: 1.4;
}

.faq-card:has(.accordion-collapse.show) .faq-q-text {
    color: #2563eb;
}

/* Toggle icon */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #2563eb;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.faq-card-btn .faq-toggle-icon .fa-minus { display: none; }
.faq-card-btn .faq-toggle-icon .fa-plus  { display: flex; }

.faq-card-btn:not(.collapsed) .faq-toggle-icon .fa-plus  { display: none; }
.faq-card-btn:not(.collapsed) .faq-toggle-icon .fa-minus { display: flex; }

.faq-card-btn:not(.collapsed) .faq-toggle-icon {
    background: #2563eb;
    color: #fff;
}

/* Body */
.faq-body {
    padding: 4px 24px 24px 80px;
}

.faq-body p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.85;
    margin: 0;
}

@media (max-width: 575px) {
    .faq-card-btn { padding: 18px 18px; gap: 12px; }
    .faq-body      { padding: 4px 18px 20px 18px; }
    .faq-q-text    { font-size: 14px; }
}

/* === Premium Blog Details Page === */

.prem-blog-details-sec {
    padding: 80px 0 100px;
    background: #f8f9fb;
}

/* Article wrapper */
.prem-article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}

/* Hero image */
.prem-article-img-wrap {
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: block;
}

.prem-article-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.prem-article-img-wrap:hover .prem-article-img {
    transform: scale(1.04);
}

/* Article inner padding */
.prem-article-meta,
.prem-article-title,
.prem-article-body,
.prem-article-tags {
    padding-left: 36px;
    padding-right: 36px;
}

/* Meta */
.prem-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

.prem-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.prem-article-meta i {
    color: #2563eb;
    font-size: 12px;
}

.prem-meta-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

/* Title */
.prem-article-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0f1d36;
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Body typography */
.prem-article-body {
    padding-bottom: 10px;
    color: #374151;
    font-size: 15.5px;
    line-height: 1.9;
}

.prem-article-body p {
    margin-bottom: 20px;
}

.prem-article-body h2,
.prem-article-body h3,
.prem-article-body h4 {
    color: #0f1d36;
    font-weight: 800;
    margin-top: 32px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.prem-article-body h2 { font-size: 24px; }
.prem-article-body h3 { font-size: 20px; }
.prem-article-body h4 { font-size: 17px; }

.prem-article-body ul,
.prem-article-body ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.prem-article-body li {
    margin-bottom: 8px;
    line-height: 1.75;
}

.prem-article-body strong {
    color: #0f1d36;
    font-weight: 700;
}

.prem-article-body a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-color: rgba(37,99,235,0.35);
    transition: color 0.3s ease;
}

.prem-article-body a:hover {
    color: #1a3c6e;
}

/* Tags */
.prem-article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 32px;
    border-top: 1px solid #f0f2f5;
    margin-top: 12px;
}

.prem-tags-label {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-right: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prem-tags-label i {
    color: #2563eb;
}

.prem-tag-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(37,99,235,0.2);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.prem-tag-pill:hover {
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    border-color: transparent;
}

/* Sidebar */
.prem-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.prem-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 26px 24px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.07);
    border-top: 4px solid #2563eb;
}

.prem-sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f2f5;
}

.prem-recent-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prem-recent-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.prem-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prem-recent-item:hover {
    transform: translateX(4px);
}

.prem-recent-img {
    flex-shrink: 0;
    width: 72px; height: 56px;
    border-radius: 10px;
    overflow: hidden;
}

.prem-recent-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.prem-recent-item:hover .prem-recent-img img {
    transform: scale(1.1);
}

.prem-recent-info {
    flex: 1;
    min-width: 0;
}

.prem-recent-date {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.prem-recent-date i {
    color: #2563eb;
    font-size: 10px;
}

.prem-recent-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f1d36;
    line-height: 1.45;
    margin: 0;
    /* clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.prem-recent-item:hover .prem-recent-title {
    color: #2563eb;
}

@media (max-width: 991px) {
    .prem-sidebar-sticky { position: static; }
}

@media (max-width: 767px) {
    .prem-article-img-wrap { height: 260px; }
    .prem-article-meta,
    .prem-article-title,
    .prem-article-body,
    .prem-article-tags { padding-left: 20px; padding-right: 20px; }
    .prem-article-title { font-size: 22px; }
}

/* === Premium Blog Section === */

.prem-blog-sec {
    padding: 80px 0 100px;
    background: #f8f9fb;
}

.prem-blog-heading {
    text-align: center;
    margin-bottom: 52px;
}

.prem-blog-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #0f1d36;
    margin-bottom: 12px;
    line-height: 1.2;
}

.prem-blog-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Card */
.prem-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.prem-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.13);
}

/* Featured badge */
.prem-blog-featured {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 4;
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

/* Image */
.prem-blog-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.prem-blog-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.prem-blog-card:hover .prem-blog-img {
    transform: scale(1.07);
}

.prem-blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,0.45) 0%, transparent 55%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Body */
.prem-blog-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prem-blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.prem-blog-meta span {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.prem-blog-meta span i {
    color: #2563eb;
    font-size: 11px;
}

.prem-blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f1d36;
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
    /* clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prem-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.prem-blog-card-title a:hover {
    color: #2563eb;
}

/* Read More button */
.prem-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid rgba(37,99,235,0.25);
    background: rgba(37,99,235,0.05);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.prem-blog-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.prem-blog-btn:hover {
    background: linear-gradient(135deg, #1a3c6e, #2563eb);
    border-color: transparent;
    color: #fff;
    transform: translateX(3px);
}

.prem-blog-btn:hover i {
    transform: translateX(4px);
}

/* Fade-up animation */
@keyframes blogFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

.blog-fade-up {
    animation: blogFadeUp 0.6s ease both;
}

.blog-fade-up:nth-child(2) { animation-delay: 0.1s; }
.blog-fade-up:nth-child(3) { animation-delay: 0.2s; }
.blog-fade-up:nth-child(4) { animation-delay: 0.3s; }
.blog-fade-up:nth-child(5) { animation-delay: 0.4s; }
.blog-fade-up:nth-child(6) { animation-delay: 0.5s; }

@media (max-width: 575px) {
    .prem-blog-img-wrap { height: 190px; }
    .prem-blog-body { padding: 20px 20px 24px; }
}

/* === Scrolled Navbar === */
.sticky-wrapper {
    transition: width 0.4s ease, margin 0.4s ease, border-radius 0.4s ease, top 0.4s ease;
}

.sticky-wrapper.scrolled {
    width: 92% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    border-radius: 50px !important;
    top: 10px !important;
    overflow: visible;
}

/* === Simple Hover Dropdown === */
.main-menu ul.sub-menu {
    display: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    z-index: 9999 !important;
}

.main-menu ul li:hover > ul.sub-menu {
    display: block !important;
    transform: none !important;
    z-index: 9999 !important;
    position: absolute !important;
}

/* Remove hover animation on top-level menu links */
.main-menu > ul > li > a {
    transition: none !important;
}

/* Navbar menu text – slightly bigger, semi-bold, premium look (desktop & mobile) */
.main-menu > ul > li > a {
    font-size: 15.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
}

.main-menu ul.sub-menu li a {
    font-size: 14.5px !important;
    font-weight: 600 !important;
}

.th-mobile-menu ul li a,
.th-mobile-menu ul li .sub-menu li a {
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
}

.main-menu > ul > li > a::after {
    transition: none !important;
    width: 0 !important;
}

.main-menu > ul > li > a:hover::after {
    width: 0 !important;
}

.main-menu ul li:has(.sub-menu) > a:hover::after,
.main-menu ul li.menu-item-has-children > a:hover::after {
    transform: none !important;
    transition: none !important;
}

/* ============================================================
   TOP SCROLL PROGRESS BAR
   ============================================================ */

/* Hide old circular scroll-to-top */
.scroll-top {
    display: none !important;
}

#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 99999;
    pointer-events: none;
    transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

#scroll-progress-bar:hover {
    height: 6px;
}

#scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        #b8892e 0%,
        #d4a855 20%,
        #f0c97a 45%,
        #d4a855 65%,
        #e05c2a 85%,
        #c0392b 100%
    );
    background-size: 200% 100%;
    border-radius: 0 4px 4px 0;
    box-shadow:
        0 0 8px  rgba(212, 168, 85, 0.9),
        0 0 18px rgba(212, 168, 85, 0.55),
        0 0 32px rgba(212, 168, 85, 0.25),
        0 2px 6px rgba(192, 57, 43, 0.4);
    transition: width 100ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: width;
    animation: progressGradientShift 3s linear infinite;
}

@keyframes progressGradientShift {
    0%   { background-position: 0%   100%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0%   100%; }
}

/* ============================================================
   PREMIUM HERO SECTION — Luxury Real Estate
   ============================================================ */

/* Container */
.th-container22 {
    position: relative;
    overflow: hidden;
}

/* Dark gradient overlay over video */
.th-container22 .hero-inner.hero-style2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 10, 20, 0.55) 0%,
        rgba(5, 10, 20, 0.72) 50%,
        rgba(5, 10, 20, 0.85) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Remove mask shape — eliminates bottom-left/right corner gaps */
.th-container22 .hero-inner.hero-style2 {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Video fills container */
.th-container22 .hero-inner.hero-style2 .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.9) saturate(1.1);
}

/* Prevent inline card iframes from eating mouse events (overlay handles clicks) */
.video-wrapper iframe {
    pointer-events: none;
}

/* ============================================================
   POPUP CONTACT FORM MODAL
   ============================================================ */

#cta-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#cta-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

#cta-popup-box {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    padding: 44px 38px 36px;
    position: relative;
    transform: translateY(36px) scale(0.97);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.35s ease;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
    max-height: 90vh;
    overflow-y: auto;
}

#cta-popup-overlay.is-open #cta-popup-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

#cta-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 4px 6px;
    z-index: 1;
}

#cta-popup-close:hover {
    color: #222;
    transform: rotate(90deg);
}

.cta-popup-accent-bar {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--theme-color2, #FE8900);
    margin-bottom: 14px;
}

.cta-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color, #001e44);
    margin-bottom: 6px;
    line-height: 1.3;
}

.cta-popup-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}

#cta-popup-form .cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

#cta-popup-form .cta-form-group {
    margin-bottom: 12px;
}

#cta-popup-form .cta-form-control {
    display: block;
    width: 100%;
    border: 1.5px solid #e2e2e2;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

#cta-popup-form .cta-form-control:focus {
    border-color: var(--theme-color, #001e44);
    background: #fff;
    outline: none;
}

#cta-popup-form textarea.cta-form-control {
    resize: vertical;
    min-height: 88px;
}

#cta-popup-submit {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: var(--theme-color, #001e44);
    color: #fff;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    letter-spacing: 0.3px;
    margin-top: 4px;
    font-family: inherit;
}

#cta-popup-submit:hover {
    background: var(--theme-color2, #FE8900);
    transform: translateY(-1px);
}

#cta-popup-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#cta-popup-feedback {
    display: none;
    text-align: center;
    padding: 18px 0 8px;
    font-size: 15px;
    font-weight: 500;
}

#cta-popup-feedback.success {
    color: #2e7d32;
}

#cta-popup-feedback.error {
    color: #c62828;
}

#cta-popup-feedback .cta-feedback-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 520px) {
    #cta-popup-box {
        padding: 36px 20px 28px;
    }
    .cta-popup-title {
        font-size: 19px;
    }
    #cta-popup-form .cta-form-row {
        grid-template-columns: 1fr;
    }
}

/* Content sits above overlay */
.th-container22 .hero-2-content {
    position: relative;
    z-index: 4;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Hero title — premium large typography */
.th-container22 .hero-title {
    font-size: clamp(42px, 6vw, 82px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -1.5px;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Subtitle tagline */
.th-container22 .toph4 {
    font-size: clamp(13px, 1.4vw, 17px) !important;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72) !important;
    margin-bottom: 42px !important;
    line-height: 1.6;
    animation: heroFadeUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Separator dots in tagline – golden accent */
.th-container22 .toph4 {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), #d4a855, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Glassmorphism Search Box === */
.th-container22 .hero-search-wrapper {
    background: rgba(255, 255, 255, 0.10) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 20px !important;
    padding: 22px 22px 22px 36px !important;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    animation: heroFadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.th-container22 .hero-search-wrapper:hover {
    box-shadow:
        0 12px 56px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Labels inside search */
.th-container22 .hero-search-wrapper .hero-search-group-wrapper .form-group label {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 11px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600 !important;
    margin-bottom: -4px !important;
}

/* Inputs & selects inside glass box */
.th-container22 .hero-search-wrapper .hero-search-group-wrapper .form-group .nice-select,
.th-container22 .hero-search-wrapper .hero-search-group-wrapper .form-group input,
.th-container22 .hero-search-wrapper .hero-search-group-wrapper .form-group .form-select {
    background: transparent !important;
    color: #ffffff !important;
    border: 0 !important;
    font-size: 15px !important;
    font-weight: 500;
    transition: color 0.25s ease;
}

.th-container22 .hero-search-wrapper .hero-search-group-wrapper .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* nice-select text colour */
.th-container22 .hero-search-wrapper .nice-select .current {
    color: rgba(255, 255, 255, 0.85);
}

.th-container22 .hero-search-wrapper .nice-select .list {
    background: rgba(12, 20, 38, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(16px);
}

.th-container22 .hero-search-wrapper .nice-select .option {
    color: rgba(255, 255, 255, 0.75);
}

.th-container22 .hero-search-wrapper .nice-select .option:hover,
.th-container22 .hero-search-wrapper .nice-select .option.selected {
    background: rgba(212, 168, 85, 0.18);
    color: #d4a855;
}

/* Dividers between form groups */
.th-container22 .hero-search-wrapper .hero-search-group-wrapper .form-group::after {
    background: rgba(255, 255, 255, 0.18) !important;
}

/* === Premium Search Button === */
.th-container22 .hero-search-wrapper .th-btn,
.th-container22 .hero-search-wrapper button[type="submit"] {
    background: linear-gradient(135deg, #d4a855 0%, #b8892e 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px;
    padding: 14px 32px !important;
    box-shadow: 0 4px 20px rgba(212, 168, 85, 0.45) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
    cursor: pointer;
}

.th-container22 .hero-search-wrapper .th-btn:hover,
.th-container22 .hero-search-wrapper button[type="submit"]:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(212, 168, 85, 0.60) !important;
    background: linear-gradient(135deg, #e0b86a 0%, #c4982e 100%) !important;
}

.th-container22 .hero-search-wrapper .th-btn:active,
.th-container22 .hero-search-wrapper button[type="submit"]:active {
    transform: scale(0.98) !important;
}

/* Fade-up animation keyframes */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 992px) {
    .th-container22 .hero-search-wrapper {
        border-radius: 16px !important;
        padding: 18px !important;
    }

    .th-container22 .hero-2-content {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .th-container22 .hero-title {
        letter-spacing: -0.5px;
    }

    .th-container22 .toph4 {
        letter-spacing: 2px;
    }

    .th-container22 .hero-search-wrapper {
        border-radius: 12px !important;
    }
}

/* ============================================================ */

/* === Enhanced Category Cards === */
.cat-card-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    background: #fff;
    border-radius: 18px;
    padding: 28px 14px 22px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cat-card-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--cat-color, #3B82F6), color-mix(in srgb, var(--cat-color, #3B82F6) 70%, #000));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 16px;
    z-index: 0;
}

.cat-card-pro:hover::after {
    opacity: 1;
}

.cat-card-pro:hover {
    transform: translateY(-7px);
    border-color: var(--cat-color, #3B82F6);
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.cat-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6ff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    transition: background 0.35s ease;
    border: 2px solid #eaedff;
}

.cat-card-icon img {
    width: 36px;
    height: 36px;
    transition: filter 0.35s ease;
}

.cat-card-pro:hover .cat-card-icon {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
}

.cat-card-pro:hover .cat-card-icon img {
    filter: invert(1) brightness(2);
}

.cat-card-count {
    position: absolute;
    top: 13px;
    right: 13px;
    background: var(--cat-color, #3B82F6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    line-height: 1.5;
    z-index: 2;
    transition: background 0.35s ease;
    letter-spacing: 0.3px;
}

.cat-card-pro:hover .cat-card-count {
    background: rgba(255,255,255,0.25);
}

.cat-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color, #1a1a2e);
    margin: 0 0 5px;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
    line-height: 1.3;
}

.cat-card-desc {
    font-size: 12px;
    color: #888;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
    line-height: 1.4;
}

.cat-card-pro:hover .cat-card-title,
.cat-card-pro:hover .cat-card-desc {
    color: #fff;
}

.cat-card-arrow {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    font-size: 11px;
    color: var(--cat-color, #3B82F6);
}

.cat-card-pro:hover .cat-card-arrow {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateX(3px);
}

/* Mobile: clip video slider so no adjacent slide peeks in */
@media (max-width: 575.98px) {
    .video-slider-container {
        padding: 0 !important;
        overflow: hidden !important;
    }
}

/* ============================================================
   MOBILE NAVBAR — Slimmer height on small screens
   ============================================================ */
@media (max-width: 991.98px) {
    .sticky-wrapper .menu-area {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .sticky-wrapper .menu-area .row {
        --bs-gutter-y: 0 !important;
    }

    .logo-header {
        width: 100px !important;
    }

    /* Hamburger button — reduce padding */
    .th-menu-toggle {
        padding: 4px 8px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 575.98px) {
    .sticky-wrapper .menu-area {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .logo-header {
        width: 78px !important;
    }
}
