:root {
    --marquee-bg: #640036;
    /* top strip + main brand bg */
    --main-bg: #640036;
    --alt-bg: #4e2878;
    /* secondary backgrounds */
    --btn-bg: #fe9d2b;
    /* buttons */
    --text: #575757;
    /* body text */
    --white: #ffffff;
    --black: #000;
}

/* Base */
body {
    font-family: sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--text);
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Philosopher", sans-serif;
    color: #1d1d1d;
}

a {
    text-decoration: none;
}

/* 1) Top Marquee */
.top-marquee {
    background: var(--marquee-bg);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    position: relative;
    z-index: 1031;
    padding: 0.3rem 0;
    overflow: hidden;
    font-weight: bold;
}

.top-marquee .ticker {
    white-space: nowrap;
    font-family: "PT Sans", sans-serif;
}

.top-marquee .dot {
    display: inline-block;
    margin: 0 0.8rem;
    opacity: 0.6;
}

/* 2) Header */
.site-header {
    background: #fff;
    position: relative;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    background-image: url(/public/static/assets/images/header_bg.png);
    background-size: cover;
}

.header-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 1rem;
    padding: 10px 10px 0px 10px;
}

.brand-logo img {
    height: 93px;
    width: auto;
}

.hs-btn {
    background: var(--btn-bg);
    color: #3b2000;
    font-weight: 700;
    border: none;
    padding: 8px 1.1rem;
    border-radius: 0;
    min-width: 190px;
    font-size: 14px;
}

.hs-btn:hover {
    filter: brightness(0.95);
    background: #ffaa47;
}

/* Mobile toggler placed in header (not inside navbar) */
.mobile-toggler {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 0.35rem 0.55rem;
    background: #fff;
}

/* Provide the icon image explicitly (since .navbar-light/.navbar-dark doesn't apply here) */
.mobile-toggler .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.70)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* 3) Navbar */
.hs-navbar {
    border-bottom: 1px solid #eee;
}

.hs-navbar .nav-link {
    font-weight: 400;
    color: #393939;
    opacity: .85;
}

.hs-navbar .nav-link:hover,
.hs-navbar .nav-link:focus {
    color: var(--marquee-bg);
}

.dropdown-menu {
    border-radius: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        justify-content: space-between !important;
        width: 100%;
    }
}


@media (min-width: 992px) {
    .searchbar_icon {
        top: 93px;
        right: 3%;
        color: #727272;
    }
}

/* 4) Hero Video */
.hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--main-bg);
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    mix-blend: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: right;
    width: 100%;
    max-width: 1056px;
    padding: min(1vw, 1rem);
    background: transparent linear-gradient(90deg, rgba(217, 131, 43, 0) 2%, #f5700f99 25%, #ec411bbf 54%, #600036bf 77%, #000a3ebf 100%);


}

.hero h1 {
    font-size: 28px;
    line-height: 1.25;
    color: #fff;
}

.hero .hero-cta {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.7rem 1.2rem;
    font-weight: 400;
    border-radius: 0;
    font-size: 14px;
}

.hero .hero-cta:hover {
    background: #fff;
    color: #000;
}

/* 5) Right sticky Enquire tab */
.enquire-tab {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 1032;
    background: var(--btn-bg);
    color: #3b2000;
    font-weight: 800;
    padding: 0.75rem 0.9rem;
    border-radius: 0.4rem 0 0 0.4rem;
    transform: rotate(-90deg) translateY(50%);
    transform-origin: right top;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Placeholder band */
.alt-band {
    background: var(--alt-bg);
    color: #fff;
    padding: 2.75rem 0;
}

/* Responsive */
@media (max-width: 991.98px) {

    /* Keep logo left, hamburger right on one line */
    .header-wrap {
        grid-template-columns: auto 1fr auto;
        /* logo | spacer | toggler */
        padding: 0.7rem 0;
    }

    /* Hide the left/right CTAs only, keep the right column for toggler */
    .header-left .hs-btn,
    .header-right .hs-btn {
        display: none !important;
    }

    .brand-logo {
        justify-self: start;
    }

    .brand-logo img {
        height: 60px;
    }

    .header-right {
        justify-content: space-evenly;
        display: flex;
    }

    /* No navbar toggler inside the nav; header button controls collapse */
    .hero {
        min-height: 60vh;
    }
}

@media (max-width: 600px) {
    .navbar {
        --bs-navbar-padding-y: 0;
    }
}

/* ===== Scoped styles (no global conflicts) ===== */
.hs-welcome-section {
    --hs-purple: #4e2878;
    --hs-maroon: #640036;
    --hs-accent: #fe9d2b;
    --hs-text: rgb(87, 87, 87);
}

a.hs-card.heading {
    justify-content: center;
}

a.hs-card.heading h3 {
    color: rgb(236, 65, 27) !important;
    font-size: 32px;
}

.hs-welcome-section .hs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Headline block */
.hs-welcome-section .hs-title {
    font-family: "Philosopher", sans-serif;
    color: var(--hs-purple);
    font-weight: 700;
    text-align: center;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    margin-bottom: 10px;
}

.hs-welcome-section .hs-deco {
    width: 120px;
    height: 8px;
    margin: 0 auto 22px auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hs-purple), #8a3ea8, var(--hs-accent), var(--hs-maroon));
}

