* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-mulish);
}
:root {
  --nav-color: #034a65;
  --navy-blue: #034964;
  --red: #d62316;
  --font-mulish: "Mulish";
}
@font-face {
  font-family: "Mulish";
  font-weight: 400;
  src: url("../fonts/Mulish-Regular.woff2") format("woff2"),
    url("../fonts/Mulish-Regular.woff") format("woff");
}

@font-face {
  font-family: "Mulish";
  font-weight: 500;
  src: url("../fonts/Mulish-Medium.woff2") format("woff2"),
    url("../fonts/Mulish-Medium.woff") format("woff");
}

@font-face {
  font-family: "Mulish";
  font-weight: 600;
  src: url("../fonts/Mulish-SemiBold.woff2") format("woff2"),
    url("../fonts/Mulish-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Mulish";
  font-weight: 700;
  src: url("../fonts/Mulish-Bold.woff2") format("woff2"),
    url("../fonts/Mulish-Bold.woff") format("woff");
}
body {
  font-family: var(--font-mulish);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}
p {
  font-size: 16px;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}
button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}
.container {
  max-width: 1290px;
}
h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: -0.25px;
}
h4 {
  font-size: 24px;
}
.py-60 {
  padding: 60px 0;
}
.bg-navy {
  background-color: var(--navy-blue);
}
header {
  position: relative;
  z-index: 99;
}
.search-container {
  position: relative;
}
.search-box {
  cursor: pointer;
}
.search-input {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 200px;
  position: absolute;
  right: 0;
  top: 115%;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-input.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-input:focus {
  outline: 0;
}

.top-bar {
  display: flex;
  align-items: center;
  position: relative;
}

.top_header .left {
  background-color: var(--navy-blue);
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

.top_header .left span {
  margin-right: 10px;
  font-weight: bold;
}
.icons {
  display: flex;
  gap: 6px;
}
.icons a {
  transition: 0.3s all;
}
.icons a:hover {
  opacity: 0.8;
}
.top_header .right {
  background-color: var(--red);
  color: white;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 40px;
  padding-right: 20%;
}

.top_header .right a {
  margin-left: 40px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: -0.25px;
}

.top_header .slant {
  width: 0;
  height: 0;
  border-bottom: 68px solid #d6282800;
  border-left: 50px solid #0c4b5f;
  position: absolute;
  left: 331px;
  top: 0;
  z-index: 1;
}
.top_header .slant::before {
  content: "";
  width: 1px;
  height: 106px;
  position: absolute;
  left: -31px;
  top: -11px;
  z-index: 1;
  border: 2px solid #fff;
  transform: rotate(36deg);
}

.top-bar > .left {
  z-index: 2;
}
.dropdown-menu {
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 400px;
  overflow: auto;

  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

/* For Chrome, Edge, Safari */
.dropdown-menu::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--red);
  border-radius: 10px;
}

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

.dropdown-menu a {
  color: white;
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.25px;
}

.dropdown-menu {
  background-color: var(--red);
  border-radius: 0;
  min-width: 12rem;
}

.dropdown-menu .active {
  background-color: white;
  color: var(--red);
}
.main_header {
  background-color: white;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.main_header .navbar {
  padding: 0;
}
.nav_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px 0 0;
  position: relative;
  width: 100%;
}
.navbar-brand,
.main_header .close_btn {
  display: none;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  color: #034a65; /* dark blue */
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
}

.nav-link:hover {
  color: #d62828; /* red hover */
}

.main_header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.main_header .logo:hover p {
  color: #000;
}

.main_header .logo img {
  margin: auto;
}
.main_header .logo p {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
}
.search-box {
  padding: 0.5rem 1rem;
}
.banner {
  position: relative;
  height: calc(100vh - 155px);
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
  padding-bottom: 50px;
  overflow: hidden;
  background-color: var(--navy-blue);
}

/* Background video */
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Overlay gradient */
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, #191919 100%);
  z-index: -1;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner h1 {
  margin-bottom: 20px;
}

.banner h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 50px;
  letter-spacing: -0.25px;
}

.college-section {
  position: relative;
  padding: 62px 0 85px;
  text-align: center;
  overflow: hidden;
}
.college-section::before {
  content: "";
  background-color: #000;
  max-width: 600px;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
.circle-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #edfaff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.circle-left {
  left: -150px;
}

.circle-right {
  right: -150px;
}
h2 {
  font-family: Mulish;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.25px;
}

.title_box h2 {
  color: var(--red);
  font-family: var(--font-mulish);
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.25px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.title_box p {
  max-width: 1037px;
  margin: 0 auto 50px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.college-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 40px;
  position: relative;
  z-index: 1;
}
.college-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 15%;
  transition: 0.4s all;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 10px #d622162e;
}
.college-card:hover {
  transform: translateY(-8px);
}
.college-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.college-card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.25px;
  text-align: center;
  color: #040303;
}
.red-icon {
  color: #d62828;
}

