/* ═══════════════════════════════════════════════════════════════════
   آفاق الجدوى — UI Enhancements v2 | Premium Design Layer
   ═══════════════════════════════════════════════════════════════════ */

/* ── Section title animated underline ── */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0055b8, #38bdf8);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* ── Hero floating badge animation ── */
.google-floating-card {
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════
   STATS STRIP — PREMIUM
══════════════════════════════════════ */
.stat-num {
    background: linear-gradient(135deg, #0055b8 0%, #2575dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.7rem;
}
.stat-icon-wrap { transition: all 0.3s ease; }
.stat-item-box:hover .stat-icon-wrap {
    background: linear-gradient(135deg, #0055b8, #2575dc);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,85,184,0.25);
}
.stat-item-box:hover .stat-icon-wrap i { color: #ffffff; }
.stats-capsule-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
@media (max-width: 768px) {
    .stats-capsule-card {
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        padding: 18px 14px;
    }
    .stat-item-box:not(:last-child)::after { display: none; }
    .stat-num { font-size: 1.35rem; }
}

/* ══════════════════════════════════════
   SERVICE CARDS (all-services-grid)
══════════════════════════════════════ */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .all-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
    .all-services-grid { grid-template-columns: 1fr; gap: 16px; }
}

.svc-card {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(10,28,54,0.05);
    transition: all 0.38s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0055b8, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
    border-color: rgba(0,85,184,0.2);
    box-shadow: 0 20px 48px rgba(0,85,184,0.13), 0 4px 14px rgba(10,28,54,0.05);
    transform: translateY(-6px);
}

.svc-card-thumb { height: 200px; overflow: hidden; position: relative; }
.svc-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.svc-card:hover .svc-card-thumb img { transform: scale(1.07); }
.svc-card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}

.svc-card-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}
.svc-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}
.svc-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: #edf5ff;
    color: #0055b8;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.svc-card:hover .svc-icon {
    background: #0055b8;
    color: #ffffff;
    transform: scale(1.08) rotate(-5deg);
}
.svc-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0a1c36;
    line-height: 1.45;
    margin: 0;
}
.svc-card > .svc-card-body > p {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.75;
    margin: 0;
}

.svc-badge {
    display: inline-flex; align-items: center;
    font-size: 0.75rem; font-weight: 700;
    background: linear-gradient(135deg, #0055b8, #2575dc);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,85,184,0.3);
}
.svc-badge-neutral {
    display: inline-flex; align-items: center;
    font-size: 0.75rem; font-weight: 700;
    background: #edf5ff; color: #0055b8;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(0,85,184,0.18);
    white-space: nowrap;
}

.svc-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 7px;
}
.svc-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; color: #334155; font-weight: 500;
}
.svc-features li i {
    color: #10b981;
    font-size: 0.72rem;
    flex-shrink: 0;
    background: #ecfdf5;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.svc-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #edf5ff;
    color: #0055b8;
    font-size: 0.88rem; font-weight: 700;
    border-radius: 10px;
    border: 1px solid rgba(0,85,184,0.18);
    transition: all 0.3s ease;
    margin-top: auto;
}
.svc-btn:hover {
    background: #0055b8;
    color: #ffffff;
    border-color: #0055b8;
    transform: translateX(-3px);
}
.svc-btn i { font-size: 0.82rem; transition: transform 0.3s ease; }
.svc-btn:hover i { transform: translateX(-4px); }

