@font-face {
    font-family: 'Proxima Nova';
    src: url('/assets/fonts/ProximaNova-Regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/assets/fonts/ProximaNova-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/assets/fonts/Proxima\ Nova\ Alt\ Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Proxima Nova', sans-serif;
}

:root {
    --treck-base: #00BCD4;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

header {
    background-color: #e0d8cb;
}

body {
    width: 100%;
    font-family: 'Proxima Nova', sans-serif;
}

.nav-right-d {
    margin-top: 1.5rem;
    display: flex !important;
    gap: 20px;
    /* justify-content: end; */
}

.nav-right a {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 30%; */
}

.nav-right a img {
    margin-bottom: 0.5rem;
    height: 90px;
    /* width: 90px; */
}

.nav-right p {
    /* color: #fff; */
    padding: 5px 10px;
    border-radius: 50px;
    color: #000;
    width: fit-content;
    font-weight: 500;
    background-color: #fff;
    font-weight: 600;
    box-shadow: 2px 2px 4px #0000005e;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 600;
}

.section-heading h2 span {
    color: #00A2B9;
}

section {
    padding-top: 90px;
}

p {
    font-weight: 500;
}

.banner {
    min-height: 90vh;
    height: 110vh;
    background: url(assets/banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    padding-top: 0;
}

.banner>div,
.banner .row {
    height: 100%;
}

/* .banner::before {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.322);
} */

.banner-content {
    /* color: #fff; */
    height: 100%;
}

.banner-content h4 {
    font-style: italic;
    font-weight: 600;
    color: #633c21;
}

.banner-content h1 {
    font-weight: 700;
    font-size: 40px;
    color: #000;
    /* color: #fff; */
    line-height: 1;
    margin-bottom: 1rem;
}

.banner-content h3 {
}

.banner-content h3 span {
    color: #000;
    font-weight: 600;
}

.banner-content h3 span.h-span2 {
    font-size: 45px;
    background-color: #a98f71;
    color: #000;
    padding: .5rem 1.5rem;
    margin-top: .5rem;
    display: block;
    border-radius: 50px;
    width: fit-content;
}
@media (max-width:767px) {
    .banner-content h3 span.h-span2 {
        margin: 0 auto;
    margin-top: .5rem;
    font-size: 30px;
    }
}
.admi-open {
    margin-top: 1rem;
    padding: 15px 30px;
    border-radius: 10px;
    color: #00a2b9;
    width: fit-content;
    font-weight: 500;
    background-color: #fff;
    font-weight: 600;
    box-shadow: 2px 2px 4px #0000005e;
}

.page-btn {
    padding: 15px 25px;
    background-color: #00A2B9;
    color: #fff;
    border: none;
    /* display: block; */
}

/*  */
.scroll-form {
    position: fixed;
    right: 0px;
    top: 100px;
    width: 300px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1000;
}

.scroll-form.hide-on-scroll {
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
}

/*  */
.numbers {}

.number-card {
    /* background-color: #00a2b9; */
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 0;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* text-shadow: 2px 2px 4px #0000005e; */
    margin-bottom: 1rem;
}

/* .number-card.sec {
    height: 200px;
} */

/* .number-card:hover h5 {
    font-size: 50px;
} */

.number-card.one {
    position: relative;
    /* padding-right: 40px; */
    /* Space for border */
}

.number-card::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5px;
    height: 80%;
    width: 3px;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    background: linear-gradient(to bottom, #00A2B9 0%, #633c21 100%);
    background-clip: content-box;
    display: block;
    padding-left: 2px;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    box-sizing: content-box;
}

.number-card::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 3px;
    background: linear-gradient(to top, #00A2B9 0%, #633c21 100%);
    background-clip: content-box;
    display: block;
    padding-left: 2px;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    box-sizing: content-box;
}

.number-card.five::before,
.number-card.five::after,
.number-card.three::before,
.number-card.three::after {
    display: none;
}

/* .number-card.one {
    background-image: url(https://img.freepik.com/free-photo/full-shot-smiley-students-library_23-2149647046.jpg?t=st=1744218161~exp=1744221761~hmac=1436201461ae5416b883cb3a4c2857080d2e4bb97b242ddbc1d28a7a8ca9a60b&w=740);
}

.number-card.two {
    background-image: url(https://img.freepik.com/free-photo/close-up-still-life-hard-exams_23-2149314021.jpg?t=st=1744218567~exp=1744222167~hmac=c2f2884933b51025fcd166dc7b160ed48a5a493fe55f71fc8d005769e46f7778&w=740);
}

.number-card.three {
    background-image: url(https://www.marwadiuniversity.ac.in/wp-content/uploads/2022/06/MU-122-scaled.jpg);
}

.number-card.four {
    background-image: url(https://img.freepik.com/free-photo/city-committed-education-collage-concept_23-2150062204.jpg?t=st=1744218762~exp=1744222362~hmac=a31adcf290739ed060c8cf0ca125cc914f26a973c0e5874191299aab3b760e7a&w=996);
}

.number-card.five {
    background-image: url(https://img.freepik.com/free-photo/network-graphic-overlay-banner-background_53876-165250.jpg?t=st=1744218543~exp=1744222143~hmac=8be9c5ad04293cd1dd04701d31535bf26f8ff2d5bc306c38303e74564d51fef4&w=740);
} */

/* .number-card::before {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.447);
    border-radius: 50px;
} */

.number-card h5 {
    font-size: 50px;
    font-weight: 700;
    transition: all ease-in-out .2s;
    color: #00A2B9;
}

.number-card p {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
}

/*  */

.program-img {
    height: 100%;
    width: 100%;
}

.programmes {
    background-image: url(assets/p2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    padding-bottom: 70px;
}

.programmes::before {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.75);
}

.program-img img {
    height: 310px;
    width: 100%;
    object-fit: cover;
    /* border-radius: 0 0 100px 100px; */
}

.grd.program-img img {
    border-radius: 100px 100px 0 0;
}

.program-header {
    /* border-bottom: 1px solid #555; */
    padding: 0;
    width: 98%;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.capsule {
    padding: 6px 10px;
    border-radius: 50px;
    background-color: #a98f71;
    text-align: center;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-bottom: 0.5rem;
}

.programmes h4 {
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: .9;
    /* text-align: right; */
    text-decoration: underline 2px #00A2B9;
}

.program-card {
    width: 30%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* border: 1px solid #633c21; */
    position: relative;
    /* padding-top: 1rem; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    background: #fff;
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width:767) and (max-width:1024px) {
    .program-card {
        height: 370px;
    }
}

.p-card-two .program-card {
    width: 24%;
}

.p-card-content {
    padding: 1rem;
}

.program-card p {
    font-size: 13px;
    margin: 0;
    margin-bottom: 0.5rem;
    text-align: justify;
    line-height: 1.25;
    font-weight: 500;
}

.program-title {
    position: absolute;
    top: -5%;
    background: #633c21;
    left: 50%;
    transform: translate(-50%, -5%);
    color: #fff;
    border-radius: 50px;
    padding: 5px 20px;
    width: fit-content;
    font-weight: 600;
    white-space: nowrap;
}

.program-card>span {
    font-weight: 700;
}

.program-card-header {
    background-color: #a98f71;
    justify-content: center;
    padding: .5rem 1rem;
}

.program-card-header h5 {
    margin-bottom: 0;
    /* color: #000; */
    font-weight: 700;
    font-size: 22px
}

.program-card-header p {
    margin-bottom: 0;
}

.p-card-btn {
    padding: 8px;
    border-radius: 8px;
    display: inline;
    background: #a98f71;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    align-self: self-end;
}

.program-card .program-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-card .program-meta span {
    font-size: 14px;
    font-weight: 700;
}

.program-card .program-meta span.can-fee {
    color: #00bcd4;
    text-decoration: line-through;
}

.program-card .program-meta span.new-fee {}

.program-card .program-meta span i,
.program-card span>i {
    color: #00A2B9;
    font-weight: 600;
}

.program-card .page-btn {
    padding: 5px 20px;
    text-decoration: none;
    text-align: center;
    background-color: #633c21;
    display: inline !important;
}

/*  */

.whyus {
    background: #EFF5F6;
    /* margin-top: 70px; */
    /* background: url(https://img.freepik.com/premium-photo/group-business-man-people-with-laptop_862994-614904.jpg?w=1380) no-repeat;
    background-size: cover; */
}

.why-card {
    margin-bottom: 2rem;
    /* text-align: justify; */
}

.why-card-img {
    /* background: #03e2ff; */
    padding: .5rem;
    width: fit-content;
    border-radius: 10px;
    margin-bottom: 1rem;
    /* background: #fff; */
}

.why-card-img img {
    width: 60px;
    /* filter: invert(1) brightness(2); */
}

.why-card-text h5 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.why-card-text p {
    font-size: 15px;
    font-weight: 500;
}

/*  */
.placement-highlights {
    background: url(../Green_Computer_014_11zon.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 70px;
    position: relative;
    z-index: 0;
}

.placement-highlights::before {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.522);
}

.place {
    color: #fff;
    text-align: center;
}

.place-no {
    font-size: 30px;
    font-weight: 700;
}

.place-no span {
    font-size: 70px;
}

.place-txt {
    font-size: 20px;
    font-weight: 500;
}

.swiper-slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: .25rem;
    background: #fff;
    border-radius: 10px;
}

/*  */

.about-img-wrap {
    display: flex;
    gap: 10px;
    align-items: end;
    width: 100%;
    padding-right: 30px;
}

.about-img {
    width: 50%;
    height: 400px;
    border-radius: 200px;
    overflow: hidden;
}

.about-img.two {
    height: 340px;
}

.about-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.video {
    width: 100%;
}

.campus-video {
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.campus-video video {
    height: 100%;
    /* border-radius: 50px 0 50px 0; */
    width: 100%;
    object-fit: cover;
    /* border: 1px solid #00A2B9; */
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 162, 185, 0.85);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 0.6rem 1.2rem; */
    height: 50px;
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(0, 162, 185, 0.4);
}

.custom-play-btn:hover {
    background-color: #633c21;
    transform: translate(-50%, -50%) scale(1.1);
}

.des {
    font-weight: 500;
}

.a-one {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.a-one .des {
    margin-bottom: 0;
}

.a-one .icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00A2B9;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
}

.my-icon {
    /* #E5DAA4 */
    filter: invert(90%) sepia(20%) saturate(595%) hue-rotate(12deg) brightness(91%) contrast(91%);

}

.icon-1 {
    filter: invert(79%) sepia(14%) saturate(1396%) hue-rotate(147deg) brightness(92%) contrast(91%);
}

.icon-3 {
    /* #E5BCA4 */
    filter: invert(89%) sepia(22%) saturate(698%) hue-rotate(321deg) brightness(92%) contrast(89%);
}

.icon-4 {
    /* #B3E5CB */
    filter: invert(88%) sepia(25%) saturate(417%) hue-rotate(104deg) brightness(92%) contrast(92%);
}

.a-one .des {
    flex: 1;
}

/*  */

.degree {
    background: #00A2B9;
    padding-bottom: 70px;
}

.degree p {
    font-size: 30px;
    line-height: 1.3;
}

.degree-img {
    height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.degree-img img {
    height: 100%;
    /* width: 100%; */
}

.admission-process-section {
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    padding: 70px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    /* flex-wrap: wrap; */
    /* max-width: 1200px; */
    margin: auto;
    position: relative;
    padding-top: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #633c21;
    z-index: 1;
}

.timeline-step {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    width: 25%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.circle {
    width: 50px;
    height: 50px;
    background: #a98f71;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.timeline-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.timeline-step p {
    font-size: 0.95rem;
    color: #555;
}

.testimonialSwiper .swiper-wrapper {
    padding-bottom: 70px;
}

.swiper-dots {
    background-color: #000;
}

.testi-card {
    position: relative;
    /* opacity: .7; */
}

.testimonial-area-5 .swiper-slide {
    opacity: .7;
}

.testi-card::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--color-white);
    opacity: .7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.testimonial-area-5 .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.rating {
    color: rgb(255, 255, 46);
}

.testi-card {
    padding: 1.5rem;
    border-radius: 10px;
}

.testi-card img {}

.accordion-button {
    background-color: #00A2B9;
    color: white;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: #633c21;
    color: #fff;
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: #f9f9f9;
    color: #333;
    border-top: 1px solid #ddd;
}

.accordion-item {
    border: 1px solid #00A2B9;
    border-radius: 6px;
    margin-bottom: 10px;
}

.accordion .wrap {
    width: 49%;
}

/* General accordion styles */
.accordion-button {
    background: linear-gradient(90deg, #00A2B9 0%, #633c21 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:hover {
    transform: scale(1.01);
    background: linear-gradient(90deg, #00bcd4 0%, #1d4f91 100%);
}

.accordion-button:not(.collapsed) {
    box-shadow: inset 0 -3px 0 #fff;
    background: #633c21;
    color: #fff;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Accordion body style */
.accordion-body {
    background-color: #fdfefe;
    padding: 1.25rem;
    font-size: 0.98rem;
    color: #333;
    line-height: 1.6;
    border-radius: 0 0 0.5rem 0.5rem;
    border-top: 1px solid #ddd;
}

/* Accordion item styling */
.accordion-item {
    background-color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.association-section {
    background: #f9fbfc;
    /* margin-top: 70px; */
}

.brand-logos img {
    height: 60px;
    width: 100px;
    /* filter: grayscale(100%); */
    /* opacity: 0.8; */
    transition: 0.3s ease;
    object-fit: contain;
}

.brand-logos img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.startup-highlight h3 {
    color: #633c21;
    font-size: 1.8rem;
}

.startup-highlight p {
    font-size: 1rem;
    color: #555;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #00A2B9;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 162, 185, 0.05);
}

.stat-card:hover {
    box-shadow: 0 8px 18px rgba(0, 162, 185, 0.15);
    transform: translateY(-4px);
    border-left-color: #633c21;
}

.stat-card h5 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: #00A2B9;
}

.stat-card p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0;
}

footer {
    background-color: #e0d8cb !important;
    padding: 70px 0 0 0;
}

.copyright {
    border-top: 1px solid #999;
}

.recruiters {
    background-color: #e0d8cb;
    padding-bottom: 70px;
}

.companyLogos {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.companyLogos .logo {
    width: 19%;
    height: 70px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    padding: .5rem;
}

.companyLogos .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body {
    overflow-x: hidden;
}

.fixed-action-btn {
    position: fixed;
    z-index: 999;
    background-color: #a98f71;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 12px 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
    display: none;
}

.fixed-action-btn.visible {
    display: block;
}

#goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 55px;
    z-index: 100;
    background-color: hsl(32, 25%, 55%);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

#goTopBtn:hover {
    opacity: 0.9;
}

/* Desktop View */
@media (min-width: 768px) {
    .fixed-action-btn {
        top: 60%;
        right: 20px;
        transform: translateY(-60%) rotate(-90deg);
        transform-origin: right center;
        border-radius: 8px 8px 0 0;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .fixed-action-btn {
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
    }

    #goTopBtn {
        bottom: 55px;
        padding: 8px 15px;
    }

    .copyright {
        padding-bottom: 2rem;
    }
}

.fixed-action-btn:hover {
    background-color: #8b745a;
}



.faculty-section {
    background-color: #f9f9f9;
}

.section-title {
    color: #00BCD4;
    font-weight: bold;
    font-size: 2.5rem;
}

.faculty-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.faculty-img-wrapper {
    position: relative;
    background-color: #fff;
    padding-bottom: 30px;
    width: 100%;
    height: 300px;
}

.faculty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    position: relative;
    /* top: 30px; */
    z-index: 2;
    border-radius: 0 0 40% 40%;

}

/* .faculty-img-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 0 0 50% 50% / 100%;
    z-index: 1;
} */

.faculty-details {
    background-color: #fff;
    padding: 5px 10px 30px 10px;
}

.faculty-name {
    font-size: 1.2rem;
    color: #00a2b9;
    font-weight: 500;
}

.faculty-title {
    font-size: 0.95rem;
    color: #333;
}

.entrepreneur-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    z-index: 0;
}

.entrepreneur-section::before {
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #000000d8;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.entrepreneur-section .section-title {
    z-index: 999;
    position: relative;
}

.entrepreneur-section .section-title p {
    z-index: 999;
    position: relative;
    font-size: 20px;
}

.hero-message h2 {
    font-size: 34px;
    font-weight: 700;
    /* color: #004d4d; */
}

.hero-message h2 span {
    /* color: #0097a7; */
}

.hero-message p {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.mou-logos-scroll {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    z-index: 9;
    position: relative;
}

.mou-logos-scroll img {
    width: 100px;
    /* filter: grayscale(100%); */
    /* opacity: 0.9; */
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    background: #fff;
    height: 70px;
    object-fit: contain;
    padding: .5rem;
    border-radius: 8px;

}

/* .mou-logos-scroll img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
} */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s ease;
    border-left: 5px solid #0097a7;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 36px;
    color: #0097a7;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-card p {
    font-size: 14px;
    /* color: #666; */
}

.accent-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    /* max-width: 400px; */
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.accent-bg img {
    width: 100%;
    height: auto;
}

.fs-20 {
    font-size: 20px;
}

.feature-two {
    position: relative;
    display: block;
    z-index: 1;
}

.feature-two__shape-3 {
    position: absolute;
    top: -45px;
    right: 0;
    opacity: .80;
    z-index: -1;
}

.feature-two__shape-3 img {
    width: auto;
}

.feature-two__wrap {
    position: relative;
    display: block;
    /* max-width: 1290px; */
    width: 100%;
    margin: 0 auto;
    background-image: -moz-linear-gradient(90deg, rgb(235, 242, 242) 25%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(235, 242, 242) 25%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(235, 242, 242) 25%, rgb(255, 255, 255) 100%);
}

.feature-two__single {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}

.feature-two__single-inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 38px;
    padding-bottom: 49px;
    padding-left: 128px;
    z-index: 1;
}

.feature-two__shape-1 {
    position: absolute;
    left: -78px;
    top: -10px;
    border-radius: 50%;
    background-color: rgb(242, 237, 235);
    width: 171px;
    height: 172px;
    z-index: 1;
}

.feature-two__shape-2 {
    position: absolute;
    left: -7px;
    top: 0;
    border-radius: 50%;
    background-image: -moz-linear-gradient(0deg, rgb(235, 242, 242) 25%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(235, 242, 242) 25%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(235, 242, 242) 25%, rgb(255, 255, 255) 100%);
    width: 171px;
    height: 172px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-two__shape-2:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--treck-base);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.feature-two__single:hover .feature-two__shape-2:before {
    opacity: 1;
}

.feature-two__icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.feature-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--treck-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.feature-two__icon span img{
    max-width: 55px;
}
.feature-two__single:hover .feature-two__icon span {
    color: var(--treck-white);
}

.feature-two__content-box {
    position: relative;
    display: block;
}

.feature-two__sub-title {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
}

.feature-two__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 25px;
    margin-top: 3px;
}

.feature-two__title a {
    color: var(--treck-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-two__title a:hover {
    color: var(--treck-base);
}

.gradient-text {
    background: linear-gradient(to right, #00bcd4, #000000 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 26px;
}
.primg{
    /* margin-top: 2.5rem; */
    /* width: 50% !important; */
    /* height: 100% ; */

}
.program-overview{
    background: #eee;
    background: radial-gradient(circle, #ffffff, #eee, #eee);

}
.primg img{
    height: 100%;
    width: 100%;
    border-radius: 100px 100px 0 0 !important;
    /* border-radius: 50% !important; */
    box-shadow: 2px 2px 4px #00000036;
    border-top: 5px solid #00A2B9;
}

.primg.one{
    margin-top: 0;
    margin-left: 2.5rem;
}

.primg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* border-radius: 0 0 0 50px  !important; */
}

.cta-button{
    font-size: 18px;
    padding: 14px 30px;
    border-radius: 50px;
    background-color: #0097a7;
    border: none;
    color: #fff;
    text-decoration: none;
}

.career .h-100.border{
    background: transparent !important;
    border: none !important;
    box-shadow: none;
}
.career{
background: linear-gradient(to right, #00A2B9, #a98f71 );
border-radius: 20px;
}
.career .h-100.border ul {
    padding: 0;
}
.career .h-100.border ul li{
    color: #fff;
    list-style: none;
    margin-bottom: 0.25rem;
}

.career .h-100.border ul li::before{
    content: '\f058';
    font-family: FontAwesome;
    margin-right: 8px;
}