:root {
    --facebook: #3C5B9B;
    --twitter: #000;
    --linkedin: #027ba5;
    --youtube: #f70000;
    --instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --whatsapp: #00cf4d;
    --logoColor: #98b446;
    --blackColor: #000;
    --darkGreyColor: #333;
    --whiteColor: #fff;
    --gradient: linear-gradient(to left, #98b446, #6b7f2f);
    --gradientDeg: linear-gradient(0deg, rgba(152, 180, 70, 1) 0%, rgba(107, 127, 47, 1) 35%);

    --primary: #d50216;
    /* Momentum Red */
    --secondary: #2F3DBD;
    /* Royal Blue */
    --success: #00B67A;
    /* Green */
    --dark: #111827;
    /* Dark Navy */
    --light: #F8FAFC;
    /* Background */
    --ff-1: "Plus Jakarta Sans", sans-serif;
    --ff-2: "Inter", sans-serif;


}

body {
    background: var(--whiteColor);
    color: var(--darkGreyColor);
    font-family: var(--ff-1);
    font-size: 14px;
}

.container {
    max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-2);
    color: var(--darkGreyColor);
    margin: 0;
    padding: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--darkGreyColor);
}

p a {
    color: var(--darkGreyColor);
    width: auto;
    display: inline-block;
}

p a:hover {
    text-decoration: underline;
    outline: none;
}

p {
    letter-spacing: normal;
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 15px;
    color: var(--darkGreyColor);
}

a {
    color: var(--darkGreyColor);
    text-decoration: none;
    outline: none;
    display: block;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
    width: 100%;
}

blockquote {
    padding: 0;
    border: 0;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

label {
    color: var(--darkGreyColor);
    display: block;
    font-weight: 400;
    margin: 0;
}

textarea {
    border-radius: 0;
    background: var(--whiteColor);
    height: 100px;
}

select {
    background: var(--whiteColor);
    border: 1px solid #ccc;
    box-shadow: none;
    box-sizing: border-box;
}

textarea,
select,
input {
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 0;
    background: var(--whiteColor);
    line-height: 40px;
    box-shadow: none;
    padding: 0 10px;
    box-sizing: border-box;
}

input[type="file"] {
    width: 100%;
    padding: 0px;
    font-size: 12px;
    margin: 0;
}

.form-control {
    border-radius: 4px;
    height: 40px;
    font-size: 14px;
}

textarea.form-control {
    height: 100px;
}

.form-control::-moz-placeholder {
    color: var(--darkGreyColor);
}

.form-control:focus::-moz-placeholder {
    color: #d50216
}

.form-control:focus {
    border-color: #d50216;
    box-shadow: none;
}

/* Social Media */
.socialMedia {
    margin: 0;
    list-style: none;
    padding: 0px;
    width: auto;
}

.socialMedia li {
    margin: 0px;
    display: inline-block;
}

.socialMedia li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor);
    transition: .3s;
}

.socialMedia li a svg {
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}

.socialMedia li.facebook a {
    background: var(--facebook);
}

.socialMedia li.twitter a {
    background: var(--twitter);
    color: var(--whiteColor);
}

.socialMedia li.linkedin a {
    background: var(--linkedin);
}

.socialMedia li.youtube a {
    background: var(--youtube);
}

.socialMedia li.instagram a {
    background: var(--instagram);
}

.goToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d50216;
    color: #fff;
    border-radius: 50%;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all .3s ease;
}

.goToTop svg {
    width: 20px;
    height: 20px;
}

.goToTop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.goToTop:hover {
    background: #2F3DBD;
    color: #fff;
    transform: translateY(-3px);
}

/**/






/* Header*/
.header {
    float: left;
    width: 100%;
}

.header.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}



.header .topbar {
    display: block;
    position: relative;
    background: #0F172A;
}

.header.stricky-fixed .topbar {
    display: none;
}

.topbar-toggle {
    display: none;
    width: max-content;
    background: #0b1224;
    color: #fff;
    border: 0;
    padding: 8px;
    font-weight: 700;
    justify-content: space-between;
    align-items: center;
}

.topbar-toggle svg {
    width: 25px;
    height: 25px;
}

.topbarMobile {
    display: none;
}

/* Header Top Left */
.topLeft {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.topLeft .callAction {
    font-size: 14px;
    color: var(--whiteColor);
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.topLeft .callAction .telephone,
.topLeft .callAction .whatsapp {
    width: 25px;
    height: 25px;
    padding: 5px;
    border-radius: 4px;
    background: var(--gradientDeg);
    margin-right: 5px;
    color: var(--whiteColor);
}

.topLeft .callAction .whatsapp {
    background: var(--whatsapp);
}

.topLeft .socialMedia li a {
    width: 28px;
    height: 28px;
}

.topLeft .socialMedia li a svg {
    width: 15px;
    height: 15px;
}

.topLeft .callAction:hover,
.topLeft .callAction:focus {
    color: var(--logoColor);
}

.topMenu {
    display: flex;
    align-items: center;
    min-height: 40px;
    justify-content: center;
}

.topMenu ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px 0;
    gap: 10px;
}

.topMenu ul li {
    list-style: none;
}

.topMenu ul li a {
    color: #fff;
    font-size: 14px;
    padding: 7px 12px;
    line-height: normal;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topMenu ul li a:hover,
.topMenu ul li a:focus {
    color: #fed433;
}

.middleHeader {
    display: block;
    position: relative;
    padding: 5px 0;
    background: #fff;
}

.wpsLogo {
    padding: 0;
    max-width: 250px;
}

.headerTabs {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    height: 100%;
}

.headerTabs a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0F172A;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 12px;
    background: #f3f7ff;
    border-radius: 30px;
    border: 1px solid #e1e9f8;
    transition: .3s;
    border-radius: 4px;


}

.headerTabs a svg {
    width: 18px;
    height: 18px;
}

.headerTabs a.onlineTest:hover,
.headerTabs a.onlineTest:focus {
    color: #d50216;
}


.headerTabs a.callAction svg {
    width: 20px;
    height: 20px;
}

.headerTabs a.callAction:hover,
.headerTabs a.callAction:focus {
    color: #d50216;
}

.headerTabs a.chhatraSanghChowk {
    background: linear-gradient(135deg, #ffd84d, #ffb703);
    border: 1px solid #f0a500;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    box-shadow: 0 7px 18px rgba(255, 183, 3, .28);



}


/* Menu */
.navigationBar {
    display: block;
    position: relative;
    background: linear-gradient(90deg, #0B3D91 0%, #2F7DB8 50%, #0B3D91 100%);
}

.navigationBar.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}


.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--whiteColor);
    font-size: 25px;
    border-radius: 0;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    box-shadow: none;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: linear-gradient(135deg, #ffd84d, #ffb703);
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.navigation .menu ul li {
    position: relative
}

.navigation .menu ul li a {
    padding: 12px 30px 12px 15px;
    display: block;
    color: var(--whiteColor);
    text-transform: capitalize;
    transition: all .3s ease;
    font-size: 15px;
    background: transparent;
    font-weight: 600;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: #fed433;
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left
}


.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 250px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: var(--whiteColor);
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    border-bottom: 0
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    color: var(--whiteColor);
    background: #d50216;
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: var(--whiteColor);
    background: #d50216;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: var(--whiteColor);
    color: #333
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: var(--whiteColor);
    background: #d50216;
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: var(--darkGreyColor);
    font-size: 14px;
    padding: 8px 15px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    background: var(--whiteColor);
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}


.navigation ul li.cs-submenu button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: var(--whiteColor);
    position: absolute;
    top: 11px;
    right: 6px;
}

.navigation ul li.cs-submenu a button svg {
    width: 16px;
    height: 16px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: #fed433;
}

.navigation .menu ul li ul.cs-dropdown li.cs-submenu button {
    top: 5px;

}

.navigation .menu ul li ul.cs-dropdown li.cs-submenu button svg {
    transform: rotateZ(-90deg);
}

.navigation .menu ul li ul.cs-dropdown li.cs-submenu:hover button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: var(--darkGreyColor);
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: var(--darkGreyColor);
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: var(--whiteColor);
}

.navigation .navbar {
    display: none;
    padding: 7px 0;
    margin: 0
}

.sliderSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}


.sliderSection .carousel-control-prev,
.sliderSection .carousel-control-next {
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    transform: translate(0, -50%);
    color: #fff;
    font-size: 14px;
    outline: 0;
    background: #d50216;
    border-radius: 100%;
    border: 1px solid #d50216;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 999;
    position: absolute;
    opacity: 1;
    left: inherit;
}

.sliderSection .carousel-control-next-icon,
.sliderSection .carousel-control-prev-icon {
    background-size: 50%;
}

.sliderSection .carousel-control-prev {
    left: 5%;
}

.sliderSection .carousel-control-next {
    right: 5%;
}

.sliderSection .carousel-control-prev:hover,
.sliderSection .carousel-control-next:hover,
.sliderSection .carousel-control-prev:focus,
.sliderSection .carousel-control-next:focus {
    background: linear-gradient(90deg, #0B3D91 0%, #2F7DB8 50%, #0B3D91 100%);
    border-color: #0B3D91;
}

.featuredSection {
    float: left;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    overflow: hidden;
}

.featuredTitle {
    margin-bottom: 15px;
}

.featuredTitle {
    color: #d50216;
    font-size: 24px;
    font-weight: 900;
    margin: 8px 0 0;
}

.featuredSection p {
    color: #333;
    font-size: 16px;
    margin: 0;
}


.featured-logo-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.featured-logo-slider::before,
.featured-logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.featured-logo-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc, transparent);
}

.featured-logo-slider::after {
    right: 0;
    background: linear-gradient(270deg, #f8fafc, transparent);
}

.featured-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: featuredScroll 25s linear infinite;
}

.featured-logo-slider:hover .featured-track {
    animation-play-state: paused;
}

.featured-logo {
    width: 230px;
    height: 75px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition: .3s ease;
}

.featured-logo img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: .72; */
    transition: .3s ease;
}

.featured-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
    border-color: #d50216;
}

.featured-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes featuredScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



