/* =============================================================
   services.css
   Scope: desktop/page-services.php only.
   All classes are prefixed with svc- so nothing leaks into
   home.css, contact.css, or any other desktop stylesheet.
   ============================================================= */


/* ─── HERO ─────────────────────────────────────────────────── */

.svc-hero {
    padding: 100px 80px;
}

.svc-hero__container {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    gap: 40px;
}

.svc-hero__left {
    max-width: 900px;
}

/* tag line with leading dash */
.svc-hero__tag {
    position: relative;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 50px;
    color: #666;
}

.svc-hero__tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #000;
    transform: translateY(-50%);
}

.svc-hero__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #555;
}

.svc-hero__desc {
    font-size: 18px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 40px;
}

/* stats row */
.svc-hero__stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.svc-hero__stat-number {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(90deg, #1159FF 0%, #43A047 34%, #FFCF2A 76%, #FF385C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.svc-hero__stat-label {
    font-size: 14px;
    color: #666;
}

/* CTA button */
.svc-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #1159FF;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.svc-hero__btn img {
    width: 18px;
    filter: brightness(0) invert(1);
}

.svc-hero__right img {
    width: 100%;
    display: block;
}


/* ─── TAB NAV ───────────────────────────────────────────────── */

.svc-tabs-section {
    /* no extra padding — tabs + divider handle spacing */
}

.svc-tabs__nav {
    display: flex;
    gap: 60px;
    padding: 20px 80px;
    position: relative;
}

.svc-tabs__tab {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.svc-tabs__tab span {
    font-size: 14px;
    color: #555;
}

.svc-tabs__tab--active span {
    font-weight: 600;
    color: #000;
}

/* icon toggle */
.svc-tabs__icon--active  { display: none; }
.svc-tabs__tab--active .svc-tabs__icon--active  { display: block; }
.svc-tabs__tab--active .svc-tabs__icon--inactive { display: none; }

/* blue underline indicator on active tab */
.svc-tabs__tab--active::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1159FF;
    z-index: 1;
}

/* divider line */
.svc-tabs__divider {
    height: 1px;
    background: #ddd;
}


/* ─── TAB PANELS ────────────────────────────────────────────── */

.svc-tabs__panel {
    display: none;
}

.svc-tabs__panel--active {
    display: block;
}


/* ─── SHARED TAG / TITLE / DESC (scoped to svc-) ────────────── */

.svc__tag {
    position: relative;
    padding-left: 46px;
    margin-bottom: 14px;
    color: #666;
    font-size: 20px;
    margin-top: 30px;
}

.svc__tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 2px;
    background: #000;
    transform: translateY(-50%);
}

.svc__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.25;
    color: #333;
    margin-bottom: 20px;
}

.svc__desc {
    font-size: 20px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 100px;
}


/* ─── STUDENTS PANEL ────────────────────────────────────────── */

.svc-students__body {
    padding: 60px 80px;
}

/* 3-column card grid */
.svc-students__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
}

/* individual card */
.svc-students__card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: left;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-students__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.svc-students__card img {
    width: 100%;
    display: block;
}

.svc-students__card-title {
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    color: #333;
}

.svc-students__card-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-top: 12px;
}


/* ─── INSTITUTES PANEL ──────────────────────────────────────── */

.svc-inst__wrapper {
    /* wrapper for both domestic + international blocks */
}

/* DOMESTIC — two-column layout */
.svc-inst__domestic {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: stretch;
    gap: 60px;
    padding: 60px 80px;
}

.svc-inst__domestic-logos {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 16px;
    align-content: space-between; 
    max-height: 400px;
}

.svc-inst__domestic-logos img:nth-child(-n+3) {
    grid-column: span 2;
}

.svc-inst__domestic-logos img:nth-child(n+4) {
    grid-column: span 3;
}

.svc-inst__domestic-logos img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

/* INTERNATIONAL */
.svc-inst__international {
    padding: 0 80px 60px;
}

/* 2×2 feature card grid */
.svc-inst__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 10px;
}

.svc-inst__feature-card {
    max-width: 750px;
    margin-bottom: 40px;
}

.svc-inst__feature-card img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.svc-inst__feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
    margin-bottom: 8px;
}

.svc-inst__feature-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}