.blue-icon {
  color: #0077b6;
}

.welcome-section {
  padding: 40px 0;
  background-color: #fff;
}

.welcome-section .left-column {
  display: flex;
  gap: 20px;
  align-items: center;
}

.director-box {
  position: relative;
  width: 50%;
}
.leader_img {
  height: 340px;
  margin-bottom: 15px;
}
.radius_right,
.radius_right img {
  border-bottom-right-radius: 0 !important;
}
.leader_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 29%;
}
.p-10 {
  padding: 8px;
}
.dot_border {
  border: 2px dotted var(--nav-color);
  border-radius: 40px;
}
.dot_border img {
  border-radius: 40px;
}

.service-box {
  background-color: var(--red);
  color: white;
  padding: 10px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.service-box i {
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
}
.service-box p {
  font-weight: 900;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.25px;
}

.welcome-section .photos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
}

.welcome-section .photos img {
  height: 50%;
  width: 100%;
  border-radius: 40px;
}

.right-column {
  flex: 2;
}

.right-column .title span {
  background-color: var(--red);
  color: white;
  padding: 4px 13px;
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: 31px;
  line-height: 44px;
  letter-spacing: -0.25px;
}
h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.25px;
}
.right-column h3 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.25px;
  margin-left: 39px;
}
.right-column .highlight {
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.25px;
  text-align: right;
  margin-right: 42px;
  color: var(--nav-color);
  display: block;
}

.right-column p {
  margin-top: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
  text-align: justify;
}
.programs-section {
  padding: 40px 0 60px;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.programs-section::before,
.programs-section::after {
  content: "";
  position: absolute;
  left: -50px;
  width: 450px;
  height: 450px;
  background-color: #f0f4f5;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.programs-section::after {
  left: auto;
  right: -50px;
  background-color: #fbe8e8;
}
.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 0 40px 40px;
  border-bottom: 3px solid var(--red);
  position: relative;
}
.programs-header::before {
  content: "";
  background-color: var(--navy-blue);
  height: 3px;
  width: 15%;
  bottom: -3px;
  position: absolute;
  left: 10px;
}

.programs-header h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 59px;
  letter-spacing: -0.25px;
  color: #034a65;
  max-width: 60%;
}

.programs-header .highlight {
  font-weight: bold;
}

.program-type-box {
  border: 2px solid var(--red);
  padding: 10px 20px;
  font-size: 35px;
  text-align: center;
}

.program-type-box .nav-item .nav-link.active {
  background-color: var(--red);
  color: white;
}

.program-type-box .nav-item .nav-link {
  color: #0c0c0c;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  letter-spacing: -0.25px;
  border: 0;
}
.program-type-box .nav-tabs {
  max-width: 420px;
  border-bottom: 0;
  gap: 10px;
}
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.programs-section .tab-content {
  min-height: 230px;
}

.program-card {
  border: 1px solid #ccc;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  padding: 5px 20px;
  box-shadow: 0px 4px 4px 0px #00000040;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  border: 1px solid #d12a2f;
  min-height: 60px;
  width: 23%;
  transition: 0.3s all;
}
.program-card:hover {
  box-shadow: none;
  transform: translateY(-5px);
}
.program-card p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #034a65;
  width: 100%;
}
.program-card.red p {
  color: var(--red);
}