.hs-welcome-section .hs-intro {
    color: var(--hs-text);
    text-align: center;
    max-width: 920px;
    margin: 0 auto 36px auto;
    line-height: 1.8;
    font-size: 14px;
}

/* Our Programmes heading */
.hs-welcome-section .hs-prog-title {
    font-family: "Philosopher", sans-serif;
    color: #c63b1f;
    /* screenshot shows an orange-red heading */
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    margin: 8px 0 18px 0;
}

/* Grid */
.hs-welcome-section .hs-grid {
    display: grid;
    gap: 22px;
}

/* 2 on first row, 3 on second row at >=992px; stack on mobile */
@media (min-width: 576px) {
    .hs-welcome-section .hs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hs-welcome-section .hs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* We’ll make the first two items span to look like 2-up then 3-up (total 5 cards) */
@media (min-width: 992px) {

    .hs-welcome-section .hs-card:nth-child(1),
    .hs-welcome-section .hs-card:nth-child(2) {
        grid-column: span 1;
    }

    /* natural in 3-col grid gives 2-on-first row look */
}

/* Card */
.hs-welcome-section .hs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hs-welcome-section .hs-media {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #eee;
    position: relative;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.hs-welcome-section .hs-media img,
.hs-welcome-section .hs-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.hs-welcome-section .hs-card:hover .hs-media img,
.hs-welcome-section .hs-card:focus-within .hs-media img {
    transform: scale(1.3);
}

.hs-welcome-section .hs-caption {
    margin-top: 10px;
    text-align: center;
    color: #1f1f1f;
    font-weight: 500;
    font-size: 1.5rem;
    font-family: "Philosopher", sans-serif;
}

/* Quote */
.hs-welcome-section .hs-quote {
    max-width: 980px;
    margin: 36px auto 8px auto;
    text-align: center;
    color: var(--hs-purple);
    font-weight: 700;
    line-height: 1.7;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.hs-welcome-section .hs-quote small {
    display: block;
    margin-top: 14px;
    color: #3b2a56;
    font-weight: 500;
}

/* Utility paddings (scoped) */
.py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.btn_group {
    text-align: center;
    margin-top: 20px;
}

.btn_group .btn-blue {
    background: #4d2a7c;
    color: white;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 8px;
}

.alumni-section {
    background: var(--alt-bg);
    color: #fff;
}

.alumni-title {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
}

.alumni-intro {
    max-width: 900px;
    opacity: 0.95;
}

.alumni-card {
    background: #fff;
    color: var(--text);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    max-width: 980px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 576px) {
    .alumni-card {
        padding: 1.25rem 1.5rem;
    }
}

.alumni-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.alumni-name {
    font-family: "Philosopher", sans-serif;
    color: #3b2a56;
    margin-bottom: 0.25rem;
}

.alumni-sep {
    border-top: 1px solid #eee;
    margin: 0.25rem 0 0.75rem 0;
}

.alumni-list li {
    padding: 0.25rem 0;
}

/* Arrows */
.alumni-arrow {
    width: auto;
    opacity: 1;
}

.alumni-arrow-ico {
    background: #fff;
    color: #333;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    font-size: 1.25rem;
}

/* Fixed Dots (below the card) */
.alumni-dots {
    position: static;
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.alumni-dots [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    opacity: 1;
    border: 0;
}

.alumni-dots .active {
    background: #fff;
}

.alumni-cta-title {
    font-family: "Philosopher", sans-serif;
    letter-spacing: 0.04em;
}

.alumni-btn {
    background: var(--btn-bg);
    color: #3b2000;
    font-weight: 800;
    border: none;
    padding: 0.6rem 1.1rem;
    border-radius: 0;
}

.alumni-btn:hover {
    filter: brightness(0.95);
    color: #3b2000;
}

/* Section base */
.testimonials-section {
    background: #fff;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.testi-title {
    font-family: "Philosopher", sans-serif;
    color: var(--alt-bg);
    font-weight: 700;
}

.testi-card {
    max-width: 980px;
    margin: 0 auto;
}

.testi-quote {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin: 0 0 0.75rem 0;
}

.testi-author {
    font-weight: 700;
    color: #640036;
    font-style: italic;
    opacity: 0.8;
}

/* Dots below carousel */
.testi-dots {
    position: static;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testi-dots [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7cbe6;
    opacity: 1;
    border: 0;
}

.testi-dots .active {
    background: var(--alt-bg);
}

/* Responsive type tweaks */
@media (max-width: 575.98px) {
    .testi-quote {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* --------------------
     Fade overlap + layout fixes (scoped to this carousel)
     -------------------- */

/* Non-active slides are absolutely positioned (so they don't affect layout) */
#parentTestiCarousel.carousel-fade .carousel-item {
    position: absolute;
    inset: 0 0 0 0;
    /* top:0; right:0; bottom:0; left:0 */
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease-in-out, visibility .01s linear .55s;
    pointer-events: none;
}

/* Active slide sits in normal flow so container height is accounted for */
#parentTestiCarousel.carousel-fade .carousel-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity .55s ease-in-out;
    pointer-events: auto;
}

/* Ensure .carousel-inner can be sized to tallest slide */
#parentTestiCarousel .carousel-inner {
    position: relative;
    overflow: hidden;
    min-height: 140px;
    /* fallback */
}

/* Keep controls and indicators above slides */
#parentTestiCarousel .carousel-control-prev,
#parentTestiCarousel .carousel-control-next,
#parentTestiCarousel .testi-dots {
    z-index: 10;
}

/* --------------------
     Custom arrow placement & style (keeps your bottom-right layout)
     -------------------- */
#parentTestiCarousel .testi-arrow {
    position: absolute;
    bottom: -20px;
    top: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: 0.2s ease;
    z-index: 11;
    background: transparent;
    border: none;
}

/* Left arrow */
#parentTestiCarousel .carousel-control-prev {
    right: 60px;
    left: auto !important;
}

/* Right arrow */
#parentTestiCarousel .carousel-control-next {
    right: 10px;
    left: auto !important;
}

