:root {
    --gradient: linear-gradient(to right, #234eb0, #b656e2);
    --navyBlue: #354364;
    --normal: #555e73;
}

@font-face {
    font-family: "RoundedFont";
    src: url("../font/rounded.woff") format("woff");
    font-weight: normal;
    /* Specify the font weight */
    font-style: normal;
    /* Specify the font style */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Poppins", sans-serif;
    cursor: default;
    font-display: swap;
    font-size: 16px;
    scrollbar-width: auto;
    scrollbar-color: #cccccc #f0f0f0;
}

body {
    margin: 0;
    overflow-x: visible !important;
}

body.active {
    overflow: hidden;
    text-decoration: none !important;
}

::-webkit-scrollbar {
    width: 5px;
    display: none;
}

/* For WebKit browsers */

/* Track */
::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-track:hover {
    background-color: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 5px;
    display: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* navbar css start  */

.sciastra-container {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1200;
    position: relative;
}

#sciastra_icon {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.5rem;
}

#sciastra_text {
    margin-top: 0.5rem;
    /* color: black; */
    font-size: 0.7rem;
}

nav {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    justify-content: space-evenly;
    width: 100%;
    z-index: 1001;
    padding: 7px 0;
}

nav.sticky-active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    background-color: white;
}

#sciastra_icon_link {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav_list {
    display: flex;
    list-style-type: none;
    justify-content: center;
    width: 70%;
    align-items: center;
}

/* --switch: calc((var(--light) - var(--threshold)) * -100%);
color: hsl(0, 0%, var(--switch)); */
.desk_list_item {
    margin: 0;
    width: 10rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
}

/* --switch: calc((var(--light) - var(--threshold)) * -100%);
color: hsl(0, 0%, var(--switch)); */
.direct_links {
    text-decoration: none !important;
    color: white;
}

.desk_big_div {
    position: absolute;
    text-decoration: none !important;
    width: 10rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.119) 0px 10px 50px;
    display: none;
}

.desk_sm_div {
    text-decoration: none !important;
    background-color: #ffffff;
    z-index: 1001;
    padding: 0.25rem;
    cursor: default;
    border-bottom: 1px solid #c9d1d1;
}

.sm_div_link {
    cursor: pointer;
    text-decoration: none;
    color: black;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 300;
    text-decoration: none !important;
}

.desk_sm_div:hover {
    text-decoration: none !important;
    /*  background-color: transparent;*/
    background-color: #c9d1d1;
}

.desk_list_item>a,
.desk_list_item>.nav-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.desk_list_item:hover>a,
.desk_list_item:hover>.nav-text {
    transform: scale(1.1);
}

.desk_list_item:hover>div {
    /* display: block; */
    text-decoration: none !important;
}

.login {
    color: white;
    text-decoration: none !important;
    padding: 0.4rem 2rem;
    background: var(--gradient);
    border-radius: 1.5rem;
    font-weight: 200;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1200;
    margin-top: -12px;
    cursor: pointer;
}

.bar {
    background: var(--gradient);
    padding: 0.15rem 1.2rem;
    transition: 0.3s ease-in;
}

.bun-one,
.bun-two,
.bun-three {
    background: var(--gradient);

    padding: 0.15rem 1.2rem 0.15rem 1.2rem;
    transition: 0.3s ease-in;
}

.hamburger.activeham .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.activeham .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.activeham .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    left: -100%;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    justify-content: flex-start;
    padding-top: 4rem;
    overflow-y: auto;
    background-color: transparent;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: 0.3s ease-in;
    display: none;
}

#ph_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0;
    /* padding: 0; */
    list-style-type: none;
    padding: 0.5rem;
    width: 90%;
    margin-top: 2.4rem;
}

.ph_list_item {
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 1.5rem;
    background: var(--gradient);
    width: 100%;
    padding: 0.7rem 1.5rem;
    border-radius: 0.7rem;
    cursor: pointer;
}

.ph_drct_link {
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    /* Adjust padding as needed */
    position: relative;
}

