/* =====================================================
   HOME LANDING PAGE COMPACT OVERRIDES
   Applied only to Home/Index. The hero slider
   (.hero-banner) is intentionally NOT touched — only the
   sections that follow the hero are compacted.
   ===================================================== */

/* --- Generic section base (shared by most home sections) --- */
.section {
    padding: 36px 0 !important;
}

.section-header {
    margin-bottom: 22px !important;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 10px !important;
}

.section-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    max-width: 720px !important;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section-new {
    padding: 36px 0 !important;
}

.about-image-wrapper {
    max-width: 420px !important;
}

.about-experience-badge {
    padding: 10px 14px !important;
}

.experience-number {
    font-size: 1.8rem !important;
}

.experience-text {
    font-size: 0.78rem !important;
}

.about-content-wrapper {
    padding-left: 0 !important;
}

.about-label {
    margin-bottom: 10px !important;
    gap: 8px !important;
}

.about-label .label-text {
    font-size: 0.75rem !important;
    letter-spacing: 1.2px !important;
}

.about-label .label-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
}

.about-main-title {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem) !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
}

.about-tagline {
    font-size: 0.98rem !important;
    margin-bottom: 10px !important;
}

.about-description {
    margin-bottom: 12px !important;
}

.about-description p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
}

.about-highlights {
    gap: 6px 14px !important;
    margin-bottom: 14px !important;
}

.highlight-item {
    padding: 4px 0 !important;
    gap: 8px !important;
    font-size: 0.88rem !important;
}

.highlight-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.7rem !important;
}

.about-stats-row {
    gap: 14px !important;
    padding: 12px 0 !important;
    margin-bottom: 12px !important;
}

.about-stat-item .stat-value {
    font-size: 1.5rem !important;
}

.about-stat-item .stat-label {
    font-size: 0.75rem !important;
}

.about-cta {
    gap: 10px !important;
}

.btn-about-primary,
.btn-about-secondary {
    padding: 9px 20px !important;
    font-size: 0.9rem !important;
    gap: 8px !important;
}

/* =====================================================
   WHY CHOOSE SECTION
   ===================================================== */
.why-choose-section {
    padding: 36px 0 !important;
}

.why-choose-card,
.why-card,
.feature-box,
.why-choose-item {
    padding: 16px !important;
    border-radius: 14px !important;
}

.why-choose-section .fa,
.why-choose-section [class*="-icon"] i {
    font-size: 1.4rem !important;
}

/* =====================================================
   VISION & MISSION — premium editorial cards
   Light Vision vs Dark Mission for contrast, constrained
   width, decorative quote mark, clean pillar list.
   ===================================================== */
.vision-mission-section {
    padding: 44px 0 !important;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%) !important;
}

.vm-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 10px auto 0;
}