/* Arrow icon */
#parentTestiCarousel .testi-arrow-ico {
    color: #f28b1d;
    font-size: 28px;
    /* reduced to fit */
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect for arrow container */
#parentTestiCarousel .testi-arrow:hover {
    background: #d67610;
}

/* Safety: ensure testi-card doesn't collapse while measuring */
#parentTestiCarousel .testi-card {
    display: block;
}


.insta_section {
    padding-top: 50px;
}

.youtube-section {
    background: #fff;
    color: var(--text);
}

.yt-title {
    font-family: "Philosopher", sans-serif;
    color: var(--alt-bg);
    font-weight: 700;
}

.yt-link {
    color: #2b2bbf;
    text-decoration: underline;
}

.yt-link:hover {
    color: var(--alt-bg);
}

.yt-subtitle {
    color: var(--alt-bg);
    font-weight: 600;
}

.yt-desc {
    color: var(--text);
    line-height: 1.8;
}

.yt-btn {
    background: var(--alt-bg);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 0.6rem 1.2rem;
}

.yt-btn:hover {
    background: var(--btn-bg);
    color: #3b2000;
}

.yt-video iframe {
    border-radius: 0;
}

@media (max-width: 767.98px) {
    .yt-title {
        text-align: center;
    }

    .yt-subtitle,
    .yt-desc,
    .yt-btn {
        text-align: center;
    }

    .yt-btn {
        display: inline-block;
        margin-top: 0.5rem;
    }
}

.hs-footer {
    /*background: linear-gradient(90deg, var(--marquee-bg) 0%, #7b1f6b 50%, var(--alt-bg) 100%);*/
    color: #f8eef6;
    position: relative;
    overflow: hidden;
}

.hs-foot-min {
    background: rgba(0, 0, 0, 0.08);
    color: #f3ddec;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hs-foot-h {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hs-foot-address {
    line-height: 1.8;
}

.hs-foot-address a {
    color: #fff;
    text-decoration: underline;
}

/* Links */
.hs-foot-links li {
    margin: 0.25rem 0;
}

.hs-foot-links a {
    color: var(--btn-bg);
    /* orange links like screenshot */
}

.hs-foot-links a:hover {
    color: #ffd08a;
    /* lighter hover */
}

/* Social vertical bar */
.hs-foot-social {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
    padding-top: 0.25rem;
}

