@font-face {
    font-family: 'Din Pro Font';
    src: url('https://srhu.edu.in/wp-content/uploads/fonts/dinpro_light.woff2')
        format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Din Pro Font';
    src: url('https://srhu.edu.in/wp-content/uploads/fonts/dinpro.woff2')
        format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {

    font-family: 'Din Pro Font';
    src: url('https://srhu.edu.in/wp-content/uploads/fonts/dinpro.woff2')
        format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Din Pro Font';
    src: url('https://srhu.edu.in/wp-content/uploads/fonts/dinpro_bold.woff2')
        format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Din Pro Font';
    src: url('https://srhu.edu.in/wp-content/uploads/fonts/dinpro_black.woff2')
        format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --header-h: 130px;

    --srhu-navy: #1d3c71;
    --srhu-navy-light: #163366;
    --srhu-gold: #c9963a;
    --srhu-gold-light: #e8b55a;
    --srhu-bg: #f5f7fb;
    --srhu-border: #dde3ef;
    --srhu-muted: #6b7a99;
    --srhu-white: #ffffff;
    --font-display: 'Din Pro Font';

    --font-body: 'Din Pro Font';

    --color-1: #0053e4;
    --color-2: #db52d7;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    color: var(--srhu-navy);
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

a {
    text-decoration: none;
}
.btn-new {
    background: var(--color-1);
    background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
    color: var(--srhu-white);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 3px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}
.btn-new:hover{
    background: var(--color-2);
    background: linear-gradient(90deg, var(--color-2) 0%, var(--color-1) 100%);
    color: var(--srhu-white);
}
.btn-new.btn-sm {
    font-size: 14px;
    letter-spacing: 0.05rem;
}
.srhu-title {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}
.srhu-title.dark {
    color: var(--srhu-navy);
}

.srhu-navbar {
    background: var(--srhu-white);
    border-bottom: 1px solid var(--srhu-border);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 2px 14px rgba(13, 33, 69, 0.07);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.srhu-navbar .srhu-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.srhu-navbar .srhu-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--srhu-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.srhu-navbar .srhu-logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--srhu-navy);
}

.srhu-navbar .srhu-logo-text small {
    font-size: 0.67rem;
    color: var(--srhu-muted);
    letter-spacing: 0.2px;
}

.srhu-navbar .srhu-nav-link {
    color: var(--srhu-navy) !important;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 20px 13px !important;
    position: relative;
    transition: color 0.2s;
}

.srhu-navbar .srhu-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 3px;
    background: var(--srhu-gold);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.srhu-navbar .srhu-nav-link:hover,
.srhu-navbar .srhu-nav-link.srhu-active {
    color: var(--srhu-gold) !important;
}

.srhu-navbar .srhu-nav-link:hover::after,
.srhu-navbar .srhu-nav-link.srhu-active::after {
    transform: scaleX(1);
}

.srhu-navbar .srhu-nav-cta {
    background: var(--srhu-navy);
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 18px !important;
    border-radius: 4px;
    margin-left: 8px;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.srhu-navbar .srhu-nav-cta:hover {
    background: var(--srhu-gold) !important;
}

.srhu-navbar .srhu-nav-cta::after {
    display: none;
}

.srhu-navbar .navbar-toggler {
    border: 1px solid var(--srhu-border);
}

.srhu-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.admin-bar .srhu-hero-slider .srhu-slide {
    height: calc(100vh - var(--header-h) - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .srhu-hero-slider .srhu-slide {
        height: calc(55vw);
    }
}

.srhu-hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    display: block;
    width: 100%;
}

.srhu-hero-slider .carousel-item {
    transition: opacity 0.8s ease-in-out !important;

}

.srhu-hero-slider.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: none !important;
}

.srhu-hero-slider.carousel-fade .carousel-item.active,
.srhu-hero-slider.carousel-fade .carousel-item-next.carousel-item-start,
.srhu-hero-slider.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transform: none !important;
}

.srhu-hero-slider .srhu-slide {
    position: relative;
    height: calc(100vh - var(--header-h));
    min-height: 420px;
    max-height: 700px;
    display: flex;
    align-items: center;
}

.srhu-hero-slider .srhu-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.srhu-hero-slider .carousel-item.active .srhu-slide-bg {
    transform: scale(1);
}

.srhu-hero-slider .srhu-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13, 33, 69, 0.9) 0%,
        rgba(13, 33, 69, 0.55) 50%,
        rgba(13, 33, 69, 0.08) 100%
    );
}

.srhu-hero-slider .srhu-slide-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 60px 0;
}

.srhu-hero-slider .srhu-slide-tag {
    display: inline-block;
    background: var(--srhu-gold);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.srhu-hero-slider .srhu-slide-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.srhu-hero-slider .srhu-slide-title em {
    color: var(--srhu-gold-light);
    font-style: normal;
}

.srhu-hero-slider .srhu-slide-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 430px;
}

