@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --gradient: linear-gradient(120deg, #00081c 0%, #0035a3 100%);
  --blue: #1e90ff;
  --white: #ffffff;
  --body-font: "Roboto", sans-serif;
  --heading-font: "Yantramanav", sans-serif;
  --theme-color: #1a1926;
  --theme-color2: #FDA31B;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #1a1926;
  --footer-text-color: #F5FAFF;
}

a {
  color: var(--color-dark);
  display: inline-block;
  text-decoration: none;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 14px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
  background: url(../images/bg2.png);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header_style {
  background: #fff;
}
.header_style .logo_img {
  height: 90px;
}
.header_style .dropdown-menu.show {
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}
.header_style .nav-item.dropdown.dropdown-mega {
  position: static;
}
.header_style .nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}
.header_style .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.header_style .navbar-toggler:focus {
  box-shadow: none;
}
.header_style .navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}
.header_style .icons {
  display: inline-flex;
  margin-left: auto;
}
.header_style .icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.header_style .icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}
.header_style .dropdown-menu.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
@media (min-width: 992px) {
  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header_style .navbar .dropdown:hover > .dropdown-menu,
  .header_style .navbar .dropend:hover > .dropdown-menu,
  .header_style .navbar .dropstart:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fadeSlideIn 0.3s ease forwards;
  }
  .header_style .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .header_style .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  .header_style .dropstart .dropdown-menu {
    right: 100%;
    left: auto;
  }
}
.header_style .head_inn {
  background: linear-gradient(120deg, #ffffff 0%, #c5d8ff 100%);
  margin: 0;
  padding: 0.8em 0;
}
.header_style .dropdown .dropdown-item {
  font-size: 0.8em;
}

@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    gap: 15px;
  }
  .navbar-brand img {
    width: auto !important;
    height: 50px !important;
  }
  .menu_style .nav-link {
    color: var(--color-white);
  }
}
.navbar-brand {
  width: 70%;
}
.navbar-brand img {
  width: 100%;
}

.menu_style {
  background: linear-gradient(135deg, rgb(133, 35, 0) 0%, rgb(206, 36, 36) 59%, rgb(155, 0, 0) 59%, rgb(70, 71, 81) 100%) !important;
  padding: 0;
}

.banner_home {
  background: #fff;
  padding: 1em 0;
  margin: 0;
}
.banner_home .carousel-item img {
  max-height: 100vh !important;
  border-radius: 4px;
}

.header-top {
  padding: 4px 0 4px 0;
  position: relative;
  background: #00246c;
  color: #fff;
  z-index: 1;
}

.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header-top-contact ul li {
  display: flex;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 20px;
}
.header-top-contact ul li:last-child {
  border: none;
  padding-right: 0;
}
.header-top-contact ul li a {
  color: var(--color-white);
  font-weight: 400;
}
.header-top-contact ul li a i {
  color: var(--theme-color2);
  margin-right: 5px;
}

.marquee_Bx {
  background: #f1f1e9;
  color: black;
  padding: 5px 0;
}
.marquee_Bx p {
  margin: 0;
  padding: 0;
}
.marquee_Bx a {
  display: inline-block;
}
.marquee_Bx a:hover {
  color: #f00;
}

.header-top-social span {
  color: var(--color-white);
  font-weight: 500;
}
.header-top-social a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}
.header-top-social a:hover {
  color: var(--theme-color);
  background: var(--color-white);
}

@media all and (max-width: 1199px) {
  .header-top-contact ul {
    gap: 10px;
  }
  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }
}
.banner_right .banner_right_profile {
  width: 100%;
  border: #c4c4c4 1px dashed;
  padding: 6px;
  margin-bottom: 5px;
  border-radius: 4px;
}
.banner_right .banner_right_profile p {
  line-height: normal;
}
.banner_right .banner_right_profile img {
  width: 100%;
  aspect-ratio: 6/5;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.banner_right h5 {
  color: #000000;
}
.banner_right p {
  color: #646464;
}

.site-heading {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 3em;
  color: var(--color-dark);
  position: relative;
}

.site-title span {
  color: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .fa-negative {
    margin-top: -50px;
    margin-left: 20px;
  }
  .facilities-item.active::before {
    transform: scale(1);
  }
}
.imgbg {
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.imgbg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 39, 88, 0.85);
}

.about_area {
  position: relative;
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4em 0;
}