.hs-soc {
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hs-soc:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

/* Responsive spacing */
@media (max-width: 991.98px) {
    .hs-foot-links {
        column-gap: 2rem;
    }
}

.social_icons {
    padding-top: 16px;
    margin-right: 40px;
}

.social_icons a {
    margin-left: 20px;
    text-decoration: none;
}

.social_icons a img {
    transition: 0.3s ease;
    width: 24px;
    height: 24px;
}

.btn.w_288 {
    min-width: 190px;
}

.btn_gradient_outline {
    color: white;
    border: 1px solid white;
    margin-top: 10px;
    border-radius: 0;
}



@media (max-width: 600px) {

    .dmmnone {
        display: none;
    }

    .mobbgwh {
        background: #fff;
    }
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {

    padding-right: calc(var(--bs-gutter-x) * .4);
    padding-left: calc(var(--bs-gutter-x) * .4);

}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0;
}





@media (min-width: 600px) {
    .hero-content.ms-auto {
        padding-right: 70px;
    }
}


.npfWidget-5670d441c3746d7deb79350a53a2da6b.npfWidgetButton {
    padding-left: 11px !important;
    flex: right;
    position: fixed !important;
    right: -53px !important;
    transform: rotate(270deg) !important;
    top: 50% !important;
    background-color: #fe9d2b !important;
    z-index: 999999;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 18px;
    color: #640036;
    line-height: 1.33;
    padding: 8px 18px;
    font-weight: bold;
    cursor: pointer;
    border: 0;
}

.btn.w_288 {
    min-width: 190px;
}

.btn_gradient_outline {
    color: white;
    border: 1px solid white;
    margin-top: 10px;
}

.btn {
    border-radius: 0;
    height: 36px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.color_ling_img {
    padding: 0px 0px !important;
}


.color_ling_img {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}


.color_ling_img img {
    width: 150px;
}

.font-primary {
    font-family: "Philosopher";
}

.btn.w_288 {
    min-width: 190px;
}


.btn-orange {
    border: 1px solid #fe9d2b;
    color: #640036;
    background: #fe9d2b;
}

.btn-orange:hover {
    border: 1px solid #fe9d2b;
    color: #640036;
    background: #fe9d2b;
}

.btn {
    border-radius: 0;
    height: 36px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.btn:hover {
    color: #212529;
}

.btn_adm {
    color: #640036 !important;
}

.active {
    color: #c1006b !important;
}

.hs-navbar .nav-link:hover,
.hs-navbar .nav-link:focus {
    text-decoration: none;
    color: #c1006b !important;
}

.btn_gradient_outline:hover {
    color: white;
    border: 1px solid white;
}

.btn:hover {
    opacity: 0.9;
}

.bg01_img {
    background-image: url(/public/static/assets/images/abbg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: auto;
}


.programs_details a h4 {
    color: #242C58;

}

.btn_group {
    padding-top: 20px;
    padding-bottom: 10px;
    display: block;
}

.justify-content-center {
    justify-content: center !important;
}

.btn_group .btn-blue {
    background: #4D2A7C;
    color: white;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 0;
}

.w_228 {
    min-width: 200px;
}

.btn-blue:hover {
    background: #4D2A7C;
    color: white;
}

.btn:hover {
    opacity: 0.9;
}


/* container / safety */
#alumniCarousel {
    width: 100%;
}

#alumniCarousel .carousel-inner {
    overflow: visible;
}

/* Ensure carousel-item behaves as a normal grid block (not stacked) */
#alumniCarousel .carousel-item {
    position: relative !important;
    /* prevent absolute stacking */
    display: grid !important;
    /* grid layout we want */
    gap: 1rem;
    align-items: start;
    -webkit-backface-visibility: hidden;
    /* reduce flicker in some browsers */
    backface-visibility: hidden;
    box-sizing: border-box;
}

/* Prevent Bootstrap's transition helpers from putting slides on top of each other */
#alumniCarousel .carousel-item,
#alumniCarousel .carousel-item-next,
#alumniCarousel .carousel-item-prev,
#alumniCarousel .carousel-item.active {
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
}

/* z-index: active slide should be above others while inactive are behind */
#alumniCarousel .carousel-item {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

#alumniCarousel .carousel-item.active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

/* Grid columns by breakpoint (keeps 3/2/1) */
#alumniCarousel .carousel-item {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    #alumniCarousel .carousel-item {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    #alumniCarousel .carousel-item {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Make sure each article/card fills its grid cell and doesn't overflow */
#alumniCarousel .carousel-item article,
#alumniCarousel .alumni-card {
    width: 100%;
    min-width: 0;
    /* important to allow flex/grid to shrink content */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Images/content safety */
#alumniCarousel .alumni-avatar {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

#alumniCarousel .alumni-card img {
    max-width: 100%;
    height: auto;
}

/* Smooth fade effect instead of sliding (prevents overlap while keeping visual transition) */
#alumniCarousel .carousel-fade .carousel-item {
    transition: opacity .45s ease;
}

#alumniCarousel .carousel-item {
    transition: opacity .35s ease;
}

button.carousel-control-prev.alumni-arrow {
    z-index: 9;
}

button.carousel-control-next.alumni-arrow {
    z-index: 9;
}

@media (min-width: 768px) {
    .title_header .txt_center {
        text-align: center;
    }
}

.title_header .txt_center {
    text-align: left;
}

@media (min-width: 768px) {
    .title_header h3 {
        font-size: 32px;
    }
}

.title_header h3 {
    font-family: "Philosopher", sans-serif;
    color: #4D2A7C;
    font-weight: 700;
}

a.txt_orange_socia_ {
    text-decoration: underline;
}



.header-wrap {
    align-items: center;
}



.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.upperstrip .social_icons a img {
    transition: 0.3s ease;
    width: 24px;
    height: 24px;
}