.srhu-hero-slider .srhu-slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.srhu-hero-slider .srhu-btn-primary {
    background: var(--srhu-gold);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 4px;
    border: 2px solid var(--srhu-gold);
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.srhu-hero-slider .srhu-btn-primary:hover {
    background: transparent;
    color: var(--srhu-gold-light);
    border-color: var(--srhu-gold-light);
}

.srhu-hero-slider .srhu-btn-outline {
    background: transparent;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.srhu-hero-slider .srhu-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.srhu-hero-slider .srhu-stat-badges {
    position: absolute;
    right: 40px;
    bottom: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srhu-hero-slider .srhu-stat-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px 18px;
    color: #fff;
    text-align: center;
    min-width: 112px;
}

.srhu-hero-slider .srhu-stat-badge .badge-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--srhu-gold-light);
    line-height: 1;
}

.srhu-hero-slider .srhu-stat-badge .badge-label {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    line-height: 1.3;
}

.srhu-hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition:
        width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        transform 0.2s ease;
    margin: 0 5px;
    cursor: pointer;
}

.srhu-hero-slider .carousel-indicators button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.srhu-hero-slider .carousel-indicators button.active {
    background: var(--srhu-gold);
    width: 32px;
    border-radius: 4px;
}

.srhu-hero-slider .carousel-control-prev,
.srhu-hero-slider .carousel-control-next {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
    backdrop-filter: blur(6px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.srhu-hero-slider .carousel-control-prev {
    left: 20px;
}

.srhu-hero-slider .carousel-control-next {
    right: 20px;
}

.srhu-hero-slider .carousel-control-prev:hover,
.srhu-hero-slider .carousel-control-next:hover {
    background: var(--srhu-gold);
    border-color: var(--srhu-gold);
    transform: translateY(-50%) scale(1.08);
}

.srhu-hero-slider .carousel-control-prev-icon,
.srhu-hero-slider .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .srhu-hero-slider .srhu-slide {
        min-height: 380px;
    }

    .srhu-hero-slider .srhu-slide-content {
        padding: 48px 0 64px;
    }

    .srhu-hero-slider .srhu-stat-badges {
        display: none;
    }
}

.srhu-tagline {
    background: var(--srhu-white);
    padding: 56px 0;

}

.srhu-tagline .srhu-tag-left {
    padding-right: 52px;
    position: relative;

    text-align: center;
}
.srhu-tagline .srhu-tag-left:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-1), var(--color-2));
}

.srhu-tagline .srhu-tag-left img {
    max-width: 300px;
    margin-bottom: 20px;
}

.srhu-tagline .srhu-hashtag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--srhu-navy);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.srhu-tagline .srhu-main-headline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--srhu-navy);
    line-height: 1.2;
    margin: 0;
}

.srhu-tagline .srhu-tag-right {
    padding-left: 52px;
}

.srhu-tagline .srhu-tag-para {
    font-size: 0.93rem;
    color: var(--srhu-navy);
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.srhu-tagline .srhu-tag-para + .srhu-tag-para {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .srhu-tagline .srhu-tag-left {
        border-right: none;
        padding-right: 0;

        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .srhu-tagline .srhu-tag-right {
        padding-left: 0;
    }
}

.srhu-why {
    background: var(--srhu-navy);
    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.srhu-why .srhu-why-header {
    padding: 36px 0 28px;
}

.srhu-stats-grid {
    border: 0px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 36px;
}

.srhu-stat-cell {
    padding: 44px 28px;
    text-align: center;
}

.srhu-stat-cell {
    padding: 40px 24px;
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.25);
    min-height: 170px;
    height: 100%;
}

.srhu-stats-row-top .col-md-3:last-child .srhu-stat-cell,
.srhu-stats-row-bot .col-md-3:last-child .srhu-stat-cell {
    border-right: none;
}

.srhu-stats-row-top .srhu-stat-cell {
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.srhu-stat-num {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.srhu-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 12px;
    line-height: 1.55;
}

@media (max-width: 767px) {
    .srhu-stat-cell {
        padding: 28px 14px;
        min-height: auto;
    }

    .srhu-stat-num {
        font-size: 2rem;
    }

    .srhu-stats-row-top .col-md-3:nth-child(2n) .srhu-stat-cell,
    .srhu-stats-row-bot .col-md-3:nth-child(2n) .srhu-stat-cell {
        border-right: none;
    }
    .srhu-stats-row-top .col-md-3:nth-child(odd) .srhu-stat-cell,
    .srhu-stats-row-bot .col-md-3:nth-child(odd) .srhu-stat-cell {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }

    .srhu-stats-row-top .col-md-3:nth-child(1) .srhu-stat-cell,
    .srhu-stats-row-top .col-md-3:nth-child(2) .srhu-stat-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }
    .srhu-stat-cell {

        border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    }
}

.srhu-path {
    background: #fff;
    padding: 0;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: stretch;
}

.srhu-path .srhu-path-left {
    padding: 56px 52px 56px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.srhu-path .srhu-path-divider {
    width: 42px;
    height: 3px;
    background: var(--srhu-gold);
    margin: 16px 0 22px;
}

.srhu-path .srhu-path-desc {
    color: var(--srhu-navy);
    line-height: 1.8;
    margin-bottom: 20px;
}

.srhu-path .srhu-path-bold {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--srhu-navy);
    line-height: 1.6;
    margin: 14px 0 18px;
}

.srhu-path .srhu-path-philosophy {
    font-size: 0.88rem;
    color: var(--srhu-navy);
    line-height: 1.85;
}

.srhu-path .srhu-path-philosophy .gold-word {
    color: var(--srhu-gold);

    font-weight: 600;
}

.srhu-path .srhu-path-philosophy .blue-word {
    color: var(--srhu-navy);
    font-style: italic;
    font-weight: 600;
}

.srhu-path .srhu-path-right {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    padding: 0;
}

.srhu-path .srhu-path-bg {
    position: absolute;
    inset: 0;
    background: url('https://srhu.edu.in/wp-content/uploads/2026/05/Life-ka%20(1).webp') center
        center / cover no-repeat;
}

.srhu-path .srhu-path-bg::before {
    content: '';
    position: absolute;
    inset: 0;

}

.srhu-path .srhu-compass-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.srhu-path .srhu-compass-ring {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.srhu-path .srhu-compass-ring::before,
.srhu-path .srhu-compass-ring::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.55);
}

.srhu-path .srhu-compass-ring::before {
    width: 2px;
    height: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.srhu-path .srhu-compass-ring::after {
    height: 2px;
    width: 200px;
    top: 50%;
    transform: translateY(-50%);
}

.srhu-path .srhu-compass-label {
    text-align: center;
    z-index: 1;
    position: relative;
}

.srhu-path .srhu-compass-label span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.srhu-path-steps {
    background: #fff;
    padding: 32px 0 56px;
}

.srhu-steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.srhu-step-col {
    flex: 1;
    max-width: 350px;
    min-width: 180px;
    padding-top: 24px;

}

.srhu-step-card {
    border-radius: 14px;
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    height: 100%;
}

.srhu-step-card.step-blue {
    background: #eef2fb;
}

.srhu-step-card.step-gold {
    background: #fdf6ea;
}

.srhu-step-card.step-green {
    background: #fadff9;
}

.srhu-step-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    z-index: 2;
}

.step-blue .srhu-step-badge {
    background: var(--srhu-navy);
}

.step-gold .srhu-step-badge {
    background: var(--srhu-gold);
}

.step-green .srhu-step-badge {
    background: var(--color-2);
}

.srhu-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.srhu-step-icon .inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.5rem;
    color: #fff;
}