.program-card i {
  font-size: 20px;
  color: inherit;
}
.apply-section {
  background: linear-gradient(
      to right,
      rgba(199, 42, 42, 0.9),
      rgba(199, 42, 42, 0.9)
    ),
    url("../images/built-structure.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 40px 0 20px;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.form-container h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-control,
.form-select {
  border-radius: 4px;
  margin-bottom: 15px;
}

.btn-apply {
  background-color: #c72a2a;
  color: white;
  width: 100%;
  font-weight: 600;
  transition: 0.3s all;
}
.btn-apply:hover {
  background-color: #000;
  opacity: 0.8;
  color: #fff;
}

.apply-heading,
.apply-subheading {
  font-weight: 700;
  font-size: 40px;
  line-height: 57px;
  letter-spacing: -0.25px;
  text-align: center;
  text-shadow: 0 0 27px #fff;
}

.apply-subheading {
  text-transform: uppercase;
}
.alumni-section {
  background: #fff;
  padding: 60px 0px;
}
.alumni-section .border-box {
  border: 1px solid var(--navy-blue);
  border-bottom: 10px solid #c72a2a;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 20px;
}

.alumni-heading {
  color: #c72a2a;
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.25px;
  margin-top: 12px;
}
.alumni-heading span {
  font-weight: 400;
}
.alumni-subheading {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
}
/* .alumni-logos {
  column-gap: 20px;
  row-gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
} */

.alumni-logos .brand-logo {
  display: flex;
  align-items: center;
}
.alumni-logos .swiper-slide img {
  object-fit: contain;
}
.alumni-logos .swiper-slide {
  height: auto;
}
.alumni-section .col-lg-4 {
  width: 32.333333%;
}
.alumni-section .col-lg-8 {
  width: 67.666667%;
}
.alumni-logos img {
  object-fit: contain;
}
.alumni-images {
  display: flex;
  justify-content: end;
  gap: 25px;
  margin-bottom: 40px;
}
.alumni-images img {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.testimonial_sec {
  padding-bottom: 40px;
}
.testimonial_sec .left_slider {
  background-image: url(../images/bg-shape.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
}
.testimonial_sec .right_slider {
  background-image: url(../images/quate.png);
  background-position: top center;
  background-size: auto;
  background-repeat: no-repeat;
  padding-top: 40px;
}
.testimonial_sec .left_slider img {
  margin: 0 auto;
}
.testimonial_slider {
  padding-bottom: 50px;
}
.testimonial-content h3 {
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 47px;
  letter-spacing: -0.25px;
  color: var(--red);
  text-align: center;
  margin-bottom: 15px;
}
.testimonial-content p {
  font-family: Mulish;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -0.25px;
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 40px;
}
.testimonial-author span {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.25px;
  background: linear-gradient(90deg, #d2161b 0%, #034a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* For Firefox */
  background-clip: text;
  color: transparent;
}
.testi-image {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto 0;
}
.testi-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet {
  height: 14px;
  width: 14px;
}
.swiper-pagination-bullet-active {
  background-color: #ffd5d4;
}

footer {
  background-color: var(--navy-blue); /* Custom dark blue background */
  color: #ffffff;
  font-size: 14px;
}

footer h6 {
  font-weight: bold;
  margin-bottom: 15px;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer .fab,
footer .fas {
  font-size: 18px;
  transition: color 0.3s ease;
}

footer a.text-white:hover i {
  color: #ffcc00;
}

footer p {
  margin-bottom: 10px;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .logo p {
  font-weight: 700;
  font-size: 24px;
  line-height: 123%;
  letter-spacing: -0.25px;
  margin-bottom: 0;
}
footer .logo img {
  background-color: #fff;
  width: 88px;
  height: 88px;
  object-fit: cover;
}
footer h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.25px;
}

footer .list-unstyled li {
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.25px;
}
footer .list-unstyled li a:hover {
  color: #2183d8 !important;
}

footer .small {
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.25px;
}
.left_footer_sec {
  padding-right: 40px;
}
footer .call_email_box p {
  display: flex;
  gap: 10px;
}
.main_footer {
  position: relative;
}
.main_footer::before {
  content: "";
  background-color: #2183d8;
  height: 2px;
  top: 18px;
  width: 100%;
  left: 0;
  position: absolute;
}
.society_banner {
  background-image: url(../images/society.jpg);
}
.society_banner::before {
  background: linear-gradient(180deg, rgba(3, 74, 101, 0.08) 0%, #034660 100%);
}
.society_banner h1 {
  font-weight: 900;
  font-size: 55px;
  line-height: 57px;
  letter-spacing: -0.25px;
}
.society_banner h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 50px;
  letter-spacing: -0.25px;
}
.about_sec {
  padding-top: 76px;
}
.about_sec .leader_img {
  height: 540px;
}
.about_sec .leader_img img {
  object-position: top;
}
.container-small {
  max-width: 1110px;
  margin: 0 auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  width: 100%;
}
.about_sec .flex-container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.about_sec h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: -0.25px;
  color: var(--red);
  margin-bottom: 15px;
}
.about_sec h3 span {
  background-color: var(--red);
  color: #fff;
  text-align: center;
  padding: 5px;
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: -0.25px;
  display: block;
  margin-bottom: 20px;
  margin-left: 60px;
}
.about_sec p {
  text-align: justify;
  margin-left: 60px;
  padding-bottom: 30px;
  border-bottom: 3px solid #034a65;
}
.our_team_sec {
  padding-top: 40px;
  padding-bottom: 60px;
}
.title-main-small {
  max-width: 587px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}
.title-main-small h2 {
  color: var(--red);
  font-weight: 600;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}
.title-main-small p {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.25px;
}
.our_team_sec .team {
  border: 8px solid #034a65;
  background-color: #034a65;
  max-height: 242px;
  max-width: 242px;
  height: 100%;
  width: 100%;
  padding: 100px 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
}
.our_team_sec .team img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  transition: 300ms;
  object-fit: cover;
}
.our_team_sec .team:hover {
  background-color: transparent;
}
.our_team_sec .team:hover img {
  transform: translateY(-70%);
}
.red_btn_radius {
  padding: 10px 20px;
  min-width: 226px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--red);
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 23px;
  letter-spacing: -0.25px;
  transition: 0.3s all;
  border: 1px solid var(--red);
}
.red_btn_radius:hover {
  background-color: #ffffff;
  color: var(--red);
}
.font-semibold {
  font-weight: 600;
}
.board_team_sec {
  padding-bottom: 40px;
}
.board_team_sec .title-main-small {
  padding-bottom: 40px;
}
.board_team_sec .row {
  margin-left: -40px;
  margin-right: -40px;
}
.board_team_sec .col-lg-4 {
  padding-left: 40px;
  padding-right: 40px;
}
.board_team_sec .team_board {
  background-color: #d2161b;
  position: relative;
  padding: 20px;
}
.board_team_sec .team_board .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  margin: 0 auto;
}
.board_team_sec .team_board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board_team_sec .team_board .title p {
  font-weight: 600;
  font-size: 30px;
  line-height: 39px;
  letter-spacing: -0.25px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: 0.3s all;
}
.board_team_sec .team_board::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: rgba(0, 0, 0, 0.53);
  opacity: 0;
  transition: 0.3s all;
}
.board_team_sec .team_board:hover::before {
  opacity: 1;
}
.board_team_sec .team_board:hover p {
  opacity: 1;
}
.deskof_banner {
  background-image: url(../images/deskofdirector.png);
  text-align: left;
  align-items: center;
}
.deskof_banner .banner-content {
  text-align: end;
}
.deskof_banner .banner-content h1 {
  max-width: 400px;
  margin-left: auto;
  font-weight: 900;
  font-size: 57px;
  line-height: 67px;
  letter-spacing: -0.25px;
  border-bottom: 3px solid #ffffff;
  padding-bottom: 15px;
}
.deskof_banner .banner-content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 57px;
  letter-spacing: -0.25px;
}
.about_sec.desk-2 h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 23px;
  letter-spacing: -0.25px;
}
.about_sec.desk-2 p {
  margin-left: 0;
  border: 0;
  text-align: left;
}
.about_sec.desk-2 .flex-container {
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}
.about_sec.desk-2 .sub-heading {
  font-weight: 500;
  font-size: 32px;
  line-height: 23px;
  letter-spacing: -0.25px;
}
.about_sec.desk-2 .content {
  position: relative;
  padding: 40px 0;
}
.about_sec.desk-2 .content::before,
.about_sec.desk-2 .content::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background-image: url(../images/quatered.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 170px;
  width: 170px;
}
.about_sec.desk-2 .content::after {
  right: auto;
  bottom: auto;
  left: 0;
  top: 0;
  background-image: url(../images/quatered-top.png);
}
.about_sec.desk-2 .leader_img img {
  border-radius: 0;
}
.about_sec.desk-2 .leader_img {
  margin-right: 37px;
  margin-bottom: 57px;
  position: relative;
  z-index: 1;
}
.about_sec.desk-2 .leader_img::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 40px;
  background-image: url(../images/leader-image.jpg);
  height: 100%;
  width: 100%;
  opacity: 0.07;
  z-index: -1;
}
.youtube_video_sec {
  padding: 63px 0;
}
.youtube_video_sec .video-frame {
  box-shadow: 0px 4px 4px 0px #00000040;
  margin-bottom: 25px;
}
.youtube_video_sec .video-frame iframe {
  width: 100%;
}
.cta_block {
  background-image: url(../images/apply-bg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
  padding: 15px 0;
}
.cta_block .container-small {
  max-width: 1013px;
}
.cta_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d62316b5;
  z-index: -1;
}
.cta_block h2 {
  font-weight: 900;
  font-size: 36px;
  line-height: 54px;
  letter-spacing: -0.25px;
  color: #fff;
}
.apply_btn {
  background-color: #034a65;
  border: 3px solid #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: -0.25px;
  color: #fff;
  min-width: 197px;
  padding: 0 20px;
  text-align: center;
  display: inline-block;
  transition: 0.3s all;
}
.apply_btn:hover {
  background-color: transparent;
  color: #fff;
}
.our-mission {
  position: relative;
  margin-bottom: 60px;
}
.our-mission::before {
  content: "";
  background-image: url(../images/dot-shape.svg);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0px;
  height: 440px;
  width: 197px;
  z-index: -1;
}
.our-mission .image {
  position: absolute;
  left: 0;
  top: -50px;
  max-width: 430px;
}
.our-mission .flex-row-reverse .image {
  max-width: 500px;
}
.our-mission .image.right {
  left: auto;
  right: 0;
  bottom: 0;
  top: auto;
}
.our-mission .content {
  padding: 167px 218px 20px 0;
}
.our-mission .flex-row-reverse .content {
  padding: 167px 0 50px 100px;
}
.our-mission h2 {
  color: var(--red);
  margin-bottom: 20px;
}
.our-mission .content h3 {
  margin-bottom: 10px;
}
.line-35 {
  line-height: 35px;
}
.award_sec .red_box {
  background-color: var(--red);
  padding: 40px;
  color: #fff;
  text-align: right;
}
.award_sec .row {
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.award_sec .red_box h2 {
  margin-bottom: 15px;
}
.award_sec .red_box p {
  max-width: 550px;
  margin-left: auto;
}
.award_sec .blue_box {
  background-color: var(--navy-blue);
  color: #fff;
  height: 100%;
  padding: 40px;
}
.award_sec .flex-container {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
}
.award_sec .award-logo span {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.award_sec .award-logo img {
  margin: 0 auto 10px;
}
.why_choose {
  padding: 32px 0;
}
.why_choose .title_box p {
  max-width: 526px;
  margin: 0 auto 20px;
}
.why_choose .white_box {
  box-shadow: 0px 4px 4px 0px #00000040;
  min-height: 260px;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why_choose .white_box span {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.why_choose .white_box h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: -0.25px;
  text-align: center;
}
.future_leader_sec .title_box p {
  max-width: 1018px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 23px;
}
.future_leader_sec .title_box {
  position: relative;
}
.future_leader_sec .title_box::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  background-color: var(--red);
  height: 4px;
  width: 529px;
  z-index: 1;
}
.overlay_hover_box {
  position: relative;
  min-height: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: 0.3s all;
}
.overlay_hover_box::before {
  content: "";
  position: absolute;
  background-color: #034762a6;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: 0.3s all;
}
.overlay_hover_box .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.overlay_hover_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay_hover_box h3 {
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: -0.25px;
  margin-bottom: 12px;
}
.overlay_hover_box:hover .text {
  transform: translateY(37%);
}
.overlay_hover_box .text {
  transition: 0.3s all;
}
.overlay_hover_box .text span {
  background-color: var(--red);
  color: #fff;
  padding: 8px 20px;
  display: block;
  font-weight: 700;
  font-size: 19px;
  line-height: 25px;
  letter-spacing: -0.25px;
  width: fit-content;
  margin: 0 auto;
}
.overlay_hover_box .text a {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.25px;
  text-align: center;
  margin-top: 10px;
  display: inline-block;
}
.overlay_hover_box .text a:hover {
  text-decoration: underline;
  color: #fff;
}
.overlay_hover_box:hover::before {
  transform: translateY(20px);
  height: 72%;
}
.future_leader_sec .row {
  row-gap: 50px;
}
.future_leader_sec.red .overlay_hover_box::before {
  background-color: #d62316ba;
  opacity: 0;
}
.future_leader_sec.red .overlay_hover_box:hover::before {
  opacity: 1;
}
.future_leader_sec.red .overlay_hover_box .text span {
  background-color: transparent;
}
.future_leader_sec.red .overlay_hover_box .text a {
  background-color: #034762;
  font-size: 14px;
  padding: 4px 12px;
}
.future_leader_sec.red .overlay_hover_box .text a:hover {
  background-color: #033d53;
  text-decoration: none;
}
.future_leader_sec {
  position: relative;
  overflow: hidden;
}
.future_leader_sec::before,
.future_leader_sec::after {
  content: "";
  position: absolute;
  background-color: #bc281f17;
  height: 500px;
  width: 500px;
  top: -20px;
  left: -370px;
  border-radius: 50%;
  z-index: -1;
}
.future_leader_sec::after {
  background-color: #edfaff;
  right: -370px;
  left: auto;
}
.content-wrapper {
  background-color: #edfaff;
  padding-top: 20px;
  margin-bottom: 20px;
}
.content-wrapper h2 {
  color: var(--red);
}
.content-wrapper h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: -0.25px;
}

.content-wrapper p {
  color: #464646;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.25px;
}
.highlight-card img {
  height: 60px;
}
.img-wrapper {
  position: absolute;
  top: -40px;
  right: 0;
  bottom: 0;
}
.img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.content-wrapper .section-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: -0.25px;
}
.curve_section {
  background-color: #f9eceb;
  padding: 20px 0;
  overflow: hidden;
  margin-bottom: 20px;
}
.circle-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.highlight-text {
  color: var(--red);
  font-weight: bold;
}
.btn-custom {
  min-width: 160px;
}
.curve-image {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  overflow: hidden;
  height: 350px;
}
.curve_section .content {
  padding: 60px 0;
}
.curve_section .btn {
  background-color: #0e7ea8;
  color: #fff;
  transition: 0.3s all;
}
.curve_section .btn:hover {
  background-color: #034a65;
}
.text-red {
  color: var(--red);
}
.college-card p span {
  color: var(--red);
  font-weight: 700;
  display: block;
}
.college-grid .college-card:nth-child(odd) .icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(12%) saturate(6020%)
    hue-rotate(164deg) brightness(100%) contrast(98%);
}
.college-grid .college-card:nth-child(even) .icon img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(7054%)
    hue-rotate(7deg) brightness(94%) contrast(83%);
}
.all_three_tab .nav-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  border: 1px solid #7c7777;
  position: relative;
  z-index: 1;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--red);
  color: #fff;
  border: 0;
}
.all_three_tab .nav-tabs .nav-link {
  border: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: -0.25px;
}
.all_three_tab .course {
  box-shadow: 0px 4px 4px 0px #00000033;
  border-radius: 30px;
  padding: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.all_three_tab .course .badge {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.25px;
  text-align: center;
  background-color: var(--red);
  border-radius: 9px;
  padding: 8px 20px;
  min-width: 183px;
  display: flex;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
  margin-top: -20px;
  position: relative;
}
.all_three_tab .course p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.25px;
  color: #000;
}
.all_three_tab .course .seats-year {
  width: 100%;
  padding: 10px 20px 20px;
  border-top: 1px solid var(--red);
  margin-top: auto;
}
.all_three_tab .course .img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.all_three_tab .course .overlay {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s all;
}
.all_three_tab .course:hover .overlay {
  opacity: 1;
}
.contact_page .block_box .img {
  height: 250px;
  width: 250px;
  margin: 0 auto 10px;
}
.contact_page .block_box .img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}
.contact_page .block_box p {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.25px;
  text-align: center;
  color: #034862;
}
.contact_page .block_box {
  height: 100%;
}
.contact_page .row .col-lg-4:not(:last-child) .block_box {
  border-right: 1px solid #034762;
}
.info-container {
  position: relative;
  background-image: url(../images/bg-placement-overlay.jpg);
  background-size: cover;
  border-radius: 50px;
  overflow: hidden;
  color: white;
}