/* YouTube */
.upperstrip .social_icons a:nth-child(1):hover img {
    content: url("/public/static/assets/images/icons/video.png");
}

/* Facebook */
.upperstrip .social_icons a:nth-child(2):hover img {
    content: url("/public/static/assets/images/icons/facebook-circular-logo.png");
}

/* Instagram */
.upperstrip .social_icons a:nth-child(3):hover img {
    content: url("/public/static/assets/images/icons/instagram-2.png");
}

/* LinkedIn */
.upperstrip .social_icons a:nth-child(4):hover img {
    content: url("/public/static/assets/images/icons/linkedin.png");
}

.color_ling_img {
    padding: 0px 0px !important;
}



@media (min-width: 600px) {
    .ddmnone {
        display: none;
    }
}

@media (max-width: 991px) {
    .mobile-social-icons {
        margin-top: 25px;
        display: flex;
        gap: 18px;
        justify-content: flex-start;
    }

    .mobile-social-icons a {
        display: inline-flex;
        width: 26px;
        height: 26px;
    }

    .mobile-social-icons svg {
        width: 26px;
        height: 26px;
        fill: #fff;
    }

    .mobile-social-icons a:hover svg {
        fill: rgb(254, 157, 43);
        /* orange hover */
    }
}

/* =================== MOBILE MENU CSS =================== */

@media (max-width: 991px) {

    /* Panel */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 230px;
        height: 100vh;
        background: #4d2a7c;
        color: #fff;
        padding: 70px 25px 25px;
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .mobile-menu.open {
        right: 0;
    }

    /* Close button */
    .mobile-menu-close {
        position: absolute;
        right: 18px;
        top: 18px;
        background: none;
        border: none;
        font-size: 34px;
        color: #fff;
        cursor: pointer;
    }

    /* Backdrop */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 9990;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Menu Items */
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list>li {
        margin-bottom: 10px;
    }

    .mobile-menu a,
    .mobile-menu span {
        font-family: "PT Sans", sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
        text-decoration: none;
        display: block;
    }

    /* Hover color */
    .mobile-menu a:hover,
    .mobile-menu span:hover {
        color: rgb(254, 157, 43);
        /* #fe9d2b */
    }

    /* Submenu base (no bullets) + animation */
    .submenu {
        list-style: none;
        /* remove dots */
        padding-left: 10px;
        margin-top: 6px;
        margin-bottom: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-4px);
        transition:
            max-height 0.25s ease,
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .has-sub.open .submenu {
        max-height: 500px;
        /* big enough to show content */
        opacity: 1;
        transform: translateY(0);
    }

    .submenu li {
        margin-bottom: 6px;
    }

    .submenu a {
        display: block;
    }

    .has-sub span {
        cursor: pointer;
    }

    /* "+" / "-" icon */
    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-plus {
        font-style: normal;
        font-size: 18px;
        margin-left: 8px;
        color: #fff;
        transition: color 0.25s ease;
        position: relative;
    }

    .menu-plus::before {
        content: "+";
        /* collapsed */
    }

    .has-sub.open .menu-plus::before {
        content: "-";
        /* expanded */
    }

    .has-sub.open .menu-plus {
        color: rgb(254, 157, 43);
    }

    .dmmnone {
        display: none !important;
    }

    .owl-theme.owl_slider .owl-nav {
        display: none !important;
    }

    .social_icons {
        padding-top: 7px !important;
        margin-right: 5px !important;
    }
}

/* ================= HAMBURGER ICON ANIMATION ================= */

.mobile-toggler {
    border: none;
    background: none;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    display: inline-block;
}

.hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #4d2a7c;
    /* icon color */
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

/* When active, turn into X */
.mobile-toggler.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-toggler.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggler.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Hide custom mobile menu on desktop */
@media (min-width: 992px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}



.dropdown-item:focus,
.dropdown-item:hover {
    background: rebeccapurple !important;
    color: #fff;
}

ul.dropdown-menu.show {
    margin-top: 0px;
}




@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");