.step-blue .srhu-step-icon .inner {
    color: #2d4fa1;
    background: #eef2fb;
}

.step-gold .srhu-step-icon .inner {
    color: var(--srhu-gold);
    background: #fdf6ea;
}

.step-green .srhu-step-icon .inner {
    color: var(--color-2);
    background: #fadff9;
}

.srhu-step-body {
    flex: 1;
}

.srhu-step-body h5 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-blue .srhu-step-body h5 {
    color: var(--srhu-navy);
}

.step-gold .srhu-step-body h5 {
    color: var(--srhu-gold);
}

.step-green .srhu-step-body h5 {
    color: var(--color-2);
}

.srhu-step-body p {
    font-size: 0.8rem;
    color: #4a5a7a;
    line-height: 1.65;
    margin: 0;
}

.srhu-steps-row {
    position: relative;
}

.srhu-step-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;

    flex-shrink: 0;
    width: 130px;
    margin-left: -22px;
    margin-right: -22px;
    position: relative;
    z-index: 5;
}

.srhu-step-arrow-wrap img {
    width: 130px;
    height: auto;
    display: block;
}
.srhu-step-arrow-wrap img.img-pink {
    filter: brightness(0) saturate(100%) invert(53%) sepia(77%) saturate(748%)
        hue-rotate(287deg) brightness(96%) contrast(92%);
}
@media (max-width: 767px) {
    .srhu-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .srhu-step-arrow-wrap {
        display: none;
    }

    .srhu-step-col {
        max-width: 100%;
        width: 100%;
    }
}

.srhu-schools {
    background: #f8f9fc;
    padding: 48px 0 56px;
}

.srhu-school-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 8px;
}

.srhu-school-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    color: #fff;
    transition:
        opacity 0.2s,
        box-shadow 0.2s;
    letter-spacing: 0.2px;
}

.srhu-school-tab:hover {
    opacity: 0.88;
}

.srhu-school-tab.stab-navy {
    background: var(--srhu-navy);
}

.srhu-school-tab.stab-red {
    background: var(--color-2);
}

.srhu-school-tab.stab-gold {
    background: #b8862e;
}

.srhu-school-tab.active {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.srhu-school-tab i {
    font-size: 1.1rem;
}

.srhu-schools-body {
    display: flex;
    gap: 0;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
}

.srhu-schools-left {
    flex-shrink: 0;
    width: 350px;
    background: var(--srhu-navy);
    padding: 36px 28px 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    border-radius: 15px;
}

.srhu-schools-left::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, 0.06);
}

.srhu-schools-left::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
}
.srhu-schools-left .sl-btn,
.srhu-schools-left .sl-top {
    position: relative;
    z-index: 1;
    text-align: center;
}

.srhu-schools-left .sl-num {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
}

.srhu-schools-left .sl-word {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 16px;
}

.srhu-schools-left .sl-divider {
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

.srhu-schools-left .sl-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.srhu-schools-right {
    flex: 1;
    min-width: 0;

    padding: 0 0px 0 24px;
}

.srhu-schools-right .sc-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.srhu-sc-card {
    flex: 1;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--srhu-border);
    transition:
        box-shadow 0.22s,
        transform 0.22s;
    position: relative;
    margin: 1px;
}