/* ══════════════════════════════════════
   KPI STRIP
══════════════════════════════════════ */
.svc-kpi-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%) !important;
}
.service-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    text-align: center;
}
@media (max-width: 768px) {
    .service-kpi-strip { grid-template-columns: repeat(2,1fr); }
}
.service-kpi-card {
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fbff, #edf5ff);
    border: 1px solid rgba(0,85,184,0.1);
    transition: all 0.3s ease;
}
.service-kpi-card:hover {
    border-color: #0055b8;
    box-shadow: 0 6px 20px rgba(0,85,184,0.12);
    transform: translateY(-3px);
}
.service-kpi-num {
    font-size: 1.7rem; font-weight: 900;
    font-family: 'Alexandria', sans-serif;
    background: linear-gradient(135deg, #0055b8, #2575dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1; margin-bottom: 5px;
}
.service-kpi-label { font-size: 0.84rem; font-weight: 600; color: #64748b; }

/* ══════════════════════════════════════
   FEATURE CARDS (WHY US)
══════════════════════════════════════ */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .service-features-grid { grid-template-columns: 1fr; gap: 16px; }
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(10,28,54,0.05);
    transition: all 0.38s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background: linear-gradient(90deg, #0055b8, #38bdf8);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.feature-card:hover::before { width: 100%; }
.feature-card:hover {
    border-color: rgba(0,85,184,0.2);
    box-shadow: 0 16px 40px rgba(0,85,184,0.12);
    transform: translateY(-5px);
}
.feature-card-icon {
    width: 66px; height: 66px;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf5ff, #dbeafe);
    color: #0055b8;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 20px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 14px rgba(0,85,184,0.1);
}
.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, #0055b8, #2575dc);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0,85,184,0.3);
}
.feature-card h4 { font-size: 1.02rem; font-weight: 800; color: #0a1c36; margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: #64748b; line-height: 1.75; margin: 0; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.page-cta-section {
    padding: 45px 0 65px;
    background: transparent;
    position: relative;
}
.page-cta-section::before,
.page-cta-section::after {
    display: none !important;
}
.page-cta-box {
    background: linear-gradient(135deg, #0055b8 0%, #00316e 100%);
    border-radius: 20px;
    padding: 55px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    max-width: 1140px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 53, 115, 0.15);
}
.page-cta-box h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.4;
    font-family: var(--font-title, 'Alexandria', sans-serif);
}
.page-cta-box p {
    font-size: 1.05rem;
    color: #e0efff;
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-family: var(--font-text, 'Tajawal', sans-serif);
}
.cta-btn-whatsapp,
.page-cta-box .cta-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: #25d366;
    color: #ffffff !important;
    font-size: 1.02rem;
    font-weight: 800;
    font-family: var(--font-title, 'Alexandria', sans-serif);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
}
.cta-btn-whatsapp:hover,
.page-cta-box .cta-btn-white:hover {
    background: #20bd5a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}
.cta-btn-whatsapp i,
.page-cta-box .cta-btn-white i {
    font-size: 1.25rem;
    color: #ffffff !important;
}

/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
.testimonials-slider-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
    border-top: 1px solid rgba(0,85,184,0.08);
}

.test-slide-item {
    display: none;
    animation: testFadeIn 0.5s ease both;
}
.test-slide-item.active { display: block; }

@keyframes testFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.test-card {
    background: #ffffff;
    border: 1px solid rgba(0,85,184,0.1);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,85,184,0.07), 0 2px 8px rgba(10,28,54,0.04);
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    transition: all 0.35s ease;
}
.test-card:hover {
    box-shadow: 0 14px 42px rgba(0,85,184,0.12), 0 4px 14px rgba(10,28,54,0.06);
    transform: translateY(-3px);
}
.test-card-quote {
    position: absolute;
    top: 24px; left: 28px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #edf5ff, #dbeafe);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #0055b8; font-size: 1.1rem; opacity: 0.7;
}