/**/
.aboutCoachingSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.aboutContent .sectionSubtitle {
    color: #d50216;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
}

.aboutContent h1,
.aboutContent .aboutContentTitle {
    color: #0B3D91;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}

.aboutContent h2 {
    color: #0F172A;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
}

.aboutContent p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 14px;
}

.about-btn {
    display: inline-flex;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 12px;
    transition: .3s;
}

.about-btn:hover {
    background: #17479E;
    color: #fff;
    transform: translateY(-3px);
}

.program-timeline {
    position: relative;
    min-height: 460px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: #d50216;
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-line::before,
.timeline-line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #d50216;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-line::before {
    top: 0;
}

.timeline-line::after {
    bottom: 0;
}

.program-card {
    position: absolute;
    width: 180px;
    min-height: 140px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: #d50216;
    box-shadow: 0 25px 50px rgba(15, 23, 42, .14);
}

.program-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #d50216;
}

.card-left {
    left: calc(50% - 230px);
}

.card-left::after {
    right: -24px;
}

.card-right {
    right: calc(50% - 230px);
}

.card-right::after {
    left: -24px;
}

.program-card:nth-child(2) {
    top: 55px;
}

.program-card:nth-child(3) {
    top: 190px;
}

.program-card:nth-child(4) {
    top: 325px;
}

.program-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #FFF1F2;
    color: #d50216;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
}

.program-card .programTitle {
    color: #0F172A;
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}



/**/
.updateHub {
    float: left;
    width: 100%;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(47, 125, 184, .12), transparent 35%),
        #F8FAFC;
    padding: 40px 0;

    background: #eee;
}

.updateTitle {
    color: #0B3D91;
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
}

.updateText {
    color: #64748B;
}

.updateTabs {
    background: #fff;
    padding: 10px;
    border-radius: 60px;
    display: inline-flex;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .10);
}

.updateTabs .nav-link {
    border-radius: 50px;
    color: #0F172A;
    font-weight: 800;
    padding: 13px 24px;
}

.updateTabs .nav-link.active {
    background: #d50216;
    color: #fff;
}

.updateContent {
    /* background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .8);
     padding: 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    border-radius: 28px; */

    backdrop-filter: blur(14px);



}

.updateItem {
    min-height: 210px;
    border-radius: 24px;
    padding: 28px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.updateItem:before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    background: rgba(255, 255, 255, .18);
}

.updateItem.red {
    background: linear-gradient(135deg, #d50216, #E30613);
}

.updateItem.blue {
    background: linear-gradient(135deg, #0F172A, #2F7DB8);
}

.updateItem.yellow {
    background: linear-gradient(135deg, #FFD23F, #F59E0B);
    color: #111827;
}

.updateBadge {
    width: max-content;
    background: rgba(255, 255, 255, .22);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.updateItem .updateItemTitle {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin: 15px 0 8px;
    color: #fff;
    min-height: 84px;
    align-content: center;
}

.updateItem.yellow .updateItemTitle {
    color: #0F172A;
}

.updateItem p {
    margin: 0;
    opacity: .9;
}

.updateItem b {
    margin-top: 22px;
}

.paperCard {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    min-height: 165px;
    text-decoration: none;
    color: #0F172A;
    display: block;
    border: 1px solid #E5E7EB;
    transition: .3s;
}

.paperCard:hover {
    transform: translateY(-6px);
    border-color: #d50216;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .12);
}

.paperCard span {
    color: #2F7DB8;
    font-weight: 900;
}

.paperCard .paperCardTitle {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin: 14px 0;

}

.paperCard small {
    background: #d50216;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: 600;
}

.quickGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quickBox {
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    padding: 20px 15px;
    font-weight: 600;
    text-align: center;
    transition: .3s;
    border: 1px solid #ccc;
}

.quickBox:hover {
    background: #d50216;
    color: #fff;
    transform: translateY(-5px);
}

.updateItem.yellow h4 {
    color: #333;
}


/**/
.momentum-modern-section {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: #fff;
}

.momentum-modern-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 61, 145, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 61, 145, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .28;
    pointer-events: none;
}

.shape-one {
    width: 190px;
    height: 190px;
    background: var(--brand-red);
    top: 10%;
    left: -70px
}

.shape-two {
    width: 260px;
    height: 260px;
    background: #2F7DB8;
    right: -100px;
    bottom: 8%
}

.sectionTitle {
    color: #0B3D91;
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
}

.sectionDesc span {
    color: var(--brand-red)
}

.sectionDesc p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 780px;
    margin: 15px auto 0;
}

.feature-shell {
    position: relative;
    z-index: 1;
    margin-top: 54px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .8);
    overflow: hidden;
}

.feature-topbar {
    height: 8px;
    background: var(--brand-gradient)
}

.gallery-card {
    height: 100%;
    /* padding: 22px;
    background: linear-gradient(135deg, rgba(11, 61, 145, .08), transparent 40%), #ffffff; */
}

.main-award-swiper {
    border-radius: 24px;
    overflow: hidden;
    background: #eaf1fb;
    box-shadow: 0 18px 45px rgba(11, 61, 145, .18);
    border: 1px solid rgba(11, 61, 145, .08);
}

.award-slide {
    position: relative;
    aspect-ratio: 16/11;
    min-height: 430px;
}

.award-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.award-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .64));
    pointer-events: none;
}

.award-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.award-caption .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(213, 2, 22, .95);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.award-caption .label svg {
    width: 16px;
    height: 16px;
}

.award-caption .awardTitle {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.thumbs-wrap {
    margin-top: 16px
}

.thumb-swiper .swiper-slide {
    opacity: .52;
    cursor: pointer;
    transition: .25s ease
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-2px)
}

.thumb-item {
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid transparent;
    background: #fff;
    box-shadow: 0 10px 25px rgba(16, 24, 40, .08);
    margin-top: 3px;
}

.thumb-swiper .swiper-slide-thumb-active .thumb-item {
    border-color: #d50216;
}

.thumb-item img {
    width: 100%;
    height: 86px;
    object-fit: cover;
    display: block;
}

.message-card {
    height: 100%;
    padding: 30px;
    background:
        linear-gradient(145deg, rgba(213, 2, 22, .06), transparent 38%),
        linear-gradient(315deg, rgba(11, 61, 145, .08), transparent 45%),
        #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.message-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 38px solid rgba(213, 2, 22, .06);
    right: -90px;
    top: -90px;
}

.director-header {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.director-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    padding: 12px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 16px 35px rgba(11, 61, 145, .13);
    border: 1px solid rgba(11, 61, 145, .08);
}

.director-title {
    font-size: 30px;
    font-weight: 800;
    color: #d50216;
    margin: 0;
}

.director-title small {
    display: block;
    margin: 0;
    font-weight: 700;
    color: #17479E;
    font-size: 18px;
}

.director-badge {
    display: inline-block;
    background: #FED433;
    color: #333;
    padding: 8px 15px;
    line-height: normal;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.message-card p {
    position: relative;
    z-index: 1;
    color: #333;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}

.stat-box {
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(11, 61, 145, .25);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.stat-box img {
    max-width: 50px;
}

.stat-box strong {
    display: block;
    color: #d50216;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.stat-box span {
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: 800;
}

.read-more-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    text-decoration: none;
    color: #fff;
    background: #d50216;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(213, 2, 22, .27);
    transition: .25s ease;
}

.read-more-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(213, 2, 22, .34);
}

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-blue);
    box-shadow: 0 12px 30px rgba(11, 61, 145, .18);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(11, 61, 145, .45);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--brand-red);
    width: 28px;
    border-radius: 999px;
}

/**/
.topRankersSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #d9eafb;
    position: relative;
    overflow: hidden;
}

.top-rankers-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#e5e7eb 1px, transparent 1px),
        linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .35;
}

.ranker-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.ranker-tabs button {
    border: none;
    background: #fff;
    color: #0f3d8c;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.ranker-tabs button.active,
.ranker-tabs button:hover {
    background: #e31e24;
    color: #fff;
}

.ranker-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #bdcedf;
    border-top: 3px solid #0f3d8c;
    margin-top: 15px;
}

.ranker-card:hover {
    transform: translateY(-5px);
}

.ranker-img {
    width: 115px;
    height: 150px;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    background: #0f3d8c;
    padding: 15px;
    top: -16px;
    position: relative;
    display: flex;
    align-items: center;
}

.ranker-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #3d73cf;
}

.exam-tag {
    position: relative;
    color: #e31e24;
    border: 1px solid #e31e24;
    padding: 5px 12px;
    line-height: normal;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.ranker-content {
    padding: 0;
}

.ranker-content .rankerName {
    font-size: 18px;
    font-weight: 700;
    color: #0f3d8c;
    margin-bottom: 10px;
    border-left: 3px solid #0f3d8c;
    padding: 0 5px;
}

.rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #333;
    font-weight: 600;
}

.rankerSwiper {
    padding-bottom: 40px;
    margin-top: 40px;
}

.swiper-pagination-bullet-active {
    background: #e31e24;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    color: #0f3d8c;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
    background: #e31e24;
    color: #fff;
}

/**/
.lectureVideoSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #F8FAFC;
}

.section-heading .sub-title {
    display: inline-block;
    color: #d50216;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-heading h2 {
    color: #17479E;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 820px;
    margin: auto;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

.video-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: .35s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, .14);
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.06);
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0) 30%,
            rgba(15, 23, 42, .45) 100%);
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 45px;
    background: #d50216;
    color: #fff;
    border-radius: 6px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 35px rgba(200, 16, 46, .35);
}

.play-btn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(200, 16, 46, .35);
    animation: pulsePlay 1.6s infinite;
}

.play-btn svg {
    width: 28px;
    height: 28px;
}

.video-content {
    padding: 20px;
}

.video-tag {
    display: inline-block;
    background: #FFD23F;
    color: #111827;
    padding: 6px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.video-content .videoTitle {
    color: #0F172A;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 800;
    transition: .3s;
}

.view-more-btn:hover {
    background: #17479E;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes pulsePlay {
    0% {
        transform: scale(.85);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}



/**/
.popularCoursesSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #d9eafb;
}

.section-heading {
    margin-bottom: 40px;
}

.sub-title {
    color: #d50216;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.section-heading h2 {
    color: #17479E;
    font-size: 42px;
    font-weight: 900;
    margin: 8px 0 10px;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    color: #64748B;
    line-height: 1.7;
}

.course-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
    transition: .35s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, .14);
}