.srhu-sc-photo {
    height: 260px;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.srhu-sc-icon {
    position: absolute;
    bottom: -25px;
    left: 16px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--srhu-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--srhu-navy);
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.srhu-sc-body {
    padding: 28px 14px 14px;
}

.srhu-sc-body .sc-name {
    font-size: 21px;
    font-weight: 700;
    color: var(--srhu-navy);
    line-height: 1.35;
    margin-bottom: 10px;
}

.srhu-sc-body a {
    font-size: 0.8rem;
    color: var(--srhu-navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.2s;
}

.srhu-sc-body a:hover {
    color: var(--srhu-gold);
}

.srhu-school-panel {
    display: none;
}

.srhu-school-panel.active {
    display: block;
}
.srhu-schools-right .swiper-horizontal {
    padding-bottom: 50px;
    padding-left: 1px;
    padding-right: 5px;
    --swiper-pagination-color: var(--srhu-navy);
}
@media (max-width: 991px) {
    .srhu-schools-body {
        flex-direction: column;
    }

    .srhu-schools-left {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        padding: 24px;
    }

    .srhu-schools-left .sl-num {
        font-size: 3.5rem;
    }

    .srhu-schools-left .sl-word {
        font-size: 1.5rem;
    }

    .srhu-schools-left .sl-btn {
        margin-top: 0;
    }

    .srhu-schools-right {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .srhu-sc-photo {
        height: 170px;
    }

    .srhu-schools-right .sc-row {
        flex-wrap: wrap;
    }

    .srhu-sc-card {
        min-width: calc(50% - 6px);
    }
}

.srhu-centres-section {
    background: #fdf5f5;
    padding: 44px 0 48px;
    border-top: 1px solid #f0dede;
    border-bottom: 1px solid #f0dede;
}

.srhu-centres-section .srhu-block-title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: #b5303d;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.srhu-centres-grid {
    display: flex;
    align-items: stretch;
}

.srhu-centre-cell {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-right: 1px solid #e2c8c8;
    transition: background 0.18s;
}

.srhu-centre-cell:last-child {
    border-right: none;
}

.srhu-centre-cell:hover {
    background: rgba(181, 48, 61, 0.04);
}

.srhu-centre-cell .cc-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--srhu-navy);
    line-height: 1;
}

.srhu-centre-cell .cc-text {
    font-size: 0.78rem;
    color: #2a3a5a;
    line-height: 1.55;
    font-weight: 500;
}

.srhu-labs-section {
    background: #fefcf5;
    padding: 44px 0 48px;
    border-bottom: 1px solid #ede8d0;
}

.srhu-labs-section .srhu-block-title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: #9e6f00;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.srhu-labs-grid {
    display: flex;
    align-items: stretch;
}

.srhu-lab-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px 20px;
    border-right: 1px solid #e8dfa8;
    transition: background 0.18s;
}

.srhu-lab-cell:last-child {
    border-right: none;
}

.srhu-lab-cell:hover {
    background: rgba(158, 111, 0, 0.04);
}

.srhu-lab-cell .lc-icon {
    font-size: 2rem;
    color: var(--srhu-navy);
    margin-bottom: 12px;
    line-height: 1;
}

.srhu-lab-cell .lc-label {
    font-size: 0.73rem;
    color: #2a3a5a;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 991px) {
    .srhu-centres-grid {
        flex-wrap: wrap;
    }

    .srhu-centre-cell {
        flex: 0 0 50%;
        border-bottom: 1px solid #e2c8c8;
    }

    .srhu-centre-cell:nth-child(2n) {
        border-right: none;
    }

    .srhu-labs-grid {
        flex-wrap: wrap;
    }

    .srhu-lab-cell {
        flex: 0 0 33.333%;
        border-bottom: 1px solid #e8dfa8;
    }

    .srhu-lab-cell:nth-child(3n) {
        border-right: none;
    }
}

.srhu-faculty {
    background: #eaecf0;
    padding: 56px 0 64px;
}

.srhu-faculty-wrap {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.srhu-faculty-info-panel {
    flex-shrink: 0;
    width: 350px;
    background: #fff;
    border-radius: 10px;
    padding: 32px 28px 36px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.srhu-faculty-info-panel h3 {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--srhu-navy);
    margin-bottom: 16px;
}

.srhu-faculty-info-panel p {
    font-size: 0.85rem;
    color: #3a4a6b;
    line-height: 1.75;
    margin: 0;
}

.srhu-faculty-scroller-wrap {
    flex: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    position: relative;
    overflow: visible;
}
.srhu-faculty-scroller-wrap .swiper-horizontal {

    padding-left: 1px;
    padding-right: 5px;
    --swiper-pagination-color: var(--srhu-navy);
}

.srhu-faculty-track {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    overflow-y: hidden;
    max-width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.srhu-faculty-track::-webkit-scrollbar {
    display: none;
}

.srhu-faculty-track {
    touch-action: pan-x;
    will-change: scroll-position;
}

.srhu-fac-card {
    flex-shrink: 0 !important;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--srhu-border);
    background: #fff;
    scroll-snap-align: start;
    transition: box-shadow 0.22s;
    cursor: pointer;
}

.srhu-fac-card:hover {
    box-shadow: 0 4px 16px rgba(13, 33, 69, 0.14);
}

.srhu-fac-photo {
    height: 250px;
    background: #d8dce8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #8a95a8;
    text-transform: uppercase;
    background-size: cover;
    background-position: top center;
}

.srhu-fac-name {
    background: var(--srhu-navy);
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
    min-height: 80px;
}
.srhu-fac-name .deg {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.srhu-fac-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

.srhu-fac-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--srhu-border);
    background: #fff;
    color: var(--srhu-navy);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.srhu-fac-nav button:hover {
    background: var(--srhu-navy);
    color: #fff;
    border-color: var(--srhu-navy);
}

.srhu-fac-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 16px;
}