/* Overlay with red color using ::before */
.info-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(152, 30, 30, 0.75); /* semi-transparent red */
  z-index: 1;
}

/* Content stays on top */
.info-container > * {
  position: relative;
  z-index: 2;
}

.info-section {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.info-section:last-child {
  border-right: none;
}

.info-icon {
  font-size: 30px;
  margin-bottom: 10px;
  height: 55px;
}
.info-icon img {
  margin: 0 auto;
}

.info-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.25px;
  text-align: center;
}
.recruiting_sec {
  padding: 20px 0;
  border-bottom: 14px solid var(--red);
  margin-bottom: 10px;
}
.recruiting_sec h2 {
  max-width: 730px;
  margin: 0 auto 20px;
}
.recruiting_sec p {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.25px;
  text-align: center;
}
.companies-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.company {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-right: 1px solid var(--red);
  box-sizing: border-box;
  height: 100px;
}

.company img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.company:last-child,
.company:nth-child(5),
.company:nth-child(10) {
  border-right: none;
}
.company:nth-child(1),
.company:nth-child(2),
.company:nth-child(3),
.company:nth-child(4),
.company:nth-child(5) {
  border-bottom: 1px solid var(--red);
}
.legacy_sec {
  background: url("../images/banner-image.png") no-repeat center center/cover;
  color: white;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  position: relative;
  overflow: hidden;
}