.course-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.08);
}

.course-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0) 25%,
            rgba(15, 23, 42, .65) 100%);
}

.course-content {
    padding: 15px;
    position: relative;
}

.course-content span {
    display: inline-block;
    background: #FFD23F;
    color: #111827;
    padding: 6px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.course-content h3 {
    color: #0F172A;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.course-content a {
    display: inline-flex;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 800;
    transition: .3s;
}

.course-content a:hover {
    background: #17479E;
    color: #fff;
}



/**/
.founderStorySection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .12), transparent 35%),
        #F8FAFC;
    background: #d9eafb;
}

.founder-story-card {
    /* background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .12); */
    overflow: hidden;
    position: relative;
}

.founder-media {
    position: relative;
    min-height: 580px;
    background: linear-gradient(135deg, #0F172A, #17479E);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.founder-media::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #1A4A75;
    opacity: .52;
    right: -110px;
    top: -110px;
}

.founder-img {
    position: relative;
    z-index: 2;
}

.founder-img img {
    max-height: 500px;
    width: auto;
    display: block;
}

.founder-video-btn {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #0F172A;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
}

.founder-video-btn span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #d50216;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.founder-info {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 3;
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    padding: 18px 22px;
    min-width: 260px;
}

.founder-info .founderName {
    color: #d50216;
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.founder-info p {
    color: #17479E;
    font-weight: 800;
    margin: 4px 0;
}

.founder-info small {
    color: #475569;
    font-weight: 700;
}

.founder-content {
    padding: 20px 10px;
}

.section-tag {
    display: inline-block;
    background: #FFF1F2;
    color: #d50216;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 18px;
}

.founder-content h2,
.founderStorySectionTitle {
    color: #0B3D91;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.founder-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.vision-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    color: #333;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
}

.vision-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #d50216;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.theme-btn {
    display: inline-flex;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 900;
    transition: .3s;
}

.theme-btn:hover {
    background: #17479E;
    color: #fff;
    transform: translateY(-3px);
}



/**/
.whyChooseSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .12), transparent 35%),
        #fff;
    /* overflow: hidden; */
}

.why-content .whytitle {
    color: #0B3D91;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.why-content h4 {
    color: #0B3D91;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}


.why-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 16px;
}

.why-list {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.why-item {
    display: flex;
    gap: 16px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 18px;
    transition: .3s;
}

.why-item:hover {
    transform: translateX(6px);
    border-color: #d50216;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.why-item span {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #d50216;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.why-item .whyItemTitle {
    color: #333;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.why-item p {
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.theme-btn {
    display: inline-flex;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 900;
    transition: .3s;
}

.theme-btn:hover {
    background: #17479E;
    color: #fff;
    transform: translateY(-3px);
}

.why-image-card {
    position: sticky;
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .14);
    border: 1px solid #E5E7EB;
    top: 104px;
}

.why-image-card img {
    width: 100%;
    border-radius: 22px;
    display: block;
}

.why-stat-box {
    position: absolute;
    left: 35px;
    bottom: 35px;
    background: #d50216;
    color: #fff;
    border-radius: 18px;
    padding: 18px 24px;
    box-shadow: 0 15px 35px rgba(200, 16, 46, .35);
}

.why-stat-box strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.why-stat-box span {
    font-size: 13px;
    font-weight: 800;
}


/**/
.resultGallerySection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #f8fafc;
    position: relative;
}

.result-gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top,
            rgba(23, 71, 158, .05),
            transparent 35%),
        radial-gradient(circle at right bottom,
            rgba(200, 16, 46, .05),
            transparent 35%);
}

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    background: #FFF1F2;
    color: #d50216;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 850px;
    margin: auto;
    color: #64748B;
    line-height: 1.8;
}

.result-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    transition: .35s;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .15);
}

.result-image {
    padding: 15px;
    background: #fff;
}

.result-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.result-content {
    padding: 0 20px 24px;
    text-align: center;
}

.result-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: .3s;
}

.theme-btn:hover {
    background: #17479E;
    color: #fff;
    transform: translateY(-3px);
}

/**/

.competitiveExamSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .10), transparent 35%),
        #ECF2F9;
}

.section-heading {
    margin-bottom: 48px;
}

.sub-title {
    display: inline-block;
    color: #d50216;
    background: #FFF1F2;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-heading h2 {
    color: #0F172A;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-heading p {
    max-width: 850px;
    margin: auto;
    color: #64748B;
    line-height: 1.8;
}

.exam-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #D2DEF6;
    border-radius: 26px;
    padding: 34px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
    transition: .35s ease;
}

.exam-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    right: -80px;
    top: -80px;
    background: rgba(23, 71, 158, .08);
    transition: .35s ease;
}

.exam-card:hover,
.exam-card.featured {
    transform: translateY(-8px);
    border-color: #d50216;
    box-shadow: 0 28px 65px rgba(15, 23, 42, .14);
}

.exam-card:hover::before,
.exam-card.featured::before {
    background: rgba(200, 16, 46, .12);
}

.exam-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #EEF4FF;
    color: #17479E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    transition: .35s;
}

.exam-icon img {
    width: 40px;
}

.exam-card:hover .exam-icon,
.exam-card.featured .exam-icon {
    background: #d50216;
    color: #fff;
}

.exam-card .examTitle {
    color: #333;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.exam-card p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.exam-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d50216;
    text-decoration: none;
    font-weight: 900;
}

.exam-card a i {
    transition: .3s;
}

.exam-card a:hover i {
    transform: translateX(5px);
}

/**/
.whyMomentumStrip {
    float: left;
    width: 100%;
    background: #0F172A;
}

.why-strip-img {
    height: 100%;
    min-height: 430px;
}

.why-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-strip-content {
    height: 100%;
    min-height: 430px;
    padding: 70px 80px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .08), transparent 30%),
        linear-gradient(135deg, #17479E, #0F172A);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-strip-content .section-tag {
    width: max-content;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.why-strip-content .whyMomentumStripTitle {
    color: #FFD23F;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 26px;
}

.why-strip-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.why-strip-content li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
}

.why-strip-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #16A34A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.register-btn {
    width: max-content;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 900;
    transition: .3s;
}

.register-btn:hover {
    background: #FFD23F;
    color: #0F172A;
    transform: translateY(-3px);
}

/***/
.siteFooter {
    float: left;
    width: 100%;
    background: #071A33;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-main {
    position: relative;
    padding: 50px 0 40px;
    background:
        radial-gradient(circle at top right, rgba(200, 16, 46, .25), transparent 22%),
        radial-gradient(circle at bottom left, rgba(200, 16, 46, .18), transparent 24%),
        linear-gradient(135deg, #06172E, #0A2446);
}

.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .28;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 230px;
    margin-bottom: 22px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.footer-about p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
}

.excellenceImg {
    max-width: 130px;
}

.excellence-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD23F, #B8860B);
    color: #071A33;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(255, 210, 63, .22);
}

.excellence-badge strong {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.excellence-badge span {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-widget .footerTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 26px;
    position: relative;
    color: #fff;
}

.footer-widget .footerTitle::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: #d50216;
    margin-top: 12px;
    border-radius: 5px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-widget a:hover {
    color: #d50216;
    padding-left: 4px;
}

.footer-widget ul li a::before {
    content: "›";
    color: #d50216;
    font-weight: 900;
    margin-right: 10px;
}

.footer-widget ul li svg {
    width: 18px;
    min-width: 18px;
    min-height: 19px;
    height: 18px;
    color: #d50216;
}

.footer-time {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(255, 255, 255, .18);
}

.footer-time svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 32px;
    color: #d50216;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.footer-time strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.footer-time span {
    color: #CBD5E1;
}

.footer-widget a.footer-btn {
    display: inline-flex;
    background: #d50216;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    border: 1px solid #f23d4e;
    font-weight: 600;
}

.footer-widget a.footer-btn:hover,
.footer-widget a.footer-btn:focus {
    background: linear-gradient(135deg, #ffd84d, #ffb703);
    border: 1px solid #f0a500;
    padding: 10px 25px;
    color: #111827;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-list li i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #d50216;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list li span,
.contact-list li a {
    color: #fff;
}

.contact-list li a::before {
    display: none;
}

.contact-list li a {
    font-weight: 600;
}

.contact-list li a:hover,
.contact-list li a:focus {
    color: #d50216;
}

.contact-us-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 900;
    color: #fff !important;
}

.contact-us-link i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px dashed #d50216;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-strip {
    margin-top: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
}

.brand-item {
    text-align: center;
    border-right: 1px solid #E5E7EB;
}

.brand-item:last-child {
    border-right: 0;
}

.brand-item a:hover span {
    color: #d50216;
}

.brand-item img {
    max-width: 150px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}

.brand-item span {
    display: block;
    color: #0F172A;
    font-size: 14px;
    font-weight: 700;
}

.footer-bottom {
    background: #0A1F3D;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    color: #CBD5E1;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom p a {
    color: #fed433;
}

.footer-bottom p svg {
    color: #d50216;
}

.footer-bottom strong,
.heart {
    color: #d50216;
}

.footer-policy {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-policy a,
.footer-policy span {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-policy a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.footer-social span {
    font-weight: 800;
    color: #fff;
    margin-right: 5px;
}

.footer-social .socialMedia li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.socialMedia li a:hover {
    transform: translateY(-4px);
}



.coachingBanner {
    float: left;
    width: 100%;
    min-height: 218px;
    background: linear-gradient(120deg, #eef4f8, #ffffff);
    position: relative;
    overflow: hidden;
}

.coaching-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 35%, rgba(255, 255, 255, .9) 0 70px, transparent 72px),
        radial-gradient(circle at 85% -20%, rgba(255, 255, 255, .9) 0 140px, transparent 142px),
        radial-gradient(circle at 75% 60%, rgba(220, 230, 238, .7) 0 120px, transparent 122px);
    opacity: .8;
}

.student-img {
    max-height: 218px;
    position: relative;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 35px 0 70px;
}

.banner-title {
    color: #d50216;
    font-weight: 800;
    font-size: 31px;
    margin-bottom: 20px;
}

.course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 22px;
    font-weight: 700;
    color: #3b3b3b;
}