.srhu-fac-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(13, 33, 69, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.srhu-fac-dot.active {
    background: var(--srhu-navy);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .srhu-faculty-wrap {
        flex-direction: column;
    }

    .srhu-faculty-info-panel {
        width: 100%;
        align-self: auto;
    }

    .srhu-fac-nav {
        justify-content: center;
    }

    .srhu-faculty-scroller-wrap::after {
        display: none;
    }
}

.srhu-collab {
    background: #f4f5f8;
    padding: 50px 0;
}

.srhu-collab-header {
    background: var(--srhu-navy);
    padding: 32px 0;
    margin-bottom: 0;
}

.srhu-collab-header-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.srhu-collab-heading {
    flex-shrink: 0;
    padding-right: 40px;
}

.srhu-collab-heading h2 {
    font-size: 1.9rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.srhu-collab-vline {
    width: 1.5px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    margin: 0 40px;
}

.srhu-collab-features {
    display: flex;
    gap: 0;
    flex: 1;
}

.srhu-collab-feature {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    padding-right: 24px;
    font-family: var(--font-body);
}

.srhu-collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--srhu-border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    margin-top: 32px;
}

.srhu-collab-cell {
    border-right: 1px solid var(--srhu-border);
    border-bottom: 1px solid var(--srhu-border);
    padding: 32px 28px 28px;
    background: #fff;
    transition: background 0.18s;
}

.srhu-collab-cell:hover {
    background: #fafbfd;
}

.srhu-collab-logo {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.srhu-collab-logo img {
    max-height: 56px;
    max-width: 160px;
    object-fit: contain;
}

.srhu-collab-logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--srhu-navy);
    letter-spacing: -1px;
    text-align: center;
}

.srhu-collab-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: #b5303d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.srhu-collab-desc {
    font-size: 0.77rem;
    color: #4a5a7a;
    line-height: 1.65;
    margin: 0;
}
.srhu-collab .nav-tabs {
    margin-top: 0;
    gap: 10px;
    border-bottom: 0;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}