.legacy_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85); /* Overlay for better readability */
  z-index: 1;
}
.placement-banner .content {
  padding: 90px 0;
}
.placement-banner .content,
.placement-banner .image {
  position: relative;
  z-index: 2;
}
.placement-banner .image {
  margin-top: 50px;
}

.stats {
  font-weight: 900;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.25px;
  color: #ff8383;
}

.student-highlight {
  text-align: right;
  position: absolute;
  top: 124px;
  right: 51px;
}

.student-highlight .name {
  font-weight: 600;
}

.student-highlight .package {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.student-img {
  max-width: 100%;
  border-radius: 20px;
}
.legacy_sec .star_box {
  width: fit-content;
  min-width: 200px;
  text-align: center;
  border-bottom: 1px solid #ffffff;
}
.legacy_sec .star_box small {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.25px;
  text-align: center;
  color: #ff8383;
  padding: 5px 0;
  display: block;
}
.max-w-587 {
  max-width: 587px;
}
.text-blue {
  color: #034761;
}
.gallery .title_box::before {
  content: none;
}
.gallery .sport {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 0;
}
.gallery .sport::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0347618c;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s all;
}
.gallery .sport .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: -0.25px;
  opacity: 0;
  transition: 0.3s all;
}
.gallery .sport img {
  height: 100%;
  width: 100%;
}
.gallery .sport:hover .title,
.gallery .sport:hover::before {
  opacity: 1;
}
.gallery .all_three_tab .nav-tabs {
  gap: 25px;
  border: 0;
}
.gallery .all_three_tab .nav-link {
  border: 1px solid #034761;
  border-radius: 20px;
  font-size: 20px;
  line-height: 27px;
  padding: 0.8rem 1rem;
  line-height: normal;
  min-width: 100px;
}
.gallery.future_leader_sec::before,
.gallery.future_leader_sec::after {
  top: 50%;
}
.youtube_video .title_box p {
  font-weight: 500;
  font-size: 32px;
  line-height: 27px;
  letter-spacing: -0.25px;
  text-align: center;
}
.youtube_video .video_sec {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.youtube_video .video_sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #201a1abd;
}
.youtube_video .video_sec a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.youtube_video .video_sec a img {
  height: 80px;
  width: 80px;
}
.inner-group-sec {
  padding: 40px 0;
}
.collage_name {
  background-color: var(--red);
  border-radius: 20px;
  padding: 6px 24px;
  color: #fff;
  min-width: 600px;
  width: fit-content;
  margin: 0 auto 20px;
  text-align: center;
}
.collage_name p {
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
}
.bg-purple {
  background-color: #f9eceb;
}
h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 21px;
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}
.inner-group-sec .accordion-item {
  border: 0;
}
.inner-group-sec .accordion-button {
  font-weight: 700;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: -0.25px;
  background-color: transparent;
  padding: 0;
  margin-bottom: 10px;
  background-color: #f9eceb;
  padding: 7px 10px;
  box-shadow: 0 2px 4px #b1b1b1;
}
.inner-group-sec .accordion-button:not(.collapsed) {
  border: 0;
  color: var(--red);
}
.inner-group-sec .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(70%) saturate(5761%)
    hue-rotate(356deg) brightness(87%) contrast(91%);
}
.inner-group-sec .accordion-body {
  padding: 0;
  padding-bottom: 20px;
}
.inner-group-sec .accordion-body ul {
  list-style-type: disc;
  padding-left: 20px;
}
.inner-group-sec .inline_list ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: -0.25px;
  display: inline-block;
  color: #4a4242;
  margin-right: 10px;
}
.mx-w-1047 {
  max-width: 1047px;
}
.list {
  padding-left: 20px;
  list-style-type: disc;
}
.list li {
  line-height: 29px;
}
.facility_slider_sec {
  border-top: 2px solid var(--red);
  margin-top: 20px;
}
.custom-swiper .swiper-button-next,
.custom-swiper .swiper-button-prev {
  background-color: #dc3545;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 10px;
}