.course-list span::before {
    content: "●";
    margin-right: 8px;
    color: #333;
}

.address-strip {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 73%;
    background: #d50216;
    color: #fff;
    font-size: 21px;
    padding: 10px 50px;
    font-weight: 400;
    z-index: 3;
    clip-path: polygon(35px 0, 100% 0, 100% 100%, 0 100%);
}

.address-strip strong {
    font-weight: 800;
}

/**/

.modernBreadcrumb {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    /*background:linear-gradient(135deg,#003b8f,#005ed9);*/
    background: linear-gradient(135deg, #ba8000, #dfac00);
    background: #0f172a;
}

.breadcrumbShape {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.modernBreadcrumb::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.breadcrumbContent {
    position: relative;
    z-index: 2;
}

.pageTitle h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pageTitle p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    margin-bottom: 25px;
}

.breadcrumbList {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbList li {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumbList a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.breadcrumbList a:hover {
    color: #d50216;
}

.breadcrumbList svg {
    width: 13px;
    height: 13px;
}

.breadcrumbList li:last-child {
    color: #d50216;
}


/**/
.aboutMomentum {
    float: left;
    width: 100%;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.sectionHeading {
    max-width: 720px;
    margin: 0 auto 50px;
}

.sectionHeading span {
    display: inline-block;
    background: #fff3cd;
    color: #d90012;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sectionHeading h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 10px;
}

.sectionHeading p {
    font-size: 17px;
    color: #333;
    margin: 0;
}

.aboutImageBox {
    float: left;
    max-width: 550px;
    position: relative;
    /* border-radius: 26px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(8, 36, 92, .16); */
    margin: 0 25px 15px 0;
}

.aboutImageBox img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.experienceBadge {
    position: absolute;
    right: -18px;
    bottom: 30px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcc29, #f39c12);
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(243, 156, 18, .45);
    text-align: center;
}

.experienceBadge h3 {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.experienceBadge span {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.aboutPageContent {
    /* background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(8, 36, 92, .08);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(8, 36, 92, .08); */
}

.aboutPageContent h2 {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.aboutPageContent h2 span {
    color: #d90012;
}

.aboutPageContent p,
.aboutDetails p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 16px;
    text-align: justify;
}

.aboutHighlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.aboutHighlights div {
    background: #f7faff;
    border: 1px solid #e1eaff;
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: .3s;
}

.aboutHighlights div:hover {
    transform: translateY(-5px);
    background: #08245c;
}

.aboutHighlights img {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.aboutHighlights strong {
    display: block;
    color: #08245c;
    font-size: 16px;
    font-weight: 800;
}

.aboutHighlights span {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.aboutHighlights div:hover strong,
.aboutHighlights div:hover span {
    color: #fff;
}

.aboutDetails {
    margin-top: 45px;
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 20px 55px rgba(8, 36, 92, .08);
    border-left: 6px solid #d90012;
}

.aboutDetails strong {
    color: #d90012;
}


/**/
.mstarSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #fff;
}


.mstarSection h2 {
    font-size: 32px;
    font-weight: 800;
    color: #08245c;
    margin-bottom: 20px;
}

.mstarSection h2 span {
    display: block;
    font-size: 24px;
    color: #d90012;
    margin-top: 10px;
}

.mstarSection p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-align: justify;
}

.mstarImage {
    position: relative;
}

.mstarImage img {}

.mstarBadge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: linear-gradient(135deg, #d90012, #ff4d5d);
    color: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(217, 0, 18, .30);
}

.mstarBadge strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.mstarBadge span {
    font-size: 13px;
}

.mstarFeatures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.mstarFeatures div {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.mstarFeatures svg {
    width: 45px;
    height: 45px;
    background: #08245c;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mstarFeatures div span {
    font-size: 16px;
    font-weight: 600;
}

.mstarBtn {
    display: inline-block;
    background: linear-gradient(135deg, #08245c, #0058d9);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.mstarBtn:hover {
    color: #fff;
    transform: translateY(-3px);
}


/**/
.modernAboutHero {
    float: left;
    width: 100%;
    padding: 60px 0 40px;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.aboutTag {
    display: inline-block;
    background: #ffd4d9;
    color: #ed1c24;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 22px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.modernAboutHero .modernAboutHeroTitle {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 600;
    color: #17233b;
    max-width: 540px;
    margin-bottom: 20px;
}

.aboutList {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.aboutList li {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.aboutList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 15px;
    height: 15px;
    border: 1px solid #ff1e32;
    color: #ff1e32;
    border-radius: 50%;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    font-weight: 700;
}

.aboutBtn {
    display: inline-block;
    background: #0d1d3a;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 0 12px 0 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(13, 29, 58, .20);
    transition: .3s;
}

.aboutBtn:hover {
    color: #fff;
    background: #ed1c24;
    transform: translateY(-3px);
}

.aboutHeroImage {
    width: 400px;
    max-width: 100%;
    margin-right: auto;
    position: relative;
}

.aboutHeroImage img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 55% 45% 48% 52% / 44% 50% 50% 56%;
    border-radius: 0 245px 245px 245px;
}

.studentBadge {
    position: absolute;
    left: -35px;
    bottom: 15px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #f51622;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 12px 30px rgba(245, 22, 34, .30);
}

.studentBadge strong {
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
}

.studentBadge span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 5px;
}

.featureRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 65px;
}

.featureBox {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s;
}

.featureBox:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 29, 58, .10);
    border-color: transparent;
}

.featureIcon {
    width: 54px;
    height: 54px;
    border: 1px solid #d9dee9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featureIcon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.featureBox h4 {
    font-size: 16px;
    color: #07122b;
    font-weight: 800;
    margin: 0 0 4px;
}

.featureBox p {
    font-size: 13px;
    color: #000;
    margin: 0;
}

/**/
.testimonialSection {
    float: left;
    width: 100%;
    padding: 55px 0 70px;
    background: #d9eafb;
}

.testimonialTitle {
    text-align: center;
    color: #f20d18;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

.testimonialSwiper {
    padding: 0 0 55px;
}

.testimonialCard {
    background: #fff;
    min-height: 230px;
    padding: 46px 28px 35px;
    border-radius: 12px;
    position: relative;
}

.testimonialCard::after {
    content: "";
    position: absolute;
    left: 72px;
    bottom: -22px;
    width: 0;
    height: 0;
    border-top: 23px solid #fff;
    border-right: 23px solid transparent;
}

.testimonialCard p {
    font-size: 15px;
    line-height: 1.55;
    color: #000;
    font-style: italic;
    margin: 0;
}

.studentInfo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding-left: 5px;
}

.studentInfo span {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #f20d18;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d7d7d7;
    background: #fff;
}

.studentInfo .studentName {
    font-size: 15px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #8ca09c;
    opacity: .7;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #f20d18;
    opacity: 1;
}




/**/
.coursesPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff, #f5f8ff);
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.sectionTitle {
    max-width: 850px;
    margin: 0 auto 15px;
}

.sectionTitle span {
    display: inline-block;
    background: #ffe8eb;
    color: #e60012;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.sectionTitle h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 15px;
}

.sectionTitle p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-weight: normal;
}

.contentBox h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.contentBox h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.contentBox p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 16px;
}

.programGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.programCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(8, 36, 92, .12);
    transition: .35s;
}

.programCard:hover {
    transform: translateY(-8px);
}

.programCard img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.programContent {
    background: linear-gradient(135deg, #08245c, #123b82);
    padding: 22px;
    text-align: center;
    min-height: 145px;
}

.programContent .programCardTitle {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 18px;
}

.programCard:hover .programContent .programCardTitle {
    color: #fed433;
}

.programContent span {
    display: inline-block;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.programContent span:hover {
    background: #ffcc29;
    color: #111;
}

.infoCard {
    height: 100%;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(8, 36, 92, .08);
}

.infoCard .infoCardTitle {
    font-size: 22px;
    font-weight: 600;
    color: #0B3D91;
    margin-bottom: 14px;
}

.infoCard p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.redCard {
    background: linear-gradient(135deg, #fff1f3, #ffd8de);
    border: 1px solid #ffd8de;
    border-left: 6px solid #e60012;
}

.blueCard {
    background: linear-gradient(135deg, #eef6ff, #cfe6ff);
    border: 1px solid #cfe6ff;
    border-left: 6px solid #005ed9;

}

/**/


.contentBox_2 .rightImage {
    float: right;
    max-width: 400px;
    margin: 0 0 25px 25px;
    text-align: center;

}

.contentBox_2 .rightImage .image {
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    border: 1px solid #edf1f7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1/1;
}

.contentBox_2 .image img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.enquireBtn {
    background: #273c66;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    gap: 5px;
    border: 0;
    border-radius: 4px;
}

.enquireBtn:hover,
.enquireBtn:focus {
    background: #e60012;
    color: #fff;
}

.contentBox_2 h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 20px;
    line-height: 1.3;
    position: relative;
    padding-left: 18px;
}

.contentBox_2 h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 85%;
    background: #e60012;
    border-radius: 30px;
}

.contentBox_2 h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 35px 0 15px;
}

.contentBox_2 h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin: 25px 0 12px;
}

.contentBox_2 p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
}

.contentBox_2 strong {
    color: #08245c;
    font-weight: 700;
}

.contentBox_2 ul {
    padding: 15px;
    margin: 20px 0;
    list-style: none;

    background: #efefef;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 20px;
    position: relative;


}

.contentBox_2 ul li {
    position: relative;
    padding: 10px 0 10px 38px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #dfe3e7;
}

.contentBox_2 ul li:last-child {
    border-bottom: none;
}

.contentBox_2 ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: #e8fff0;
    color: #16a34a;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contentBox_2 p:last-child {
    background: #fff7ed;
    border: 1px solid #f2e6d8;
    border-left: 4px solid #f97316;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 25px;
}