.srhu-collab .nav-item {
    margin-top: 0 !important;
}
.srhu-collab .nav-item .nav-link {
    background: var(--srhu-muted);
    color: var(--srhu-white);
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    line-height: 1.1;
}
.srhu-collab .nav-item:first-child .nav-link {
    background: var(--srhu-navy);
}
.srhu-collab .nav-item:last-child .nav-link {
    background: #b8862e;
}
.srhu-collab .swiper-horizontal {
    padding-bottom: 80px;
    --swiper-pagination-color: var(--srhu-navy);
}
.srhu-collab .swiper-slide img {
    border-radius: 6px;
}
@media (max-width: 991px) {
    .srhu-collab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .srhu-collab-header-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .srhu-collab-vline {
        display: none;
    }

    .srhu-collab-features {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .srhu-collab-grid {
        grid-template-columns: 1fr;
    }

    .srhu-collab-heading h2 {
        font-size: 1.4rem;
    }
}

.srhu-talent {
    background: #f4f5f8;
    padding: 0 0 56px;
}

.srhu-talent-header {
    background: var(--srhu-navy);
    padding: 36px 0;
    margin-bottom: 32px;
}

.srhu-talent-header-inner {
    display: flex;
    align-items: center;
}

.srhu-talent-heading {
    flex-shrink: 0;
    padding-right: 40px;
    min-width: 260px;
}

.srhu-talent-vline {
    width: 4px;
    height: 72px;
    background: linear-gradient(to bottom, var(--color-1), var(--color-2));
    flex-shrink: 0;
    margin: 0 60px;
}

.srhu-talent-tagline {
    font-size: 1.75rem !important;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: var(--font-body);

    text-align: center;
}

.srhu-talent-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.srhu-talent-panel {
    flex-shrink: 0;
    width: 350px;
    background: var(--srhu-navy);
    border-radius: 10px;
    padding: 28px 24px 32px;
    color: #fff;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.srhu-talent-panel h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.srhu-talent-panel p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin: 0 0 18px;
}

.srhu-talent-panel strong {
    color: #fff;
}

.srhu-talent-panel .tp-btn {
    margin-top: 20px;
}

.srhu-talent-logos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.srhu-logo-cell {
    background: #fff;
    border: 1px solid var(--srhu-border);
    border-radius: 8px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.srhu-logo-cell:hover {
    border-color: var(--srhu-navy);
    box-shadow: 0 3px 12px rgba(13, 33, 69, 0.1);
}

.srhu-logo-cell span {
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

@media (max-width: 991px) {
    .srhu-talent-body {
        flex-direction: column;
    }

    .srhu-talent-panel {
        width: 100%;
    }

    .srhu-talent-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .srhu-talent-header-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .srhu-talent-vline {
        display: none;
    }
}

@media (max-width: 576px) {
    .srhu-talent-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .srhu-talent-heading h2 {
        font-size: 1.4rem;
    }
}
.hr-divider {
    background: var(--color-1);
    background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
    height: 5px;
}

.srhu-expertise {
    background: #eaecf0;
    padding: 60px 0;

}

.srhu-expertise-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.srhu-expertise-heading h2 {

}

.srhu-hindex-badge {

}

.srhu-expertise-desc {
    color: #3a4a6b;
    line-height: 1.8;
    margin-bottom: 40px;

}

.srhu-expertise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.srhu-expertise-box {
    background: var(--srhu-navy);
    border-radius: 8px;
    padding: 36px 28px 32px;
    text-align: center;
}

.srhu-expertise-box .eb-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 14px;
}

.srhu-expertise-box .eb-label {
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    font-family: var(--font-body);
}

@media (max-width: 767px) {
    .srhu-expertise-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .srhu-expertise-heading h2 {
        font-size: 1.5rem;
    }

    .srhu-expertise-box .eb-num {
        font-size: 2.4rem;
    }
}

.srhu-learning {
    background: #fff;
    padding: 56px 0 64px;
}

.srhu-learning h2 {
    font-size: 2rem;
    color: var(--srhu-navy);
    margin-bottom: 28px;
}

.srhu-learn-tabs {
    display: flex;
    margin-bottom: 30px;
    gap: 8px;
}

.srhu-learn-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    color: #fff;
    transition:
        opacity 0.2s,
        box-shadow 0.2s;
    letter-spacing: 0.2px;
}

.srhu-learn-tab:hover {
    opacity: 0.88;
}

.srhu-learn-tab.lt-navy {
    background: var(--srhu-navy);
}

.srhu-learn-tab.lt-red {
    background: var(--color-2);
}

.srhu-learn-tab.lt-gold {
    background: #9e7220;
}

.srhu-learn-tab.active {
    opacity: 1;
}

.srhu-learn-tab:not(.active) {

}

.srhu-learn-panel {
    display: none;
}

.srhu-learn-panel.active {
    display: block;
}

.srhu-learn-body {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.srhu-learn-info {
    flex-shrink: 0;
    width: 350px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 32px 28px 36px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.srhu-learn-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--srhu-navy);
    margin-bottom: 16px;
}

.srhu-learn-info p {
    color: #3a4a6b;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 25px;
}

.srhu-learn-scroller {
    flex: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    position: relative;
}

.srhu-student-track {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    overflow-y: hidden;
    max-width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.srhu-student-track::-webkit-scrollbar {
    display: none;
}

.srhu-student-track {
    touch-action: pan-x;
    will-change: scroll-position;
}

.srhu-student-card {
    flex-shrink: 0 !important;

    border-radius: 8px;
    border: 1px solid var(--srhu-border);
    overflow: hidden;
    scroll-snap-align: start;
    background: #fff;
    transition: box-shadow 0.2s;
}

.srhu-student-card:hover {
    box-shadow: 0 4px 16px rgba(13, 33, 69, 0.12);
}
.srhu-student-video {
    overflow: hidden;
    border-radius: 8px;
}
.srhu-student-video video {
    object-fit: cover;
}

.srhu-student-photo {
    height: 225px;
    background: #e8eaf0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8a95a8;
    letter-spacing: 0.5px;
    background-size: cover;
    background-position: top center;
}

.srhu-student-info {
    background: var(--srhu-navy);
    padding: 13px 14px;
    text-align: center;
}

.srhu-student-info .si-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.srhu-student-info .si-detail {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.45;
}

.srhu-learn-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.srhu-learn-nav button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--srhu-border);
    background: #fff;
    color: var(--srhu-navy);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.srhu-learn-nav button:hover {
    background: var(--srhu-navy);
    color: #fff;
    border-color: var(--srhu-navy);
}

.srhu-learn-dots {
    display: flex;
    gap: 5px;
    margin-right: auto;
}

.srhu-learn-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(13, 33, 69, 0.18);
    transition: all 0.3s;
    cursor: pointer;
}

.srhu-learn-dot.active {
    background: var(--srhu-navy);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .srhu-learn-body {
        flex-direction: column;
        gap: 28px;
    }

    .srhu-learn-info {
        width: 100%;
    }

    .srhu-learn-tabs {
        flex-wrap: wrap;
        border-bottom: none;
        gap: 4px;
    }

    .srhu-learn-tab {
        top: 0;
        border-radius: 4px;
    }
}

.srhu-cta {
    background: #eaecf0;
    padding: 72px 0;
    text-align: center;
}

.srhu-cta h2 {

    margin-bottom: 28px;
}

.srhu-cta-btn {
    display: inline-block;

}

.srhu-footer {
    background: #060d1c;
    padding: 24px 0;
    text-align: center;
}

.srhu-footer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin: 0;
}

.srhu-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--srhu-gold);
    margin-bottom: 6px;
}

.srhu-gold-bar {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--srhu-gold);
    margin-bottom: 16px;
}