.vm-new-card {
    position: relative;
    border-radius: 20px;
    padding: 30px 28px 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-new-card:hover {
    transform: translateY(-5px);
}

/* ---- VISION: light card ---- */
.vm-new-card--vision {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.vm-new-card--vision:hover {
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

/* ---- MISSION: dark card ---- */
.vm-new-card--mission {
    background: linear-gradient(140deg, #0f172a 0%, #1e293b 60%, #312e81 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
    color: #e2e8f0;
    box-shadow: 0 12px 38px rgba(15, 23, 42, 0.25);
}

.vm-new-card--mission:hover {
    box-shadow: 0 22px 55px rgba(99, 102, 241, 0.35);
    border-color: rgba(165, 180, 252, 0.4);
}

/* Top accent bar intentionally hidden — design cleaner without it */
.vm-new-card__accent {
    display: none;
}

/* Large decorative quote glyph */
.vm-new-card::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    right: 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 10rem;
    line-height: 1;
    font-weight: 700;
    z-index: 0;
    pointer-events: none;
}

.vm-new-card--vision::before {
    color: rgba(59, 130, 246, 0.08);
}

.vm-new-card--mission::before {
    color: rgba(165, 180, 252, 0.12);
}

.vm-new-card > * {
    position: relative;
    z-index: 1;
}

/* Card head */
.vm-new-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.vm-new-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.vm-new-card--vision .vm-new-card__icon {
    background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.3);
}

.vm-new-card--mission .vm-new-card__icon {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
}

.vm-new-card__kicker {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.vm-new-card--vision .vm-new-card__kicker { color: #2563eb; }
.vm-new-card--mission .vm-new-card__kicker { color: #a5b4fc; }

.vm-new-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.18;
}

.vm-new-card--vision .vm-new-card__title { color: #0f172a; }
.vm-new-card--mission .vm-new-card__title { color: #ffffff; }

/* Statement (the big quote) */
.vm-new-card__statement {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.vm-new-card--vision .vm-new-card__statement { color: #0f172a; }
.vm-new-card--mission .vm-new-card__statement { color: #ffffff; }

.vm-new-card__desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.vm-new-card--vision .vm-new-card__desc { color: #475569; }
.vm-new-card--mission .vm-new-card__desc { color: #cbd5e1; }

/* Pillars list */
.vm-new-pillars {
    list-style: none;
    margin: auto 0 0;
    padding: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-new-card--vision .vm-new-pillars { border-top: 1px solid #eef2f6; }
.vm-new-card--mission .vm-new-pillars { border-top: 1px solid rgba(148, 163, 184, 0.18); }

.vm-new-pillars li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.vm-new-pillar__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.vm-new-card--vision .vm-new-pillar__icon {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.vm-new-card--mission .vm-new-pillar__icon {
    background: rgba(165, 180, 252, 0.12);
    color: #c7d2fe;
}

.vm-new-pillars li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vm-new-pillars strong {
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.3;
}

.vm-new-card--vision .vm-new-pillars strong { color: #0f172a; }
.vm-new-card--mission .vm-new-pillars strong { color: #ffffff; }

.vm-new-pillars span {
    font-size: 0.8rem;
    line-height: 1.45;
}

.vm-new-card--vision .vm-new-pillars span { color: #64748b; }
.vm-new-card--mission .vm-new-pillars span { color: #94a3b8; }

/* Responsive */
@media (max-width: 991px) {
    .vm-dual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vm-new-card {
        padding: 24px 22px 22px;
    }

    .vm-new-card::before {
        font-size: 7rem;
        top: -16px;
    }
}

@media (max-width: 576px) {
    .vm-new-card__head {
        gap: 10px;
    }
    .vm-new-card__icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
    .vm-new-card__title {
        font-size: 1.1rem;
    }
    .vm-new-card__statement {
        font-size: 1rem;
    }
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    padding: 36px 0 !important;
}

.service-card {
    padding: 18px !important;
    border-radius: 14px !important;
}

.service-card h3,
.service-card h4 {
    font-size: 1.05rem !important;
    margin-bottom: 6px !important;
}

.service-card p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.service-icon,
.services-section [class*="-icon"]:not(i) {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 10px !important;
}

.service-icon i,
.services-section [class*="-icon"] i {
    font-size: 1.2rem !important;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: 36px 0 !important;
}

.testimonial-slide {
    padding: 18px !important;
}

.testimonial-quote {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
}

.testimonial-avatar {
    width: 42px !important;
    height: 42px !important;
    font-size: 0.9rem !important;
}

.testimonial-info h5 {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
}

.testimonial-info p {
    font-size: 0.82rem !important;
    margin: 0 !important;
}

.slider-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
}

/* =====================================================
   CLIENTS SECTION
   ===================================================== */
.clients-section {
    padding: 30px 0 !important;
}

.client-logo-box {
    padding: 6px 14px !important;
}

.client-logo-box img {
    max-height: 42px !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
    .section,
    .about-section-new,
    .why-choose-section,
    .vision-mission-section,
    .services-section,
    .testimonials-section {
        padding: 28px 0 !important;
    }

    .clients-section {
        padding: 22px 0 !important;
    }
}

@media (max-width: 768px) {
    .section,
    .about-section-new,
    .why-choose-section,
    .vision-mission-section,
    .services-section,
    .testimonials-section {
        padding: 22px 0 !important;
    }

    .about-image-wrapper {
        margin: 0 auto !important;
    }

    .about-stats-row {
        flex-wrap: wrap !important;
    }
}