.btn {
    border-radius: 0;
    height: 36px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

@media (min-width: 1350px) {
    .btn {
        font-size: 16px;
        height: 40px;
    }
}

.btn:hover {
    opacity: 0.9;
}

.btn.w_288 {
    min-width: 190px;
}

@media (min-width: 1350px) {
    .btn.w_288 {
        min-width: 200px;
    }
}

.btn_gradient_outline {
    color: white;
    border: 1px solid white;
    margin-top: 10px;
}

.btn_gradient_outline:hover {
    color: white;
}

.btn:focus {
    box-shadow: none;
}

/* template */
/* template 2 */

.mbl_v {
    display: block;
}

@media (min-width: 992px) {
    .mbl_v {
        display: none;
    }
}

.desk_v {
    display: none;
}

@media (min-width: 992px) {
    .desk_v {
        display: block;
    }
}

.p_rel {
    position: relative;
}

.div_gradient_text {
    right: 60px;
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.div_gradient {
    right: 0;
    width: 70%;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    background: #d9832b;
    background: transparent linear-gradient(270deg,
            rgba(217, 131, 43, 0) 2%,
            #f5700f 25%,
            #ec411b 54%,
            #600036 77%,
            #000a3e 100%);
    mix-blend-mode: multiply;
}

.div_wid {
    text-align: left;
}

@media (min-width: 768px) {
    .div_wid {
        text-align: right;
    }
}

.gradient1_h {
    position: absolute;
    top: 15%;
    z-index: 9;
    height: 180px;
}

@media (min-width: 1350px) {
    .gradient1_h {
        top: 30%;
        height: 200px;
    }
}

.carousel_d_mbl {
    position: relative;
    background-image: url("/public/static/assets/images/carousel_header.png");
    padding: 30px 18px 30px 18px;
    background-position: center;
    background-size: cover;
    margin-top: -10px;
}

.bg-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    background-image: url("http://officialwebspace.com/demos/harishree/assets/images/ban_bg.jpg") no-repeat center center/cover;
}

@media (min-width: 992px) {
    .bg-video-wrap {
        height: 55vh;
    }
}

video {
    max-width: 100%;
    z-index: 1;
    width: 100%;
}


.carousel_d_mbl .carousel_d h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 26px;
    font-family: "Philosopher";
    text-align: center;
    color: #fff;
}



.programs_details .pgm_d {
    position: relative;
}

.programs_details .pgm_d:hover h4 {
    color: #ec411b;
}

.programs_details .pgm_d:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.programs_details .pgm_d figure {
    overflow: hidden;
    margin-bottom: 0;
}

.programs_details .pgm_d img {
    webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.programs_details a {
    text-decoration: none;
}

.programs_details a:hover {
    text-decoration: none;
}

.programs_details a h4 {
    color: #242c58;
    font-size: 19px;
    text-align: center;
    font-family: "Philosopher", sans-serif;
    padding: 12px 0 25px 0;
}

@media (min-width: 768px) {
    .programs_details a h4 {
        font-size: 24px;
    }
}

.programs_details a h4:hover {
    color: #ec411b;
}

.programs_details h2 {
    color: #ec411b;
    text-align: center;
    font-family: "Philosopher", sans-serif;
    font-weight: 800;
    font-size: 25px;
    padding-bottom: 25px;
}

@media (min-width: 768px) {
    .programs_details h2 {
        font-size: 32px;
    }
}

.sec_3 h6 {
    font-size: 17px;
    color: #4d2a7c;
    font-weight: 700;
    font-style: italic;
    line-height: 32px;
    padding-bottom: 17px;
    font-size: 21px;
    text-align: center;
}

.sec_3 h5 {
    color: #4d2a7c;
}



.sec_1_hm p {
    font-family: "PT Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: rgb(87, 87, 87);
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    padding-bottom: 40px;
}

@media (max-width: 600px) {
    .sec_1_hm p {
        text-align: left;
    }

    .mobtextleft {
        text-align: left;
    }
}



/* <<--- your large CSS block copied from the snippet --- */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .owl-theme .owl-nav {
        text-align: right;
    }
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
    color: #4d2a7c;
    text-decoration: none;
}

:focus {
    outline: none !important;
}

.univariety-wrap section {
    padding: 70px 0;
    width: auto;
    float: none;
}

.univariety-wrap section.purple {
    background: #4e2878;
}

.text-white {
    color: #fff;
}

.univariety-wrap section h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 8px;
    font-family: "Philosopher", sans-serif;
    font-style: normal;
}

.univariety-wrap section p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
    color: #575757;
}

.w-1140 {
    max-width: 1140px;
    width: 90%;
    margin: auto;
}

.univariety-wrap section.guiding_alumni h2 {
    font-size: 32px;
    font-weight: bold !important;
    line-height: 50px;
    text-align: center;
    color: #fff !important;
}

.univariety-wrap section.guiding_alumni p {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-style: normal;
}

.guiding_alumni_block {
    background: #ffffff;
    box-shadow: 0px 5px 15px #0000001a;
    border-radius: 4px;
    opacity: 1;
    padding: 20px;
    height: 100%;
}

.owl-theme.owl_slider .owl-nav {
    position: static;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}