.about_area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about_content {
  position: relative;
  padding: 80px 30px;
  background-size: cover;
  z-index: 1;
}
.about_content h4 {
  color: #fff;
}

.about_content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #003c9d url(../images/bg01.png) bottom;
  background-size: cover !important;
  border-radius: 8px;
  z-index: -1;
}

.about_content::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  right: 8px;
  border: 6px double rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.about_content h1 {
  color: var(--color-white);
  font-size: 45px;
}

.about_content p {
  color: var(--color-white);
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-btn .theme-btn {
  background: var(--color-white);
  color: var(--color-dark);
}

.cta-btn .theme-btn:hover {
  color: var(--color-white);
}

.scrolling-text {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin-top: 2em;
  color: #fff;
}

.scrolling-text ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
}

.scrolling-text li {
  font-size: 16px;
  display: flex;
  gap: 5px;
  line-height: 18px;
  margin-bottom: 1em;
}
.scrolling-text li i {
  margin-top: 5px;
}

.scrolling-text li a {
  color: #fff;
}

.scrolling-text span {
  font-size: 14px;
  color: #fff;
  padding: 0;
  margin: 0;
}

.theme-btn {
  font-size: 14px;
  color: var(--color-white);
  padding: 8px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 20px 0px 20px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.home_about {
  color: #fff;
  position: relative;
}
.home_about h1 {
  font-size: 2.7em;
  color: #fff;
  font-weight: 800;
}
.home_about h1 span {
  color: var(--theme-color2);
  font-weight: 300;
  font-style: italic;
}
.home_about h1 i {
  font-weight: 400;
}

.events_area {
  position: relative;
  padding: 3em 0;
}

.events_item {
  position: relative;
  background: var(--color-white);
  padding: 20px;
  border-radius: 30px 0px 30px 0;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.events-img {
  position: relative;
}

.events-img img {
  border-radius: 5px;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.events-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  background: var(--color-dark);
  transition: var(--transition);
}

.events_item:hover .events-img::before {
  opacity: 0.5;
  visibility: visible;
}

.events-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  color: var(--color-white);
  background: var(--theme-color2);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}

.events_item:hover .events-img a {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.events_item:hover .events-img a:hover {
  background: var(--color-white);
  color: var(--theme-color2);
}

.events-title {
  margin-bottom: 10px;
}

.events-title:hover {
  color: var(--theme-color2);
}

.events-sidebar .form-check-input:focus {
  border-color: var(--theme-color);
}

.events-sidebar .form-check-label {
  color: var(--color-dark);
}

.event-meta {
  display: flex;
  gap: 15px;
  margin: 14px 0;
}

.event-meta i {
  color: var(--theme-color2);
  margin-right: 5px;
}

@media all and (max-width: 991px) {
  .events-sidebar {
    margin-top: 40px;
  }
}
.testimonial-area {
  position: relative;
  padding: 3em 0;
}

.ts-bg {
  background-image: url(../img/testimonial/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ts-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 39, 88, 0.85);
}

.testimonial-item {
  background: var(--color-white);
  border-radius: 40px 40px 40px 0;
  padding: 25px 25px;
  margin: 6px;
  position: relative;
  border-bottom: 5px solid var(--theme-color2);
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-quote p {
  color: var(--body-text-color);
  font-style: italic;
  font-weight: 500;
}

.testimonial-author-info {
  margin: 15px 0 10px 0;
}

.testimonial-author-img {
  width: 55px;
  padding: 4px;
  border-radius: 50px;
  border: 2px dashed var(--theme-color2);
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 20px;
  color: var(--color-dark);
  margin: 0;
  padding: 0;
}

.testimonial-author-info p {
  color: var(--theme-color2);
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.testimonial-quote-icon {
  position: absolute;
  right: 0px;
  top: 0px;
  color: var(--color-white);
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50px 50px 50px 0;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: var(--theme-color2);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  width: 20px;
}

.testimonial-rate {
  color: var(--theme-color2);
  margin-bottom: 15px;
}

.testimonial-area2.ts-bg {
  padding-top: 120px;
  background-attachment: fixed;
}

.partner-area {
  position: relative;
  background: #fff;
}

.partner-area {
  padding: 2em 0;
}
.partner-area .owl-item {
  text-align: center;
}
.partner-area .owl-item img {
  height: 90px;
  width: auto !important;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.director_mass {
  padding: 3em 0;
  background: #fff;
}

.choose-img {
  position: relative;
  margin-left: 50px;
}

.choose-img::before {
  content: "";
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--theme-color2);
  border-radius: 30% 0 30% 30%;
  z-index: 0;
}

.choose-img img {
  border-radius: 30% 0 30% 30%;
  width: 100%;
  z-index: 1;
  position: relative;
}

.footer-area {
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
  padding: 3em 0 0 0;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 25px;
}

.copyright {
  position: relative;
}

.copyright .copyright-wrapper {
  padding: 15px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color2);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color2);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--theme-color2);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}
.footer-list li {
  display: block;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color2);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color2);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.footer-social li {
  display: block;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px 10px 10px 0;
  background: var(--color-white);
  color: var(--theme-color2);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color2);
  color: var(--color-white);
}