.custom-swiper .swiper-button-next::after,
.custom-swiper .swiper-button-prev::after {
  font-size: 20px;
  color: white;
}

.facilities-header {
  padding: 10px 0px;
}

.facilities-header h5 {
  color: #dc3545;
  margin-bottom: 0;
}

.facilities-caption {
  margin-bottom: 20px;
  font-size: 15px;
  color: #333;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.inner-group-sec.bsc .collage_name {
  max-width: fit-content;
  border-radius: 9px;
}
.inner-group-sec.bsc .image-course {
  border-radius: 30px;
  overflow: hidden;
}
.inner-group-sec.bsc .image-course img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enrollment-form {
  border: 1px solid #e62e2e;
  border-radius: 15px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
}
.enrollment-form h5 {
  color: #e62e2e;
  text-align: center;
  margin-bottom: 20px;
}
.form-section {
  margin-bottom: 15px;
}
.apply-btn {
  background-color: #e62e2e;
  color: white;
  border: none;
  display: block;
  width: 100%;
}
.form-check-inline {
  margin-right: 10px;
}
.enrollment-form .form-control {
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}
.enrollment-form .form-control:focus {
  box-shadow: none;
}
.enrollment-form .form-section {
  display: flex;
  align-items: end;
  gap: 20px;
}
label {
  flex-shrink: 0;
}
.notice-container {
  max-width: 986px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
}