.owl-theme.owl_slider .owl-nav button {
    position: absolute;
    top: 0;
    padding: 0;
    margin: auto;
    line-height: 0;
    bottom: 0;
    background-color: transparent !important;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.owl-theme.owl_slider .owl-nav .owl-prev {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='black' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 30px !important;
    width: 45px;
    height: 45px;
    font-size: 0 !important;
    left: -70px;
    opacity: 1;
    transform: rotate(0);
    background-color: #fff !important;
    box-shadow: 0px 10px 20px #0000001a;
    margin-left: 10px;
}

.owl-theme.owl_slider .owl-nav .owl-next {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='black' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 30px !important;
    width: 45px;
    height: 45px;
    font-size: 0 !important;
    right: -70px;
    opacity: 1;
    transform: rotate(0);
    background-color: #fff !important;
    box-shadow: 0px 10px 20px #0000001a;
    margin-right: 10px;
}

.owl-theme.owl_slider .owl-stage {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.owl-theme.owl_slider .item {
    height: 100%;
}

.owl-theme .owl-dots .owl-dot span {
    background: #ffffff70;
    width: 10px;
    height: 10px;
    display: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.guiding_alumni_block_wrap .owl-theme.owl_slider .item {
    padding: 15px 0;
}

.guiding_alumni_block .guiding_alumni_top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 12px;
}

.guiding_alumni_block .guiding_alumni_top .guiding_alumni_profile_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0px 0px 3px 2px #eee;
}

.guiding_alumni_block .guiding_alumni_top .guiding_alumni_profile_name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #4d2a7c;
    font-family: "Philosopher", sans-serif;
    font-style: normal;
}

.guiding_alumni_college_cource {
    padding-top: 14px;
}

.guiding_alumni_college_cource ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.guiding_alumni_college_cource ul li:not(:last-child) {
    margin-bottom: 12px;
}

.guiding_alumni_college_cource ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-wrap: wrap;
    -moz-box-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    color: #575757;
    font-style: normal;
}

.guiding_alumni_college_cource ul li i.college {
    width: 24px;
    height: 24px;
    background: url(/public/static/assets/images/icons/small-school.svg) no-repeat 0 0;
    margin-right: 8px;
}

.guiding_alumni_college_cource ul li i.tool {
    width: 24px;
    height: 24px;
    background: url(/public/static/assets/images/icons/tool.svg) no-repeat 0 4px;
    margin-right: 8px;
}

.guiding_alumni_college_cource ul li i.cap {
    width: 24px;
    height: 24px;
    background: url(/public/static/assets/images/icons/graduation-cap.svg) no-repeat center / 100%;
    margin-right: 8px;
}

.guiding_alumni_college_cource ul li i {
    /* filter: invert(9%) sepia(79%) saturate(6591%) hue-rotate(25deg) brightness(85%) contrast(115%);-webkit-filter: invert(9%) sepia(79%) saturate(6591%) hue-rotate(25deg) brightness(85%) contrast(115%); */
    font-size: 18px;
    background-size: 20px !important;
}

.guiding_alumni_college_cource ul li span {
    width: calc(100% - 32px);
    text-align: left;
    font-size: 15px;
    line-height: 17px;
}

.btn-signUp {
    background: #4d2a7c;
    opacity: 1;
    width: 140px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid #4d2a7c;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.btn-signUp:hover {
    background: #fff;
    color: #4d2a7c;
}

/*watch tab video pop up css*/

.other_links_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-wrap: wrap;
    -moz-box-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.other_links_wrap>div {
    padding: 0px 50px 0px;
    margin: 30px 0 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.other_links_wrap>div:first-child {
    border-right: 1px solid #e5e5e5;
}

.other_links_wrap>div h4 {
    font-size: 26px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Philosopher", sans-serif;
    font-style: normal;
}

.other_links_wrap .btn-signUp {
    background: #fe9d2b;
    border: 2px solid #fe9d2b;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    height: 45px;
    padding: 0 30px;
    width: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.other_links_wrap .btn-signUp:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #4e2878;
}

.powerBy {
    margin-top: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: end;
    align-items: center;
}

.powerBy span {
    margin-right: 20px;
    font-size: 16px;
    font-style: italic;
    margin-top: -6px;
}

.powerBy.justify-content-center {
    justify-content: center;
    color: #000;
}

.univariety-wrap .owl-dots {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-wrap: wrap;
    -moz-box-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}

.univariety-wrap .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: #666;
    border-radius: 50%;
    margin: 5px;
    opacity: 0.4;
}

.univariety-wrap .owl-dots .owl-dot.active {
    opacity: 1;
}

.univariety-wrap .guiding_alumni .owl-dots .owl-dot {
    background: #fff;
}

@media (max-width: 830px) {
    .other_links_wrap>div {
        padding: 0px 40px 0px;
    }
}

@media (max-width: 767px) {
    .other_links_wrap {
        flex-direction: column;
        align-items: center;
    }

    .other_links_wrap>div:first-child {
        border-right: 0px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 40px;
        margin: 30px 0 0;
    }
}

@media (max-width: 575px) {
    .univariety-wrap section {
        padding: 50px 0;
        overflow: hidden;
    }

    .guiding_alumni {
        padding: 40px 0;
    }

    .powerBy {
        justify-content: center;
        align-items: center;
        margin-bottom: -20px;
    }

    /* .mobilebgsec {width: 100%;} */
}