.contentBox_2 p:last-child strong {
    color: #ea580c;
}


/**/
.ourfacultyPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 94, 217, .08), transparent 35%),
        linear-gradient(180deg, #ffffff, #f5f8ff);
    font-family: "Poppins", sans-serif;
}

.title_fac {
    max-width: 760px;
    margin: 0 auto 45px;
}

.title_fac span {
    display: inline-block;
    background: #ffe8eb;
    color: #e60012;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.title_fac h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 15px;
}

.title_fac p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* 
.faculty_secc {
    background: #fff;
    padding: 28px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(8, 36, 92, .10);
} */

.faculty_secc .nav-tabs {
    border: 0;
    gap: 14px;
    justify-content: center;
    margin-bottom: 35px;
}

.faculty_secc .nav-tabs .nav-item {
    margin: 0;
}

.faculty_secc .nav-tabs .nav-link {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #333;
    border-radius: 50px;
    padding: 13px 32px;
    font-weight: 600;
    transition: .3s;
}

.faculty_secc .nav-tabs .nav-link:hover,
.faculty_secc .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #e60012, #ff3344);
    color: #fff;
    border-color: #e60012;
    box-shadow: 0 12px 28px rgba(230, 0, 18, .25);
}

.Physics_sec {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid #e8eef8;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 14px 38px rgba(8, 36, 92, .08);
    transition: .35s;
    overflow: hidden;
    position: relative;
}

.Physics_sec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #e60012, #005ed9);
}

.Physics_sec:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(8, 36, 92, .15);
}

.Physics_img {
    /* height: 200px; */
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background: #edf2f7;
}

.Physics_img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    transition: .4s;
}

.Physics_sec:hover .Physics_img img {
    transform: scale(1.06);
}

.Physics_profile_t {
    padding: 12px 10px;
}

.Physics_profile_t .profileName_t {
    font-size: 26px;
    font-weight: 600;
    color: #08245c;
    margin-bottom: 18px;
}

.Physics_profile_t .designation {
    display: inline-block;
    margin-left: 10px;
    background: #fff3cd;
    color: #d90012;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
}

.Physics_profile_t p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.Physics_profile_t ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.Physics_profile_t ul li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px 12px 40px;
    color: #475569;
    font-size: 15px;
    position: relative;
}

.Physics_profile_t ul li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}


/**/
.directorSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 94, 217, .08), transparent 35%),
        linear-gradient(180deg, #ffffff, #f6f9ff);
    font-family: "Poppins", sans-serif;
}

.directorHeading {
    max-width: 780px;
    margin: 0 auto 45px;
}

.directorHeading span {
    display: inline-block;
    background: #ffe8eb;
    color: #e60012;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.directorHeading h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 15px;
}

.directorHeading p {
    color: #333;
    font-size: 17px;
    margin: 0;
}

/* .directorCard {
     background: #fff;
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 25px 70px rgba(8, 36, 92, .10);
    border: 1px solid #eaf0f8; 
    position: relative;
    overflow: hidden;
}

.directorCard::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(230, 0, 18, .06);
} */

.directorImageBox {
    position: relative;
    background: linear-gradient(135deg, #08245c, #005ed9);
    border-radius: 30px;
    padding: 14px;
    box-shadow: 0 20px 45px rgba(8, 36, 92, .20);
}

.directorImageBox img {
    width: 100%;
    border-radius: 24px;
    background: #fff;
}

.directorBadge {
    position: absolute;
    right: -18px;
    bottom: 28px;
    background: linear-gradient(135deg, #ffcc29, #ffb000);
    color: #111;
    padding: 15px 22px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(255, 176, 0, .35);
}

.directorBadge strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.directorBadge span {
    font-size: 13px;
    font-weight: 700;
}

.directorIntro .directorIntroTitle {
    font-size: 28px;
    font-weight: 800;
    color: #08245c;
    margin-bottom: 5px;
}

.directorIntro .directorIntroSub {
    color: #e60012;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 22px;
}

.directorIntro p,
.directorContent p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 16px;
    text-align: justify;
}

.directorContent {
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.directorContent strong {
    color: #e60012;
}

.quoteBox {
    margin: 32px 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, #08245c, #005ed9);
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.quoteBox i {
    font-size: 58px;
    color: rgba(255, 255, 255, .18);
    position: absolute;
    right: 28px;
    top: 14px;
}

.quoteBox p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.signatureBox {
    background: #fff7ed;
    border: 1px solid #eeddc8;
    border-left: 6px solid #f97316;
    padding: 24px 28px;
    border-radius: 20px;
}

.signatureBox p {
    margin-bottom: 10px;
    color: #475569;
    text-align: left;
}

.signatureBox .signatureBoxName {
    font-size: 24px;
    font-weight: 900;
    color: #08245c;
    margin-bottom: 4px;
}

.signatureBox span {
    color: #e60012;
    font-weight: 600;
}


.visionMissionSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #F8FAFC;
}

.vision-block,
.mission-block {
    margin-bottom: 90px;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);
}

.content-box {
    padding: 10px;
}

.mini-tag {
    display: inline-block;
    background: #d50216;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.content-box .contentTitle {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-box p {
    color: #333;
    line-height: 1.5;
    margin-bottom: 18px;
    font-size: 16px;
}

.mission-list {
    display: grid;
    gap: 16px;
}

.mission-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    transition: .3s;
}

.mission-item:hover {
    transform: translateX(8px);
    border-color: #d50216;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
}

.mission-item svg {
    color: #d50216;
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
}

.mission-item span {
    color: #333;
    font-weight: 500;
    line-height: 1.7;
    font-size: 16px;
}

.whyMomentumPage {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #f8fafc;
}

.why-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd84d, #ffb703);
    border: 1px solid #f0a500;
    color: #0F172A;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.why-card .whyCardTitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0B3D91;
}

.why-card p {
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-size: 16px;
}

.why-highlight {
    background: linear-gradient(135deg, #17479e, #0f172a);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 30px;
    color: #fff;
}

.highlight-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: #c8102e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
}

.highlight-content .whyCardTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd23f;
}

.highlight-content p {
    color: #dbeafe;
    margin-bottom: 30px;
}

.stats-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box2 {
    background: rgba(255, 255, 255, .08);
    padding: 15px;
    border-radius: 16px;
    text-align: center;
}

.stat-box2 .statTitle2 {
    color: #ffd23f;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box2 span {
    font-size: 16px;
    color: #fff;
}

/**/
.admissionPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .12), transparent 35%),
        #f8fafc;
}

.admission-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .12);
}

.admission-left {
    background: linear-gradient(135deg, #17479e, #0f172a);
    color: #fff;
    padding: 45px 35px;
    position: relative;
}

/* .admission-left:before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(200, 16, 46, .45);
    right: -80px;
    top: -80px;
} */

.admission-left span {
    display: inline-block;
    background: #c8102e;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.admission-left h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
}

.admission-left p {
    color: #dbeafe;
    line-height: 1.7;
    font-size: 16px;
}

.admission-points {
    margin-top: 35px;
    display: grid;
    gap: 14px;
}

.admission-points div {
    background: rgba(255, 255, 255, .1);
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
}

.admission-right {
    padding: 45px;
}

.admission-right label {
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.admission-right select.form-control,
.admission-right .form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    font-weight: normal;
    color: #0f172a;
    box-shadow: none;
}

.admission-right select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.admission-right .form-control:focus {
    border-color: #d50216;
}

.gender-box {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0 16px;
}

.gender-box label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-weight: normal;
}

.admission-btn {
    margin-top: 15px;
    border: 0;
    background: #c8102e;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 900;
    transition: .3s;
}

.admission-btn:hover {
    background: #17479e;
    transform: translateY(-3px);
}


.rankersPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .10), transparent 35%),
        #f8fafc;
}

.rankers-header {
    margin-bottom: 55px;
}

.rankers-header p {
    max-width: 760px;
    margin: auto;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.ranker-group {
    margin-bottom: 50px;
}

.group-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.group-title h2 {
    color: #17479e;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.group-title::after {
    content: "";
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, #c8102e, transparent);
}

/**/
.testSchedulePage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #f8fafc;
}


.test-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #d3e5f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.info-box .infoBoxTitle {
    font-size: 28px;
    font-weight: 800;
    color: #17479e;
    margin-bottom: 8px;
}

.info-box span {
    color: #333;
    font-weight: normal;
}

.schedule-table-wrap {
    background: #fff;
    border-radius: 25px;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead {
    background: linear-gradient(135deg, #17479e, #0f172a);
}

.schedule-table thead th {
    color: #fff;
    padding: 18px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.schedule-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: .3s;
}

.schedule-table tbody tr:hover {
    background: #f8fafc;
}

.schedule-table td {
    padding: 10px;
    color: #334155;
    font-size: 14px;
    vertical-align: middle;
    border: 1px solid #e2e8f0;
}

.schedule-table td:nth-child(2) {
    max-width: 200px;
}

.schedule-table td strong {
    color: #0f172a;
}

.status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.status.open {
    background: #dcfce7;
    color: #166534;
}

.status.close {
    background: #fee2e2;
    color: #991b1b;
}




/**/
.course-category-card {
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    transition: .4s ease;
}

.course-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .16);
}

.course-category-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.course-category-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0) 30%,
            rgba(15, 23, 42, .68) 100%);
}

.course-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.course-category-card:hover .course-category-img img {
    transform: scale(1.08);
}

.course-category-content {
    position: relative;
    padding: 34px 28px 30px;
}

.course-icon {
    position: absolute;
    top: -34px;
    left: 28px;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #d50216;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(200, 16, 46, .32);
}

.course-icon svg {
    width: 30px;
    height: 30px;
}

.course-category-content .courseCategoryTitle {
    color: #0F172A;
    font-size: 24px;
    font-weight: 800;
    margin: 18px 0 12px;
}

.course-category-content .courseCategoryTitle a {
    color: #0F172A;
}

.course-category-content p {
    color: #333;
    line-height: 1.75;
    margin-bottom: 22px;
}

.course-category-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8102e;
    font-weight: 600;
    text-decoration: none;
}

.course-category-content a svg {
    transition: .3s;

}