.test-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 14px; }
.test-stars i { color: #f59e0b; font-size: 1rem; }

.test-text {
    font-size: 1.02rem; line-height: 1.9;
    color: #334155; margin-bottom: 24px;
    font-style: italic;
}

.test-author-row {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.test-avatar-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055b8, #2575dc);
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800;
    font-family: 'Alexandria', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,85,184,0.25);
}
.test-author-info { flex: 1; }
.test-author-info h3,
.test-author-info h5 { font-size: 0.97rem; font-weight: 800; color: #0a1c36; margin-bottom: 2px; }
.test-author-info span { font-size: 0.82rem; color: #64748b; display: block; line-height: 1.5; }
.test-city {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.78rem !important; color: #0055b8 !important;
    font-weight: 600 !important; margin-top: 3px;
}
.test-city i { font-size: 0.72rem; }
.test-google-badge {
    width: 36px; height: 36px;
    background: #ffffff; border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ea4335; font-size: 1rem;
    box-shadow: 0 1px 3px rgba(10,28,54,0.04);
    flex-shrink: 0;
}

.test-slider-nav {
    display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.test-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(0,85,184,0.2);
    border: none; cursor: pointer; transition: all 0.3s ease;
}
.test-dot.active {
    background: #0055b8; width: 26px; border-radius: 5px;
}

/* ══════════════════════════════════════
   FOOTER TOP ACCENT LINE
══════════════════════════════════════ */
.footer { position: relative; }
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #0055b8, #38bdf8, #0055b8, transparent);
    z-index: 1;
}

/* ══════════════════════════════════════
   SCROLL ENTRY ANIMATION
══════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   ABOUT SECTION — LUXURY REFINEMENT
══════════════════════════════════════ */
.about-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 50, 115, 0.16), 0 4px 16px rgba(10, 28, 54, 0.06);
    border: 1px solid rgba(0, 85, 184, 0.12);
}
.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-frame:hover img {
    transform: scale(1.04);
}
.about-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 36px rgba(0, 35, 75, 0.16);
    transition: all 0.35s ease;
    z-index: 2;
}
.about-float-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(0, 85, 184, 0.22);
}
.about-float-badge.badge-experience {
    top: 24px;
    right: 20px;
    animation: floatBadge 4.5s ease-in-out infinite;
}
.about-float-badge.badge-acceptance {
    bottom: 24px;
    left: 20px;
    animation: floatBadge 4.5s ease-in-out infinite 2s;
}
.about-float-badge .afb-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #edf5ff, #dbeafe);
    color: #0055b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.about-float-badge .afb-icon.green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #10b981;
}
.about-float-badge strong {
    font-size: 1.2rem;
    font-weight: 900;
    color: #0a1c36;
    display: block;
    line-height: 1.1;
    font-family: 'Alexandria', sans-serif;
}
.about-float-badge span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 640px) {
    .about-pillars-grid { grid-template-columns: 1fr; gap: 12px; }
}
.about-pillar-item {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(10, 28, 54, 0.03);
}
.about-pillar-item:hover {
    border-color: rgba(0, 85, 184, 0.3);
    background: #f8fbff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 85, 184, 0.09);
}
.about-pillar-item .pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #edf5ff, #e0effe);
    color: #0055b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.about-pillar-item:hover .pillar-icon {
    background: #0055b8;
    color: #ffffff;
    transform: scale(1.08) rotate(-5deg);
}
.about-pillar-item h4 {
    font-size: 0.94rem;
    font-weight: 800;
    color: #0a1c36;
    margin-bottom: 4px;
    line-height: 1.4;
}
.about-pillar-item p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════
   STUDY DETAIL CARDS (study-types)
══════════════════════════════════════ */
.study-detail-card {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(10, 28, 54, 0.04);
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.study-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0055b8, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.study-detail-card:hover::before { opacity: 1; }
.study-detail-card:hover {
    border-color: rgba(0, 85, 184, 0.25);
    box-shadow: 0 20px 48px rgba(0, 85, 184, 0.13), 0 4px 12px rgba(10, 28, 54, 0.04);
    transform: translateY(-6px);
}
.study-detail-card.featured {
    border-color: rgba(0, 85, 184, 0.35);
    box-shadow: 0 8px 24px rgba(0, 85, 184, 0.08);
}
.study-card-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
}
.study-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.study-detail-card:hover .study-card-thumb img {
    transform: scale(1.08);
}
.study-card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}
.study-card-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}
.study-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.study-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #edf5ff, #e0effe);
    color: #0055b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.study-detail-card:hover .study-icon-wrap {
    background: #0055b8;
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
}
.study-card-title-wrap h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a1c36;
    line-height: 1.4;
    margin: 0;
}
.study-type-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.73rem;
    font-weight: 700;
    background: #edf5ff;
    color: #0055b8;
    padding: 3px 10px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 85, 184, 0.16);
    margin-bottom: 6px;
}
.study-type-badge.highlight {
    background: linear-gradient(135deg, #0055b8, #2575dc);
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 85, 184, 0.25);
}
.study-intro {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}
.study-output-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #065f46;
    margin-top: auto;
}
.study-output-tag i {
    color: #10b981;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTOR CARDS (sectors-grid)
══════════════════════════════════════ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1024px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 580px) {
    .sectors-grid { grid-template-columns: 1fr; gap: 16px; }
}
.sector-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(10, 28, 54, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 50, 115, 0.2);
}
.sector-img-wrap {
    position: relative;
    height: 270px;
    overflow: hidden;
}
.sector-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.sector-card:hover .sector-img-wrap img {
    transform: scale(1.1);
}
.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 28, 54, 0.15) 0%, rgba(10, 28, 54, 0.82) 65%, rgba(0, 40, 95, 0.96) 100%);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    transition: background 0.35s ease;
}
.sector-card:hover .sector-overlay {
    background: linear-gradient(180deg, rgba(10, 28, 54, 0.1) 0%, rgba(0, 50, 120, 0.85) 60%, rgba(0, 30, 80, 0.98) 100%);
}
.sector-tag {
    align-self: flex-start;
    font-size: 0.73rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 10px;
}
.sector-overlay h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.35;
}
.sector-overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #38bdf8;
    transition: all 0.25s ease;
    text-decoration: none;
}
.sector-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.sector-card:hover .sector-link {
    color: #ffffff;
}
.sector-card:hover .sector-link i {
    transform: translateX(-4px);
}