@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");

.mbl_v {
    display: block;
}

@media (min-width: 992px) {
    .mbl_v {
        display: none;
    }
}

.desk_v {
    display: none;
}

@media (min-width: 992px) {
    .desk_v {
        display: block;
    }
}

.p_rel {
    position: relative;
}

.div_gradient_text {
    right: 60px;
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.div_gradient {
    right: 0;
    width: 70%;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    background: #d9832b;
    background: transparent linear-gradient(270deg,
            rgba(217, 131, 43, 0) 2%,
            #f5700f 25%,
            #ec411b 54%,
            #600036 77%,
            #000a3e 100%);
    mix-blend-mode: multiply;
}

.div_wid {
    text-align: left;
}

@media (min-width: 768px) {
    .div_wid {
        text-align: right;
    }
}

.div_wid h1 {
    font-size: 36px;
    color: white;
    font-family: "Philosopher", sans-serif;
    text-align: right;
}

.gradient2_h {
    position: absolute;
    top: 20%;
    z-index: 9;
    height: 134px;
}

.carousel_d_mbl {
    position: relative;
    background-image: url("/public/static/assets/images/carousel_header.png");
    padding: 30px 18px 30px 18px;
    background-position: center;
    background-size: cover;
    margin-top: -10px;
}

.carousel_d_mbl .carousel_d h1 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 26px;
    font-family: "Philosopher", sans-serif;
    text-align: center;
}

.carousel_d_mbl.last_imgstrip {
    margin-top: -24px;
}




.choice-section {
    position: relative;
    min-height: 360px;
    background: url("/public/static/assets/images/alumni1.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.choice-overlay {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.choice-panel {
    color: #fff;
    max-width: 700px;
    border-radius: 0.75rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(90deg,
            rgba(100, 0, 54, 0.85) 0%,
            rgba(137, 30, 78, 0.82) 35%,
            rgba(78, 40, 120, 0.85) 100%);
}

.choice-title {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.3;
}

.choice-btn {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 700;
    border-radius: 0;
    padding: 0.6rem 1.2rem;
}

.choice-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .choice-section {
        min-height: 300px;
    }

    .choice-panel {
        padding: 1.25rem 1.5rem;
        text-align: center;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(100, 0, 54, 0.9) 0%, rgba(78, 40, 120, 0.9) 100%);
    }

    .choice-title {
        font-size: 1.4rem;
    }
}

.div_wrap1 {
    padding: 0 20px;
}

.div_wrap2 {
    padding: 0 8px;
}



a.txt_orange_socia_ {
    color: #4d2a7c;
}

a.txt_orange_socia_:hover {
    color: #ec411b !important;
}



@media (min-width: 768px) {
    footer {
        background-image: url(/public/static/assets/images/HariShree_FooterDesign.png);
        background-position: center;
        background-size: cover;
    }
}

.copyright_txt p {
    margin: 0;
    text-align: center;
    font-size: 13px;
    padding: 10px 10px;
    line-height: 19px;
}

footer {
    padding: 100px 0;
    background-image: url("/public/static/assets/images/HariShree_FooterDesign.png");
    background-position: right;
    color: white;
}

@media (min-width: 768px) {
    footer {
        background-image: url("/public/static/assets/images/HariShree_FooterDesign.png");
        background-position: center;
        background-size: contain;
    }
}

footer h6 {
    font-size: 16px;
    line-height: 29px;
    color: white;
    margin-top: 20px;
}

footer p {
    font-size: 16px;
    line-height: 29px;
    color: white;
    margin-bottom: 1px !important;

}

footer p a {
    color: white;
    text-decoration: none;
}

footer p a:hover {
    color: #fe9d2b;
}

footer ul {
    padding-left: 0;
    margin-bottom: 0;
}

footer ul li {
    list-style: none;
    line-height: 29px;
    font-size: 16px;
}

footer ul li a {
    color: #fe9d2b;
    text-decoration: underline;
}

footer ul li a:hover {
    color: white;
    text-decoration: underline;
}

footer .social_media_icons li {
    width: 25px;
    line-height: 40px;
}

footer .social_media_icons a {
    width: 25px;
}

footer .social_media_icons a:hover {
    opacity: 0.8;
}

.nav-item a {
    font-size: 15px;
}
a.dropdown-item {
    font-size: 15px;
}
@media (min-width: 768px) {
    .title_h3 {
        font-size: 28px;
        margin-bottom: 11px;
    }
}
.title_h3 {
    font-size: 25px;
    color: #4D2A7C;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    margin-bottom: 17px;
}
.title_h3.txt_orange_title {
    color: #ec411b;

}
/* .list_li li {
    line-height: 29px;
    color: #575757;
    font-size: 14px;
}
.list_li {
    padding-left: 17px;
    margin-bottom: 0;
}
@media (min-width: 1350px) {
    .list_li li {
        font-size: 16px;
    }
} */