.footer-contact {
  margin: 0;
  padding: 0;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  transition: 0.3s;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px 10px 10px 0;
  background: var(--theme-color2);
  text-align: center;
  transition: 0.3s;
  color: var(--color-white);
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: var(--theme-color2);
}

.subscribe-form .theme-btn::before {
  background: var(--color-white);
}

.subscribe-form .theme-btn:hover::after {
  border-color: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}
@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .copyright-wrapper {
    text-align: center;
  }
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .copyright::before {
    width: 40%;
  }
  .site-title {
    font-size: 2em;
  }
  .site-title-tagline {
    font-size: 14px;
  }
  .home_about h1 {
    font-size: 2em;
  }
  .menu_style .offcanvas {
    max-width: 80%;
  }
}
.photo_galley img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  overflow: hidden;
}
.photo_galley img:hover {
  transform: scale(1.05);
  filter: brightness(0.9); /* optional: slightly darken on hover */
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-list li {
  margin: 0;
}
.course-list li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: block;
  transition: color 0.3s ease;
}
.course-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}
.course-list li a:hover {
  color: #fff;
}
.course-list li a:hover::after {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .menu_style {
    background: #fff !important;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .menu_style {
    background: #fff7f7 !important;
  }
}
.navbar-brand img {
  width: auto !important;
  height: 50px !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .nav-link {
    font-size: 0.7em;
    padding-left: 0.1em !important;
    padding-right: 0.1em !important;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .nav-link {
    font-size: 0.9em;
    padding-left: 0.1em !important;
    padding-right: 0.1em !important;
  }
}
@media (max-width: 768px) {
  .choose-img {
    margin-left: 10px;
  }
}
.courses .course {
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #b30000;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.courses .course:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.courses .course h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #c10000;
}
.courses .course p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
.courses .course p span {
  display: block;
  color: #555;
  font-weight: 500;
}

.study_box {
  margin: 0;
  padding: 0;
}
.study_box li {
  display: block;
}
.study_box li a {
  padding: 1.5em 2.4em;
}

.breadcrumb_style {
  background: #eee;
  padding: 1em 0;
}

.page_inn {
  background-color: #fff;
  padding: 2em 0;
}

.owl-item .principal-card {
  text-align: center;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
}
.owl-item .principal-card:hover {
  transform: translateY(-6px);
}
.owl-item .principal-card img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}
.owl-item .principal-card h6 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* Mobile Devices */
@media (max-width: 576px) {
  .owl-item .principal-card {
    padding: 10px;
    border-radius: 10px;
  }
  .owl-item .principal-card img {
    height: 200px;
    border-radius: 8px;
  }
  .owl-item .principal-card h6 {
    font-size: 16px;
  }
}
/* Tablet Devices */
@media (min-width: 577px) and (max-width: 991px) {
  .owl-item .principal-card img {
    height: 230px;
  }
  .owl-item .principal-card h6 {
    font-size: 17px;
  }
}
.faculty-col h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
  text-align: center;
  position: relative;
}
.faculty-col h6::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #0d6efd;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Card Style */
.p-section {
  background: #fff;
  padding: 22px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.p-section:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.p-section img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #f1f1f1;
  margin-bottom: 12px;
}
.p-section .name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}
.p-section .phone {
  font-size: 15px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 4px;
}
.p-section .designation {
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .faculty-col h6 {
    font-size: 18px;
  }
  .p-section {
    padding: 18px 15px;
  }
  .p-section img {
    width: 110px;
    height: 110px;
  }
}/*# sourceMappingURL=styles.css.map */