.ph_drct_link::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    /* Adjust to cover top padding */
    bottom: -0.5rem;
    /* Adjust to cover bottom padding */
    left: -1rem;
    /* Adjust to cover left padding */
    right: -1rem;
    /* Adjust to cover right padding */
}

.subDom {
    transition: max-height 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
}

.ph_ind_link {
    color: rgba(255, 255, 255, 0.608);
    text-decoration: none;
    font-size: 1.3rem;
}

.subDom.activeBox {
    border-top: 1px solid white;
    min-height: fit-content;
}

.login {
    display: block;
}

.nav-menu.activeMenu {
    left: 0;
}

#nav_list {
    gap: 5px;
}

/* ACCORDION MEGA MENU STYLES - UPDATED */
.mega-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1100;
    display: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
    overflow-y: auto;
}

/* Mega Menu 12/04/2025  */

.mega-menu {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Mobile Accordion Styles */
.mobile-accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header.active {
    background: var(--gradient);
    color: white;
}

.accordion-header strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.accordion-header.active strong {
    color: white;
}

.accordion-toggle {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(180deg);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
    padding: 20px;
}

.accordion-course-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.accordion-course-card:hover {
    transform: translateY(-3px);
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.accordion-course-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-course-card:hover i {
    -webkit-text-fill-color: white;
}

.accordion-course-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.accordion-course-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    font-size: inherit;
}

/* Static Links in Accordion */
.accordion-static-links {
    padding: 20px;
    background: #f8f9fa;
}

.accordion-static-link {
    display: block;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-static-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateX(5px);
}

.accordion-static-link:last-child {
    margin-bottom: 0;
}

/* Desktop Mega Menu - Keep existing styles */
.mega-menu-desktop {
    position: absolute;
    top: 100%;
    left: 10px;
    width: 800px;
    max-width: 90vw;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1050;
    margin-top: 10px;
    display: flex;
}

.mega-menu-desktop::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.mega-menu-trigger:hover .mega-menu-desktop,
.mega-menu-desktop:hover {
    opacity: 1;
    visibility: visible;
}

.menu-left {
    /* width: 30%;
  border-right: 1px solid #e0e0e0;
  padding-right: 20px;
  list-style: none;
  padding-inline-start: 8px; */
    width: 35%;
    background: #f8f9fa;
    border-radius: 15px 0 0 15px;
    padding: 20px;
    position: relative;
    flex-shrink: 0;
}

.menu-left ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-left li {
    background: white;
    margin-bottom: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.menu-left>li>.right-arrow {
    color: #000000;
    font-size: 0.8rem;
}

.menu-left li strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.menu-left li span {
    display: block;
    color: #888;
    font-size: 0.85rem;
}

.menu-left li:focus {
    outline: 2px solid #b0b6c0;
}

.menu-right {
    width: 65%;
    min-width: max-content;
    padding: 20px;
    background: white;
    border-radius: 0 15px 15px 0;
    flex-shrink: 0;
    min-height: 300px;
}

.menu-right h3 {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}

.course-grid {
    /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; */
    display: none;
    color: black;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
    min-height: 120px;
}

.course-grid.active {
    display: grid;
}

.navcourse-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.navcourse-card:hover {
    transform: translateY(-5px);
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.navcourse-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navcourse-card:hover i {
    -webkit-text-fill-color: white;
}

.navcourse-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.navcourse-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.course-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-weight: 0.9rem;
    color: #000000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.mega-menu-wrapper:hover .mega-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    left: -38px;
}

.course-details {
    padding-left: 20px;
    flex: 1;
}

.course-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #234eb0;
    margin-bottom: 15px;
}

.course-card i,
.course-card svg {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.course-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    text-decoration: none;
    width: 100%;
    /* Makes sure it stretches */
    height: 100%;
}

.angle-icon {
    transition: transform 0.3s ease;
}

.angle-icon.rotate {
    transform: rotate(180deg);
}

.menu-left i,
.menu-left svg {
    font-size: 0.8rem;
    opacity: 0.7;
    color: #666;
}

.menu-left li:hover,
.menu-left li.active {
    background: var(--gradient);
    color: white;
}

.menu-left li:hover strong,
.menu-left li.active strong,
.menu-left li:hover i,
.menu-left li.active i {
    color: white;
}

.nav-link-light {
    color: white;
}

.nav-link-dark {
    color: black;
}

.nav-light .nav-link-light:not(.login),
.nav-light .desk_list_item,
.nav-light .direct_links,
.nav-light .fa-angle-down,
.nav-light .fa-angle-right {
    color: #222 !important;
    background: none !important;
}

/* Dropdown styles for regular menu items */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 156px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 9px 14px;
    color: #333;
    text-decoration: none;
    font-size: .9rem;
    /* border-bottom: 1px solid #f0f0f0; */
    border: 1px solid black;
    margin: 5px;
    border-radius: 4px;
}