.course-category-content a:hover {
    color: #17479e;
}

.course-category-content a:hover svg {
    transform: translateX(5px);
}

.course-category-content .courseCategoryTitle a:hover {
    color: #17479e;
}


/**/

.enquiryModal .modal-dialog {
    max-width: 950px;
}

.enquiryModal .modal-content {
    border: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .25);
    position: relative;
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-custom svg {
    width: 18px;
    height: 18px;
}

.btn-close-custom:hover {
    background: #e60012;
    color: #fff;
}

.modal-left {
    height: 100%;
    padding: 45px 35px;
    background: linear-gradient(135deg, #17479e, #0f172a);
    color: #fff;
    position: relative;
}

.modal-left .modalLeftTitle {
    font-size: 30px;
    font-weight: 800;
    margin: 0px 0 15px;
    line-height: 1.23;
    color: #fff;
}

.modal-left .modalLeftTitle span {
    color: #FFD23F;
}

.modal-left p {
    color: #dbeafe;
    line-height: 1.5;
    font-size: 15px;
}

.modal-left img {
    width: 100%;
    max-width: 200px;
    margin: 15px auto;
    display: block;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list div {
    background: rgba(255, 255, 255, .08);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.modal-right {
    padding: 45px;
    background: #fff;
}

.modal-right .modalRightTitle {
    font-size: 30px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 20px;
}

.modal-right .form-control {
    height: 45px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    box-shadow: none;
}

.modal-right textarea.form-control {
    height: auto;
}

.modal-right .form-control:focus {
    border-color: #e60012;
}

.submit-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 4px;
    background: #e60012;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    transition: .3s;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

.submit-btn:hover {
    background: #17479e;
}




/**/
.blogPage {
    float: left;
    width: 100%;
    padding: 40px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 1px solid #ddd;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 370/247;
}

.blog-date {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #0a66ff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: #eef4ff;
    color: #0a66ff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-content .blogTitles {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content .blogTitles a {
    color: #333;
}

.blog-content .blogTitles a:hover,
.blog-content .blogTitles a:focus {
    color: #d50216;
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f7ff;
    border: 1px solid #e1e9f8;
    padding: 5px;
}

.read-more {
    text-decoration: none;
    color: #0a66ff;
    font-weight: 600;
}

/**/
.blogDetailsSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #f8fafc;
}

.blog-details-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.blog-detail-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.blog-detail-content {
    padding: 45px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.blog-meta span {
    background: #fff1f2;
    color: #333;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-detail-content h1 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 35px 0 15px;
}

.blog-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.blog-detail-content p {
    color: #333;
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 18px;
}

.blog-detail-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.blog-detail-content li {
    color: #333;
    line-height: 1.8;
}

.highlight-box {
    background: #f8fafc;
    border-left: 5px solid #c8102e;
    padding: 28px;
    border-radius: 18px;
    margin: 30px 0;
}

blockquote {
    background: linear-gradient(135deg, #17479e, #0f172a);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin: 35px 0;
}

.blog-share {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share span {
    font-weight: 900;
    color: #0f172a;
}

.blog-share a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #17479e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.blog-share a:hover {
    background: #c8102e;
    transform: translateY(-3px);
}

.blog-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .07);
}

.sidebar-widget .sidebarTitle,
.sidebar-cta .sidebarTitle {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    padding: 13px 16px;
    border-radius: 12px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 800;
}

.category-list a:hover {
    background: #17479e;
    color: #fff;
}

.recent-post {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.recent-post img {
    width: 82px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.recent-post .postTitle {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 6px;
}

.recent-post .postTitle a {
    color: #0f172a;
    text-decoration: none;
}

.recent-post .postTitle a:hover,
.recent-post .postTitle a:focus {
    color: #d50216;
}

.recent-post span {
    color: #64748b;
    font-size: 13px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #c8102e, #17479e);
    color: #fff;
    border-radius: 24px;
    padding: 32px;
}

.sidebar-cta .sidebar-ctaTitle,
.sidebar-cta p {
    color: #fff;
}

.sidebar-cta p {
    line-height: 1.7;
}

.sidebar-cta a {
    display: inline-flex;
    margin-top: 12px;
    background: #fff;
    color: #c8102e;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
}




/**/
.upcomingBatchSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left,
            rgba(200, 16, 46, .08),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(23, 71, 158, .10),
            transparent 35%),
        #f8fafc;
}

.section-heading {
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    background: #fff1f2;
    color: #c8102e;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 46px;
    font-weight: 900;
    color: #0f172a;
    margin: 15px 0;
}

.section-heading p {
    color: #64748b;
}

.batch-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-item {
    background: #fff;
    padding: 25px;
    border: 1px solid #d3e5f6;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    text-align: center;
}

.highlight-item .highlightTitle {
    color: #17479e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-item span {
    color: #333;
}

.batch-table-wrap {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.table-header {
    background: linear-gradient(135deg, #17479e, #0f172a);
    padding: 15px 22px;
    text-align: center;
}

.table-header .tableTitle {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.batch-table {
    width: 100%;
    border-collapse: collapse;
}

.batch-table thead {
    background: #f1f5f9;
}

.batch-table thead th {
    padding: 18px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
}

.batch-table tbody td {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    color: #475569;
}

.batch-table tbody tr {
    transition: .3s;
}

.batch-table tbody tr:hover {
    background: #f8fafc;
}

.batch-date {
    display: inline-block;
    background: #ecfdf5;
    color: #15803d;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}

.view-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #c8102e;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    transition: .3s;
}

.view-btn:hover {
    background: #17479e;
    color: #fff;
}

/**/
.importantNoticePage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: #f8fafc;
}

.notification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
    transition: .35s;
}

.notification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
}

.notification-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    background: #c8102e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 30px;
    height: 30px;
}

.notification-icon.blue {
    background: #17479e;
}

.notification-icon.green {
    background: #16a34a;
}

.notification-content {
    flex: 1;
}

.badge-new {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 5px;
}

.notification-content .notificationTitle {
    color: #17479e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.notification-card:hover .notification-content .notificationTitle {
    color: #d50216;
}

.notification-card:hover .notification-arrow {
    color: #d50216;
}

.notification-content p {
    color: #333;
    margin: 0;
}

.notification-arrow {
    color: #17479e;
}

.notification-arrow svg {
    width: 24px;
    height: 24px;
}

.notification-card:hover .notification-arrow {
    transform: translateX(6px);
    transition: .3s;
}



/**/
.voucherSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .12), transparent 35%),
        #f8fafc;
}

.voucher-card {
    background: #fff;
    border-radius: 34px;
    padding: 55px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .12);
    overflow: hidden;
    position: relative;
}

.voucher-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(200, 16, 46, .08);
    right: -90px;
    top: -90px;
}

.voucher-content,
.voucher-form {
    position: relative;
    z-index: 2;
}


.voucher-logo img {
    max-width: 400px;
    margin-bottom: 25px;
}

.voucher-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 18px;
}

.voucher-content p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.voucher-amount {
    margin: 28px 0;
    width: max-content;
    min-width: 280px;
    background: linear-gradient(135deg, #ffd84d, #ffb703);
    border: 1px solid #f0a500;
    border-radius: 12px;
    padding: 28px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    box-shadow: 0 7px 18px rgba(255, 183, 3, .28);
    display: block;

}

.voucher-amount span {
    display: block;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
}

.voucher-amount strong {
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
}

.voucher-form {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 35px;
}

.voucher-form .voucherTitle {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.voucher-form label {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.voucher-form .form-control {
    height: 45px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    box-shadow: none;
}

.voucher-form textarea.form-control {
    height: auto;
}

.voucher-form .form-control:focus {
    border-color: #17479e;
}

.voucher-btn {
    width: 100%;
    border: 0;
    background: #c8102e;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    transition: .3s;
}

.voucher-btn:hover {
    background: #17479e;
    transform: translateY(-3px);
}


/**/
.branchPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .12), transparent 35%),
        #f8fafc;
}

.branch-heading {
    margin-bottom: 60px;
}

.branch-heading span {
    display: inline-block;
    background: #fff1f2;
    color: #c8102e;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-heading h1 {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    margin: 15px 0;
}

.branch-heading p {
    max-width: 720px;
    margin: auto;
    color: #64748b;
    line-height: 1.7;
}

.branch-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.branch-reverse .branch-image {
    order: 2;
}

.branch-reverse .branch-content {
    order: 1;
}

.branch-image {
    position: relative;
}

.branch-image::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -35px;
    top: -35px;
    background-image: radial-gradient(#c8102e 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .45;
}

.branch-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .15);
}

.branch-badge {
    position: absolute;
    right: 25px;
    bottom: 25px;
    z-index: 3;
    background: #fff;
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .18);
}

.branch-badge strong {
    display: block;
    color: #c8102e;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.branch-badge span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.branch-content {
    background: #fff;
    padding: 42px;
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

.branch-tag {
    display: inline-block;
    background: #eef4ff;
    color: #17479e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.branch-content .branchName {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 30px;
}

.branch-info-box {
    display: flex;
    gap: 18px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid #e2e8f0;
}

.branch-info-box svg {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: #c8102e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 10px;
}

.branch-info-box .branchTitle {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.branch-info-box p,
.branch-info-box a {
    color: #333;
    margin: 0;
    display: block;
    text-decoration: none;
    line-height: 1.7;
    font-size: 16px;
}

.branch-info-box a {
    font-weight: 600;
}


.branch-info-box a:hover,
.branch-info-box a:focus {
    color: #d50216;
}

.branch-btn {
    display: inline-flex;
    margin-top: 15px;
    background: #c8102e;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    transition: .3s;
}

.branch-btn:hover {
    background: #17479e;
    color: #fff;
    transform: translateY(-3px);
}

.branch-map-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .10);
}

.map-heading {
    text-align: center;
    padding: 35px 20px;
}

.map-heading h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0B3D91;
    margin-bottom: 10px;
}

.map-heading p {
    color: #64748b;
    margin: 0;
}

.branch-map-card iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}



/**/
.photoGalleryPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background:
        radial-gradient(circle at top left, rgba(200, 16, 46, .08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(23, 71, 158, .10), transparent 35%),
        #f8fafc;
}



