* {
  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;
}

.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);
  background: url("../images/banner-image.png") no-repeat center center/cover;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1;
  padding-bottom: 50px;
}

.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;
  color: #003049;
  max-width: 10%;
}

.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;
}
.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 .diploma {
  background-color: var(--red);
  color: white;
  padding: 4px 8px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  letter-spacing: -0.25px;
  text-align: center;
  display: inline-block;
}

.program-type-box .graduate,
.program-type-box .undergraduate {
  color: #0c0c0c;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  letter-spacing: -0.25px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.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;
}
.program-card p {
  font-size: 14px;
  font-weight: 600;
  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;
}

.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: 10px;
  row-gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.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;
}
.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 {
  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%;
}
.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;
}