.dropdown-content a:hover {
    background: var(--gradient) !important;
    color: white;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content {
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    pointer-events: auto;
}

/* First link hovered - top corners rounded */
.dropdown-content a:first-child:hover {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Last link hovered - bottom corners rounded */
.dropdown-content a:last-child:hover {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Mobile dropdown styles */
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Close button for mega menu */
.mega-menu-close {
    position: absolute;
    top: 5px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.mega-menu-close:hover {
    color: #333;
}

@media screen and (max-width: 786px) {
    nav {
        justify-content: space-between;
        /* width: 95%; */
        padding: 0 20px;
    }

    #nav_list {
        display: none;
    }

    .login {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: flex;
    }

    /* Hide desktop mega menu layout on mobile */
    .mega-menu .menu-left,
    .mega-menu .menu-right {
        display: none !important;
    }

    /* Show accordion layout on mobile */
    .mobile-accordion {
        display: block !important;
    }

    /* Ensure mega menu container works on mobile */
    .mega-menu-container {
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: 1rem;
    }

    .mega-menu {
        max-width: 95%;
        width: 95%;
        margin: 0;
        margin-top: 5rem;
    }
}

@media screen and (min-width: 787px) {

    /* Hide accordion on desktop */
    .mobile-accordion {
        display: none;
    }

    /* Show desktop layout */
    .mega-menu {
        display: flex;
    }

    .menu-left,
    .menu-right {
        display: block;
        width: 50%;
        border-radius: 0;
    }

    .menu-left {
        border-radius: 15px 0 0 15px;
        width: 35%;
    }

    .menu-right {
        border-radius: 0 15px 15px 0;
        width: 65%;
        min-height: auto;
        overflow-y: auto;
        flex: 1;
    }
}

/* navbar css end  */
/* footer css start  */
footer {
    /*background-image: url("../assets/images/footer.webp");*/
    /* padding: 30px 99px 0 99px; */
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #151515;
}

.one_footer {
    display: flex;
    align-items: start;
}

#one_child {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    flex: auto;
}

#one_img {
    width: 3.5rem;
    height: 3.5rem;
}

#one_name {
    color: white;
    margin: 0;
    margin-bottom: 6px;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
}

.two_footer {
    width: 75%;
    display: flex;
    justify-content: space-evenly;
}

.left,
.mid,
.right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

#sub_link {
    text-decoration: none;
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.three {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

#three_para {
    color: white;
    margin: 0;
    line-height: 26px;
}

#three_div {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

#social_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_icon {
    width: 2rem;
    height: 2rem;
}

#mail_id {
    text-decoration: none;
    color: white;
    margin-top: 11px;
    margin-bottom: 17px;
}

.four {
    background: black;
    color: white;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 786px) {
    footer {
        padding: 1rem 2rem 3rem 2rem;
    }

    .youtube {
        margin-top: 0px !important;
    }

    .two {
        width: 100%;
    }

    .three {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .two_footer {
        width: 100%;
    }

    #three_para {
        width: 100%;
        text-align: center;
    }

    #one_child {
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .one_footer {
        display: block;
    }

    #three_div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 20px 0;
    }

    #one_img {
        width: 10.5rem;
        height: 10.5rem;
        margin: auto;
    }
}

@media only screen and (max-width: 768px) {
    #wp_anchor>img {
        width: 3.5rem !important;
    }

    img.counserting-image {
        width: 65px !important;
        bottom: 0.5rem !important;
    }

    #mock_test_button {
        left: 78px !important;
        top: 88% !important;
    }
}