.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-filter button {
    border: 0;
    background: #064b86;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: #c8102e;
}

.filter-more {
    position: relative;
}

.more-menu {
    position: absolute;
    right: 0;
    top: 100%;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .16);
    display: none;
    z-index: 10;
    border: 1px solid #ddd;
}

.filter-more:hover .more-menu {
    display: grid;
    gap: 8px;
}

.more-menu button {
    width: 100%;
    text-align: left;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
}

.more-menu button:focus,
.more-menu button:hover {
    background: #c8102e;
    color: #fff;
}





.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .10);
    height: 260px;
}

/* .gallery-item:nth-child(3n+1) {
    height: 340px;
} */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, .78));
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: .35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.gallery-item.hide {
    display: none;
}



/**/
.testimonialsPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef4ff 100%);
}

.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-title span {
    display: inline-block;
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #17233d;
    margin-bottom: 12px;
}

.section-title p {
    color: #667085;
    font-size: 16px;
    margin: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    position: relative;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(20, 40, 80, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(20, 40, 80, 0.14);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #d50216;
}

.quote-icon {
    font-size: 70px;
    line-height: 40px;
    color: rgba(13, 110, 253, 0.15);
    font-weight: 900;
    margin-bottom: 10px;
}

.quote-icon svg {
    width: 50px;
    height: 50px;
}


.testimonial-card p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-info img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eef4ff;
}

.student-info .testimonialName {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    color: #17233d;
    text-transform: capitalize;
}

.student-info span {
    display: inline-block;
    background: #e9f7ef;
    color: #198754;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}




/**/
.contactPage {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
}

.contact-card,
.contact-info-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(20, 33, 61, 0.08);
}

.contact-card .contactCardTitle {
    font-size: 26px;
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 15px;
}


.contact-info-card .contactCardTitle {
    font-size: 26px;
    font-weight: 600;
    color: #fed433;
    margin-bottom: 15px;
}


.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 45px;
    border: 1px solid #d8deea;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 15px;
    color: #14213d;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #2b59a7;
    box-shadow: 0 0 0 4px rgba(43, 89, 167, 0.08);
}


.g-recaptcha {
    transform: scale(.8);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}