@media (max-width: 991px) {

    .srhu-faculty-scroller-wrap,
    .srhu-learn-scroller {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .srhu-faculty-track,
    .srhu-student-track {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x !important;
        scroll-snap-type: none !important;

        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .srhu-fac-card,
    .srhu-student-card {
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
    }

    .srhu-hero-slider .srhu-slide {
        height: calc(55vw);
        min-height: 240px;
        max-height: 380px;
    }

    .srhu-hero-slider .srhu-slide-content {
        padding: 32px 0 56px;
        max-width: 100%;
    }

    .srhu-hero-slider .srhu-slide-title {
        font-size: 1.5rem;
    }

    .srhu-hero-slider .srhu-slide-desc {
        font-size: 0.82rem;
    }

    .srhu-hero-slider .srhu-stat-badges {
        display: none;
    }

    .srhu-tagline {
        padding: 36px 0;
    }

    .srhu-tagline .srhu-tag-left {
        border-right: none;
        padding-right: 0;

        padding-bottom: 24px;
        margin-bottom: 24px;
        text-align: center;
    }

    .srhu-tagline .srhu-tag-right {
        padding-left: 0;
    }

    .srhu-tagline .srhu-main-headline {
        font-size: 1.5rem;
    }

    .srhu-stat-num {
        font-size: 2rem;
    }

    .srhu-stat-cell {
        padding: 22px 10px;
        min-height: 120px;
    }

    .srhu-path {
        flex-direction: column;
        min-height: auto;
    }

    .srhu-path .srhu-path-left {
        padding: 36px 16px;
        max-width: 100% !important;
    }

    .srhu-path .srhu-path-right {
        min-height: 240px;
    }

    .srhu-steps-row {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .srhu-step-col {
        max-width: 100%;
        padding-top: 20px;
    }

    .srhu-step-arrow-wrap {
        display: none !important;
    }

    .srhu-schools-body {
        flex-direction: column;
    }

    .srhu-schools-left {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        padding: 20px;
        border-radius: 0;
        justify-content: center;
    }

    .srhu-schools-left .sl-num {
        font-size: 3rem;
    }

    .srhu-schools-left .sl-word {
        font-size: 1.3rem;
    }

    .srhu-schools-left .sl-btn {
        margin-top: 0;
    }

    .srhu-schools-right {
        padding: 20px 0 0 0;
    }

    .srhu-sc-card {
        min-width: calc(50% - 6px);
        flex: 1 1 calc(50% - 6px);
    }

    .srhu-school-tabs {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .srhu-school-tab {
        padding: 10px 14px;
        font-size: 0.8rem;
        line-height: 1;
    }

    .srhu-centres-grid {
        flex-wrap: wrap;
    }

    .srhu-centre-cell {
        flex: 0 0 50%;
        padding: 16px 12px;
        border-bottom: 1px solid #e2c8c8;
    }

    .srhu-centre-cell:nth-child(2n) {
        border-right: none;
    }

    .srhu-labs-grid {
        flex-wrap: wrap;
    }

    .srhu-lab-cell {
        flex: 0 0 33.333%;
        padding: 14px 8px;
        border-bottom: 1px solid #e8dfa8;
    }

    .srhu-lab-cell:nth-child(3n) {
        border-right: none;
    }

    .srhu-faculty {
        padding: 36px 0 44px;
    }

    .srhu-faculty-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .srhu-faculty-info-panel {
        width: 100%;
        padding: 24px 20px;
        text-align: center;
    }

    .srhu-faculty-scroller-wrap::after {
        display: none;
    }

    .srhu-faculty-track {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }

    .srhu-fac-card {

        flex-shrink: 0;
    }

    .srhu-fac-nav {
        justify-content: center;
    }

    .srhu-fac-dots {
        justify-content: center;
    }

    .srhu-collab-header-inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .srhu-collab-heading h2 {
        font-size: 1.35rem;
    }

    .srhu-collab-heading {
        padding-right: 0;
    }

    .srhu-collab-vline {
        display: none;
    }

    .srhu-collab-features {
        flex-wrap: wrap;
        gap: 10px;
    }

    .srhu-collab-feature {
        flex: 1 1 40%;
        font-size: 0.82rem;
    }

    .srhu-collab-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .srhu-talent-header-inner {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        text-align: center;
    }

    .srhu-talent-heading h2 {
        font-size: 1.35rem;
    }

    .srhu-talent-vline {
        display: none;
    }

    .srhu-talent-tagline {
        font-size: 0.88rem;
        text-align: left;
    }

    .srhu-talent-body {
        flex-direction: column;
        gap: 16px;
    }

    .srhu-talent-panel {
        width: 100%;
    }

    .srhu-talent-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .srhu-logo-cell {
        min-height: 56px;
        padding: 10px;
    }

    .srhu-expertise {
        padding: 40px 0 48px;
    }

    .srhu-expertise-heading h2 {
        font-size: 1.5rem;
    }

    .srhu-expertise-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .srhu-expertise-box .eb-num {
        font-size: 2.4rem;
    }

    .srhu-learning {
        padding: 36px 0 48px;
    }

    .srhu-learn-tabs {
        flex-wrap: nowrap;
        border-bottom: none;
        gap: 6px;
        margin-bottom: 20px;
    }

    .srhu-learn-tab {
        top: 0;
        border-radius: 4px;
        font-size: 0.78rem;
        padding: 9px 16px;
        line-height: 1;
    }

    .srhu-learn-body {
        flex-direction: column;
        gap: 20px;
    }

    .srhu-learn-info {
        width: 100%;
        text-align: center;
    }

    .srhu-student-track {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .srhu-student-card {

        flex-shrink: 0;
    }

    .srhu-learn-nav {
        justify-content: center;
    }

    .srhu-learn-dots {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .srhu-cta {
        padding: 48px 0;
    }

    .srhu-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .srhu-hero-slider .srhu-slide {
        height: calc(55vw);
        min-height: 200px;
        max-height: 300px;
    }

    .srhu-hero-slider .srhu-slide-title {
        font-size: 1.2rem;
    }

    .srhu-hero-slider .srhu-slide-content {
        padding: 20px 0 36px;
    }

    .srhu-hero-slider .srhu-btn-primary,
    .srhu-hero-slider .srhu-btn-outline {
        padding: 9px 16px;
        font-size: 0.75rem;
    }

    .srhu-stat-num {
        font-size: 1.7rem;
    }

    .srhu-stat-cell {
        min-height: 100px;
    }

    .srhu-sc-card {
        min-width: calc(50% - 4px);
        height: 100%;
    }

    .srhu-lab-cell {
        flex: 0 0 50%;
    }

    .srhu-lab-cell:nth-child(2n) {
        border-right: none;
    }

    .srhu-lab-cell:nth-child(3n) {
        border-right: 1px solid #e8dfa8;
    }

    .srhu-centre-cell {
        flex: 0 0 100%;
        border-right: none;
    }

    .srhu-collab-grid {
        grid-template-columns: 1fr;
    }
    .srhu-why .srhu-why-header {
        flex-direction: column;
    }
    .srhu-path .srhu-path-left {
        text-align: center;
    }
}

.why_choose_parent {
    border-bottom: 1px #ffffff21 solid;
    margin-bottom: 50px;
}

.srhu_stats_parent {
    border-bottom: 1px #ffffff21 solid;
    margin-bottom: 50px;
}

.srhu-stats-row-top .col-6,
.srhu-stats-row-top .col-md-3 {
    padding: 0px;
    margin: 0px;
}

.srhu-stats-row-bot .col-6,
.srhu-stats-row-bot .col-md-3 {
    padding: 0px;
    margin: 0px;
}

.hero-section {

	margin-top:0px;
    height: 750px;

}

@media (max-width: 992px) {
    .hero-section {
        height: inherit;
    }
    .srhu-tagline .srhu-tag-left img {
        max-width: 168px;
    }
}
@media (max-width: 767px) {

.hero-section {

	margin-top:0px !important;
}
    .btn-new {
        padding: 6px 20px;
        font-size: 14px;
    }
    .srhu-title {
        font-size: 1.7rem;
        text-align: center;
    }
    .srhu-sc-body .sc-name {
        font-size: 16px;
    }
    .srhu-schools-right .swiper-horizontal .swiper-slide {
        height: auto;
    }
    .srhu_stats_parent {
        border-bottom: none;
    }
    .srhu-faculty-scroller-wrap .swiper-horizontal {
        padding-bottom: 50px;
    }
    .srhu-collab .nav-item .nav-link {
        padding: 5px 15px;
    }
    .srhu-student-video-card {
        margin-bottom: 15px;
    }
    .srhu-talent-tagline {
        font-size: 1.15rem !important;
        text-align: center;
    }
    .srhu-expertise-desc {
        text-align: center;
    }
    .srhu-expertise-heading {
        justify-content: center;
    }
    .srhu-step-body h5 {
        font-size: 1.3rem;
    }
    .srhu-step-body p {
        font-size: 16px !important;
    }
    .srhu-talent-panel p {
        text-align: center;
    }
    .srhu-tagline .srhu-tag-left:after {
        background: linear-gradient(to right, var(--color-1), var(--color-2));
        top: inherit !important;
        width: 100%;
        height: 5px;
        bottom: 0;
    }
    .srhu-talent-heading {
        padding-right: 0;
    }
    .hero-section .ratio-16x9 {
        --bs-aspect-ratio: 85%;
    }
    .hero-section .ratio-16x9 video {
        width: 140%;
        left: -20%;
    }
    .srhu-stats-grid .col-6 {
        width: 50%;
    }
    .why_choose_parent {
        margin-bottom: 0px;
    }
    .srhu-school-tabs {
        justify-content: center;
    }
    .srhu-school-tab i {
        display: none;
    }
    .srhu-fac-name {
        font-size: 0.9rem;
        min-height: 130px;
    }
    .srhu-path .srhu-path-bg::before {
        display: none;
    }
    .srhu-fac-photo {
        height: 175px;
    }
}
@media (max-width: 400px) {
    .srhu-fac-name {
        min-height: 142px;
    }
}


/* ===== PERFORMANCE OPTIMIZATION ===== */

img{
    max-width:100%;
    height:auto;
}

img[loading="lazy"]{
    content-visibility:auto;
}

.swiper,
.swiper-wrapper,
.swiper-slide{
    transform:translate3d(0,0,0);
}

.swiper-slide{
    contain:layout paint style;
}

.hero-video{
    will-change:transform;
}