.notice-header {
  background-color: #f7d8d8;
  text-align: center;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #b30000;
  border-bottom: 1px solid #ccc;
}

.notice-body {
  max-height: 500px;
  overflow-y: auto;
  padding: 0 20px 20px;
}

.notice-item {
  border-bottom: 1px solid var(--red);
  padding: 15px;
}

.notice-item span {
  display: block;
  margin-top: 5px;
  color: #000000;
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.25px;
}

.notice-item strong {
  color: #000;
}
.course_book_table {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.course_book_table .scrollable-table {
  max-height: 550px;
  overflow-y: auto;
  display: block;
}

.course_book_table table {
  width: 100%;
  border-collapse: collapse;
}

.course_book_table thead {
  position: sticky;
  top: 0;
  background-color: #f3e6e6;
  z-index: 1;
}

.course_book_table th,
.course_book_table td {
  padding: 10px 12px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 14px;
}

.course_book_table th {
  font-weight: bold;
  color: #333;
}

.course_book_table th:nth-child(1) {
  width: 50px;
}

.course_book_table th:nth-child(2) {
  text-align: left;
}

.course_book_table th:nth-child(3) {
  color: #d40000;
}

.course_book_table td:nth-child(2) {
  text-align: left;
}

.course_book_table .pdf-icon {
  width: 20px;
  height: auto;
}

.course_book_table .view-all {
  text-align: right;
  padding: 10px 15px;
  background-color: #fff;
}

.course_book_table .view-all a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.course_book_table .view-all a:hover {
  text-decoration: underline;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 28%, 0);
    -ms-transform: translate3d(0, 28%, 0);
    transform: translate3d(0, 28%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.mb-150 {
  margin-bottom: 150px;
}
.mb-150 .image-bottom {
  transform: translateY(120px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: -12px 12px 0px #dadada;
}
.section-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  height: 100%;
  position: relative;
}
.section-title {
  background: var(--red);
  color: #fff;
  display: inline-block;
  padding: 0.4rem 2rem;
  font-weight: 600;
  font-size: 22px;
  position: absolute;
  top: -20px;
  left: 20px;
}
.fee-box {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  height: 100%;
  position: relative;
}
.fee-box p,
.section-card p {
  font-size: 18px;
}
.table thead {
  color: var(--red);
}
.table tbody tr td {
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
}
.future_leader_sec.shape::before,
.future_leader_sec.shape::after {
  top: 40%;
  left: -427px;
}
.future_leader_sec.shape::after {
  left: auto;
  right: -400px;
}
.swiper_gallery {
  width: 100%;
  height: 250px;
  margin: auto;
}

.swiper_gallery .swiper-slide {
}

.swiper_gallery .swiper-button-next:after,
.swiper_gallery .swiper-button-prev:after {
  font-size: 30px;
}
.swiper_gallery .swiper-button-next,
.swiper_gallery .swiper-button-prev {
  color: #fff;
}
.swiper_gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
}
.why_choose_accordion {
  padding-bottom: 0;
}
.why_choose_accordion h2 {
  color: var(--navy-blue);
}
.faculty_slider_sec {
  width: 100%;
  overflow: hidden;
}
.faculty_slider {
  padding: 60px 0;
}
.faculty_card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.faculty_card:hover {
  scale: 1.1;
}
.faculty_card img {
  width: 100%;
  border-radius: 8px;
}
.faculty_card h4 {
  color: var(--red); /* Red like in your design */
  margin-bottom: 10px;
}
.faculty_card p span {
  display: block;
}
.fimage {
  padding: 20px;
  background-color: #d9d9d9;
  box-shadow: 0px 4px 4px 0px #00000040;
  margin-bottom: 20px;
}
.faculty_slider .swiper-pagination-bullet {
  background: #cdeaf5;
  opacity: 1;
  border-radius: 0;
  width: 25px;
  height: 5px;
}
.faculty_slider .swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
}
.why_choose_accordion.inner-group-sec .accordion-button:not(.collapsed) {
  background-color: var(--navy-blue);
  color: #fff;
}
.why_choose_accordion.inner-group-sec .accordion-button {
  background-color: transparent;
  border-bottom: 1px solid #868686;
  box-shadow: none;
  margin-bottom: 0;
  padding: 10px;
}
.why_choose_accordion.inner-group-sec .accordion-body {
  padding: 10px;
}
.why_choose_accordion.inner-group-sec .accordion-button::after {
  content: "+";
  font-size: 30px;
  font-weight: bold;
  color: #c00;
  background-image: none !important;
  transition: transform 0.2s ease;
  align-items: end;
  justify-content: center;
  display: flex;
}

.why_choose_accordion.inner-group-sec .accordion-button:not(.collapsed)::after {
  content: "−";
  color: #fff;
  filter: none;
}
.banner-video {
  overflow: hidden;
}

.banner-video iframe {
  width: 100%;
  height: 225vh;
}
@media (max-width: 576px) {
  .banner-video iframe {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}