.contact-btn {
    display: inline-block;
    border: none;
    background: linear-gradient(135deg, #2b59a7, #0d6efd);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(43, 89, 167, 0.25);
}

.contact-info-card {
    background: linear-gradient(135deg, #14213d, #2b59a7);
    color: #fff;
}

.contact-info-card>p {
    color: #fff;
    margin-bottom: 25px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info-list span {
    min-width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-info-list span svg {
    width: 20px;
    height: 20px;
}

.contact-info-list strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-list a {
    color: #fff;
    text-decoration: none;
}

.contact-info-list a:hover {
    text-decoration: underline;
    color: #fed433;
}

.map-box {
    margin-top: 25px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(20, 33, 61, 0.1);
}



/**/
.franchiseSection {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
}

.franchise-info-box,
.franchise-form-box {
    height: 100%;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.08);
}

.franchise-info-box {
    background: linear-gradient(135deg, #14213d, #2b59a7);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.franchise-info-box::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.franchise-form-box .franchiseTitle {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0F172A;
}


.franchise-info-box .franchiseTitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fed433;
}


.franchise-info-box p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.franchise-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.franchise-info-box ul li {
    margin-bottom: 14px;
    font-size: 15px;
    color: #fff;
}

.franchise-info-box ul li svg {
    width: 22px;
    height: 22px;

    margin-right: 8px;
}

.franchise-call {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    padding: 18px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.franchise-call span {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #2b59a7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.franchise-call span svg {
    width: 20px;
    height: 20px;
}

.franchise-call small {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
    font-size: 14px;
}

.franchise-call a {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}

.franchise-call a:hover,
.franchise-call a:focus {
    color: #fed433;
}

.franchise-form-box {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.franchise-form-box h3 {
    color: #0B3D91;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.fr-form-group {
    position: relative;
    margin-bottom: 15px;
}

.fr-form-group input,
.fr-form-group textarea {
    width: 100%;
    height: 45px;
    border: 1px solid #d8deea;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 15px;
    color: #14213d;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
}

.fr-form-group textarea {
    height: 120px;
    resize: none;
}

.fr-form-group label {
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.fr-form-group input:focus,
.fr-form-group textarea:focus {
    border-color: #2b59a7;
}


.franchise-submit-btn {
    border: none;
    background: linear-gradient(135deg, #2b59a7, #0d6efd);
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.franchise-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(43, 89, 167, 0.25);
}





/**/
.jobApplication {
    float: left;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
}

.job-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.job-heading span {
    display: inline-block;
    color: #2b59a7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.job-heading h1 {
    font-size: 42px;
    font-weight: 800;
    color: #14213d;
    margin-bottom: 12px;
}

.job-heading p {
    font-size: 16px;
    color: #667085;
    margin: 0;
}

.job-wrapper {
    display: grid;
    grid-template-columns: 34% 66%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.09);
}

.job-info-box {
    background: linear-gradient(135deg, #14213d, #2b59a7);
    color: #fff;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.job-info-box::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.job-info-box .jobInfoTitle {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fed433;
}

.job-info-box p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.job-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-info-box ul li {
    margin-bottom: 14px;
    font-size: 15px;
}

.job-info-box ul li svg {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.job-form-box {
    padding: 40px 35px;
}

.job-form-group {
    position: relative;
    margin-bottom: 24px;
}

.job-form-group input,
.job-form-group select {
    width: 100%;
    height: 45px;
    border: 1px solid #d8deea;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 15px;
    color: #14213d;
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
}

.job-form-group select {
    cursor: pointer;
}

.job-form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.job-form-group input:focus,
.job-form-group select:focus {
    border-color: #2b59a7;
}

.job-file-group {
    margin-bottom: 24px;
    background: #f8faff;
}


.job-form-group .job_input {
    width: 100%;
    font-size: 13px;
    padding: 5px;
    line-height: 28px;
}

.job-file-group small {
    display: block;
    color: #667085;
    margin-top: 6px;
}

.job-submit-btn {
    border: none;
    background: linear-gradient(135deg, #2b59a7, #0d6efd);
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(43, 89, 167, 0.25);
}




/**/
.marketPage {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #f8fafc;
}

.market-card {
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-decoration: none;
    transition: .35s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    text-decoration: none;
    border-color: #dc2626;
}

.market-icon {
    width: 70px;
    height: 70px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 28px;
}

.market-icon svg {
    width: 28px;
    height: 28px;
}

.market-card .marketName {
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.market-card span {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
}



.whatappBtn {
    background: #01e675;
    width: 50px;
    height: 50px;
    color: #fff;
    position: fixed;
    left: 15px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    border: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16), 0 3px 10px rgba(0, 0, 0, .16)
}

.whatappBtn:hover {
    color: #fff;
    text-decoration: unset
}

.whatappBtn svg {
    width: 25px;
    height: 25px;
}

/**/
.whatsapp-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.whatsapp-header {
    background: linear-gradient(to bottom, #ef2b2b, #c30000);
    color: #fff;
    padding: 15px 20px;
}

.whatsapp-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.whatsapp-modal .modal-body {
    padding: 28px 18px;
    background: #fff;
}

.whatsapp-modal .form-control {
    height: 45px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    box-shadow: none;
    font-size: 15px;
    padding: 10px 16px;
}

.whatsapp-modal .form-control:focus {
    border-color: #d50000;
    box-shadow: none;
}

.whatsapp-btn {
    background: linear-gradient(to bottom, #ef2b2b, #c30000);
    border: none;
    color: #fff;
    min-width: 110px;
    height: auto;
    padding: 12px 34px;
    border-radius: 50px;
    line-height: normal;
    font-weight: 600;
}

.whatsapp-btn:focus,
.whatsapp-btn:hover {
    color: #fff;
    background: #0B3D91;
}

.modal-sm {
    max-width: 380px;
}



/**/
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    font-size: 15px;
    color: #222;
}



.table th,
.table td {
    border-right: 1px solid #e8eef5;
    border-bottom: 1px solid #e8eef5;
}

.table th:first-child,
.table td:first-child {
    border-left: 1px solid #e8eef5;
}

.table thead th {
    border-top: 1px solid #e8eef5;
}

.table tbody tr {
    transition: all 0.25s ease;
}

.table tbody tr:nth-child(odd) {
    background: #f3f9ff;
}

.table tbody tr:nth-child(even) {
    background: #ffffff;
}

.table tbody tr:hover td {
    background: #d8e5fb;
    border-color: #c2d3f0;
}

.table thead th {
    background: #850900;
    color: #fff;
    padding: 16px 18px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    border-color: #9e372f;
}

.table tbody td {
    padding: 15px 18px;
    vertical-align: middle;
}

.table tbody td:first-child {
    font-weight: 600;
    width: 80px;
    text-align: center;
}

.table tbody td:last-child {
    text-align: center;
    font-weight: 600;
    color: #111;
    width: 120px;
}

.table tbody tr:last-child td {
    border-bottom: none;
}




/**/



.careerSection {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #f8f9fb;
}

.jobItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #d50216;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.jobItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.jobContent {
    flex: 1;
}

.jobContent .jobItemTitle {
    margin-bottom: 12px;
    color: #d50216;
    font-size: 22px;
    font-weight: 600;
}

.jobContent .jobItemTitle a {
    color: #333;
}

.jobItem:hover .jobContent .jobItemTitle a {
    color: #17479e;
}

.jobMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.jobMeta span {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.jobMeta span svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #0B3D91;
}

.jobContent p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}


.jobAction a {
    display: inline-flex;
    background: #d50216;
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 12px;
    transition: .3s;
}

.jobAction a:hover {
    background: #17479E;
    color: #fff;
}


/**/

.careerDetailPage {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f7f8fb;
}

.careerDetailWrap {
    max-width: 1050px;
    margin: 0 auto;
}

.jobDetailBox,
.applyFormBox {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.jobDetailHead {
    background: linear-gradient(135deg, #850900, #b51a0f);
    padding: 30px;
    color: #fff;
}

.jobBadge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 14px;
}

.jobDetailHead .careerDetailTitle {
    font-size: 30px;
    margin: 0 0 16px;
    color: #fff;
    font-weight: 500;
}

.jobInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.jobInfo span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.jobInfo span svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #fed433;
}

.jobDetailContent {
    padding: 30px;
}

.jobDetailContent .jobDetailContentTitle {
    color: #850900;
    font-size: 22px;
    margin: 0 0 5px;
    font-weight: 500;
}

.jobDetailContent h3 {
    color: #850900;
    font-size: 20px;
    margin: 10px 0 5px;
}


.jobDetailContent p,
.jobDetailContent li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.jobDetailContent ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.applyFormBox {
    padding: 30px;
}

.applyFormBox h2 {
    font-size: 28px;
    color: #850900;
    margin-bottom: 22px;
}




.formGroup input:focus,
.formGroup textarea:focus {
    border-color: #850900;
}

.formGroup label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.submitButton {
    background: #d50216;
    color: #fff;
    border: none;
    padding: 13px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.submitButton:hover {
    background: #17479E;
    color: #fff;
}




@media (max-width: 767px) {
    .careerDetailPage {
        padding: 35px 0;
    }

    .jobDetailHead,
    .jobDetailContent,
    .applyFormBox {
        padding: 20px;
    }

    .jobDetailHead h1 {
        font-size: 25px;
    }

    .careerApplyForm {
        grid-template-columns: 1fr;
    }

    .applyFormBox h2 {
        font-size: 23px;
    }
}

@media(max-width:767px) {

    .jobItem {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .jobContent .jobItemTitle {
        font-size: 20px;
    }

    .jobAction {
        width: 100%;
    }

    .jobAction a {
        width: 100%;
        text-align: center;
    }
}





/* Mobile */
@media (max-width: 767px) {
    .table {
        min-width: 650px;
        font-size: 14px;
    }

    .table thead th,
    .table tbody td {
        padding: 13px 14px;
    }

    .table-responsive {
        border-radius: 10px;
    }
}


@media(max-width:768px) {


    .market-card {
        padding: 25px 20px;
    }

}











@media (max-width: 991px) {
    .job-heading h1 {
        font-size: 34px;
    }

    .job-wrapper {
        grid-template-columns: 1fr;
    }

    .job-info-box,
    .job-form-box {
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {
    .job-application-section {
        padding: 55px 0;
    }

    .job-heading h1 {
        font-size: 28px;
    }

    .job-submit-btn {
        width: 100%;
    }
}















@media (max-width: 991px) {
    .franchise-heading h1 {
        font-size: 34px;
    }

    .franchise-info-box,
    .franchise-form-box {
        padding: 28px;
    }
}

@media (max-width: 575px) {
    .franchise-section {
        padding: 55px 0;
    }

    .franchise-heading h1 {
        font-size: 28px;
    }

    .franchise-info-box,
    .franchise-form-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .franchise-submit-btn {
        width: 100%;
    }

    .franchise-call a {
        font-size: 17px;
    }
}















@media (max-width: 991px) {
    .contact-heading h1 {
        font-size: 32px;
    }

    .contact-card,
    .contact-info-card {
        padding: 28px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 55px 0;
    }

    .contact-heading h1 {
        font-size: 28px;
    }

    .contact-card,
    .contact-info-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact-btn {
        width: 100%;
    }
}











@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .testimonials-area {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 30px 22px;
    }

    .student-info {
        align-items: flex-start;
    }
}




















@media(max-width:767px) {
    .photo-gallery-page {
        padding: 60px 0;
    }

    .gallery-heading h1 {
        font-size: 36px;
    }

    .gallery-item,
    .gallery-item:nth-child(3n+1) {
        height: 240px;
    }
}







@media(max-width:991px) {

    .branch-card,
    .branch-reverse {
        grid-template-columns: 1fr;
    }

    .branch-reverse .branch-image,
    .branch-reverse .branch-content {
        order: initial;
    }

    .branch-heading h1 {
        font-size: 38px;
    }

    .branch-content {
        padding: 30px;
    }

    .branch-content h2 {
        font-size: 30px;
    }
}

@media(max-width:575px) {
    .branch-page {
        padding: 60px 0;
    }

    .branch-image img {
        height: 300px;
    }

    .branch-info-box {
        flex-direction: column;
    }

    .branch-badge {
        left: 20px;
        right: auto;
    }
}






@media(max-width:991px) {
    .voucher-card {
        padding: 35px 24px;
    }

    .voucher-content h1 {
        font-size: 38px;
    }

    .voucher-amount {
        width: 100%;
    }
}


@media(max-width:767px) {

    .notification-card {
        flex-direction: column;
        text-align: center;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}







@media(max-width:991px) {

    .batch-highlight {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .table-header h3 {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .batch-highlight {
        grid-template-columns: 1fr;
    }

    .batch-table {
        min-width: 700px;
    }
}


@media(max-width:991px) {
    .blog-sidebar {
        position: static;
    }

    .blog-detail-content {
        padding: 28px;
    }

    .blog-detail-content h1 {
        font-size: 30px;
    }

    .blog-detail-img img {
        height: 300px;
    }
}








@media(max-width:991px) {

    .modal-left,
    .modal-right {
        padding: 30px;
    }

    .modal-left h2 {
        font-size: 30px;
    }
}





@media(max-width:767px) {
    .course-category-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .course-category-img {
        height: 230px;
    }
}











@media(max-width:991px) {

    .test-info-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-table {
        min-width: 1200px
    }
}

@media(max-width:576px) {

    .test-info-strip {
        grid-template-columns: 1fr;
    }
}


@media(max-width:767px) {
    .rankers-page {
        padding: 60px 0;
    }

    .rankers-header h1 {
        font-size: 36px;
    }

    .group-title {
        display: block;
    }

    .group-title h2 {
        font-size: 24px;
    }

    .group-title::after {
        display: none;
    }
}




@media(max-width:991px) {
    .admission-card {
        grid-template-columns: 1fr;
    }

    .admission-left,
    .admission-right {
        padding: 30px;
    }

    .admission-left h1 {
        font-size: 32px;
    }
}








@media(max-width:991px) {

    .why-highlight {
        flex-direction: column;
        padding: 35px;
    }

    .stats-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {


    .stats-grid2 {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 25px;
    }
}



@media(max-width:991px) {

    .vision-block,
    .mission-block {
        margin-bottom: 60px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .content-box .contentTitle {
        font-size: 28px;
    }
}





























@media(max-width:991px) {
    .directorSection {
        padding: 55px 0;
    }

    .directorHeading h1 {
        font-size: 32px;
    }

    .directorCard {
        padding: 26px;
    }

    .directorIntro h2 {
        font-size: 30px;
    }

    .directorBadge {
        right: 15px;
    }
}

@media(max-width:575px) {
    .directorCard {
        padding: 20px;
        border-radius: 24px;
    }

    .directorIntro h2 {
        font-size: 26px;
    }

    .directorIntro p,
    .directorContent p {
        text-align: left;
        font-size: 15px;
    }

    .quoteBox {
        padding: 24px;
    }

    .quoteBox p {
        font-size: 16px;
    }
}





@media(max-width:991px) {
    .title_fac h1 {
        font-size: 34px;
    }

    .faculty_secc {
        padding: 20px;
    }

    .Physics_profile_t h3 {
        font-size: 22px;
    }

    .Physics_profile_t .designation {
        margin-left: 0;
        margin-top: 8px;
        display: block;
        width: max-content;
    }

    .Physics_profile_t ul {
        grid-template-columns: 1fr;
    }
}

@media(max-width:575px) {
    .section_ourfaculty {
        padding: 55px 0;
    }

    .faculty_secc .nav-tabs {
        gap: 8px;
    }

    .faculty_secc .nav-tabs .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    .Physics_img {
        height: 300px;
        margin-bottom: 18px;
    }

    .Physics_sec {
        padding: 16px;
        border-radius: 22px;
    }
}




@media(max-width:991px) {

    .contentBox_2 h2 {
        font-size: 28px;
    }

    .contentBox_2 h3 {
        font-size: 22px;
    }

    .contentBox_2 h4 {
        font-size: 18px;
    }
}

@media(max-width:575px) {


    .contentBox_2 h2 {
        font-size: 24px;
        padding-left: 14px;
    }

    .contentBox_2 h3 {
        font-size: 20px;
    }

    .contentBox_2 h4 {
        font-size: 17px;
    }

    .contentBox_2 p,
    .contentBox_2 ul li {
        font-size: 15px;
        line-height: 1.8;
    }
}






@media (max-width: 1199px) {
    .programGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .jeePage {
        padding: 55px 0;
    }

    .sectionTitle h1 {
        font-size: 30px;
    }


    .programGrid {
        grid-template-columns: 1fr;
    }

    .programCard img {
        height: 230px;
    }
}



@media (max-width: 767px) {
    .testimonialSection {
        padding: 45px 0 60px;
    }

    .testimonialCard {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .modernAboutHero h1 {
        font-size: 32px;
    }

    .aboutHeroImage {
        margin: 20px auto 0;
    }

    .featureRow {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }
}

@media (max-width: 575px) {
    .modernAboutHero {
        padding: 45px 0 35px;
    }

    .modernAboutHero h1 {
        font-size: 27px;
    }

    .aboutHeroImage img {
        height: 330px;
    }

    .studentBadge {
        width: 105px;
        height: 105px;
        left: 0;
    }

    .studentBadge strong {
        font-size: 25px;
    }

    .featureBox {
        padding: 22px;
    }
}

@media(max-width:768px) {

    .mstarFeatures {
        grid-template-columns: 1fr;
    }

    .mstarBadge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
}



@media (max-width: 991px) {
    .sectionHeading h1 {
        font-size: 32px;
    }


    .aboutPageContent h2 {
        font-size: 24px;
    }

    .experienceBadge {
        right: 15px;
        bottom: 15px;
        width: 120px;
        height: 120px;
    }

    .experienceBadge h3 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .aboutHighlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .aboutDetails {
        padding: 25px;
    }
}