/* ══════════════════════════════════════
   STAGES TIMELINE (how-we-work)
══════════════════════════════════════ */
.stage-item {
    transition: transform 0.35s ease;
}
.stage-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055b8, #2575dc);
    color: #ffffff;
    font-family: 'Alexandria', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 85, 184, 0.28);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.stage-number.final {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}
.stage-item:hover .stage-number {
    transform: scale(1.12);
}
.stage-body {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(10, 28, 54, 0.03);
}
.stage-item:hover .stage-body {
    border-color: rgba(0, 85, 184, 0.25);
    background: #fcfdff;
    box-shadow: 0 12px 32px rgba(0, 85, 184, 0.1);
    transform: translateX(-5px);
}

/* ══════════════════════════════════════
   CITIES COVERAGE (cities-coverage)
══════════════════════════════════════ */
.coverage-map-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 6px 22px rgba(10, 28, 54, 0.05);
    overflow: hidden;
}
.coverage-highlight-box {
    background: linear-gradient(145deg, #0a1c36 0%, #00367a 60%, #0055b8 100%);
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 35, 75, 0.22);
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
}
.coverage-highlight-box::after {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.cov-hl-num {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: 'Alexandria', sans-serif;
    color: #38bdf8;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}
.city-card-item {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.28s ease;
    box-shadow: 0 2px 6px rgba(10, 28, 54, 0.02);
}
.city-card-item:hover {
    border-color: #0055b8;
    background: #edf5ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 85, 184, 0.12);
}
.city-card-item .c-num {
    font-family: 'Alexandria', sans-serif;
    font-weight: 800;
    color: #0055b8;
    font-size: 0.95rem;
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON — PULSE
══════════════════════════════════════ */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}
.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: waPulse 2.2s infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.22); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   HIGH-PERFORMANCE & CLS ZERO-SHIFT SYSTEM (PageSpeed 95+)
══════════════════════════════════════════════════════════════ */
.logo {
    min-width: 160px;
    height: 52px;
}
.logo img {
    width: 160px !important;
    height: 52px !important;
    max-height: 52px !important;
    object-fit: contain !important;
    aspect-ratio: 160 / 52 !important;
}

/* Image Containers - Strictly reserve space before images load to achieve CLS = 0 */
.study-card-thumb {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 140px !important;
    background-color: #f1f5f9;
}
.study-card-thumb img {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.sector-img-wrap {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    min-height: 220px !important;
    background-color: #0b1a30;
}
.sector-img-wrap img {
    aspect-ratio: 4 / 3 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.about-img-frame {
    aspect-ratio: 3 / 4 !important;
    min-height: 460px !important;
    background-color: #f8fafc;
}
.about-img-frame img {
    aspect-ratio: 3 / 4 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.opp-img-wrap {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 190px !important;
    background-color: #f1f5f9;
}
.opp-img-wrap img {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Hero Slider Stability */
.hero-slider {
    min-height: 540px !important;
}

/* Font display swap override for smoother text appearance */
body, h1, h2, h3, h4, h5, h6, p, span, a, button {
    font-display: swap;
}

/* Explicit dimensions for GTranslate flag to prevent CLS */
.gtranslate_wrapper img,
.gt_float_switcher img,
img[src*="/flags/svg/"] {
    width: 24px !important;
    height: 16px !important;
    display: inline-block !important;
}