/* footer css end  */

/* whatsapp css start  */
.whatsApp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.wp_link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #4cca5a;
    border-radius: 2rem;
    padding: 0.7rem 1.5rem;
}

.wp_link_img {
    width: 1.5rem;
}

.wp_chat_text {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: white;
    text-align: center;
    white-space: nowrap;
}

@media screen and (max-width: 786px) {
    html {
        font-size: 12px;
    }

    .wp_link {
        padding: 0 !important;
        background: none;
    }

    .wp_chat_text {
        display: none;
    }

    .wp_link_img {
        width: 2.5rem !important;
        margin-bottom: 1rem;
    }
}

/* whatsapp css end  */

/* student-slider style start  */
/* desktop  */
.one {
    margin: 3rem 0 3rem 0;
}

.desktopCarousel {
    padding: 1rem;
}

#carousel-cell-desk {
    width: 28%;
    height: 260px;
    margin-right: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 3rem;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#stud_img {
    height: calc(190rem / 16);
    /* border-radius: 50%; */
}

#stud_name {
    margin: 0;
    color: var(--navyBlue);
}

.desk_rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.air {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    font-size: 3rem;
}

.num {
    text-align: center;
    font-weight: 800;
    font-size: 5rem;
    font-family: "Poppins", sans-serif;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 9.5rem;
    line-height: 8rem;
}

.exam {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

/* phone  */

.two {
    display: none;
}

#carousel-cell-ph {
    width: 66%;
    height: 260px;
    margin-right: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 3rem;
}

#car_two_img {
    height: calc(190rem / 16);
    /* border-radius: 50%; */
}

#car_two_para {
    margin: 0;
    color: var(--navyBlue);
}

.rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 786px) {
    .one {
        display: none;
    }

    .two {
        display: block !important;
        margin-bottom: 2rem;
    }

    .carousel-cell {
        width: 81% !important;
        margin-right: 3rem !important;
    }
}

/* student-slider style end */
/* career Counselling Code*/

img.counserting-image {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    display: block;
    width: 65px;
    z-index: 99999;
}

#mock_test_button {
    bottom: 2rem !important;
    display: block;
    position: fixed;
    left: 85px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: var(--gradient);
    --gradient: linear-gradient(to right, #234eb0, #b656e2);
    color: white;
    font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 768px) {
    img.counserting-image {
        width: 65px !important;
        bottom: 0.5rem !important;
    }

    #mock_test_button {
        left: 78px !important;
        top: 88% !important;
    }
}

/* student-slider style end */

/* heading css */
.common_h2 {
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    /* line-height: 100%; */
    letter-spacing: 0%;
    /* padding-top: 50px; */
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.common_sub_h {
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 1.5rem;
    /* line-height: 100%; */
    letter-spacing: 0%;
    /* padding-top: 50px; */
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text_right_h2 {
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 3rem;
    text-align: right;
    /* line-height: 100%; */
    letter-spacing: 0%;
    /* padding-top: 50px; */
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text_left_h2 {
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 3rem;
    text-align: left;
    /* line-height: 100%; */
    letter-spacing: 0%;
    /* padding-top: 50px; */
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.common_p {
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
    color: #555e73;
    text-align: right;
}

.textOnDesktop {
    font-weight: 400;
    font-size: 1.125rem;
    color: #555e73;
    margin: 0;
    margin-top: 1rem;
    display: block;
}

@media screen and (max-width: 786px) {
    .common_h2 {
        width: 100%;
        text-align: center;
        font-size: 2rem;
    }

    .text_right_h2 {
        width: 100%;
        text-align: center;
        font-size: 2rem;
    }

    .text_left_h2 {
        width: 100%;
        text-align: center;
        font-size: 2rem;
    }

    .common_p {
        padding: 1rem;
        font-size: 1.3rem;
        font-weight: 400;
        color: #555e73;
        text-align: center;
    }

    .textHideOnMobile {
        display: none;
    }

    .common_sub_h {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
    }
}