@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");

:root {
  --color-primary: #025e8a;
  --color-secondary: #000;
  --color-light-blue: #f0f8ff;
  --color-text-dark: #333;
  --color-text-blue: #0580b8;
  --color-black: #000;
}

body {
  font-family: "poppins";
}

/* Style error messages  for broucher form */
.heading-three-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.heading-four-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.heading-six-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.error-text {
  color: red;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}

/* Highlight invalid inputs */
.input-error {
  border: 1px solid red;
}

section {
  padding: 80px 0 0 0;
  overflow: hidden;
  background: #fff;
}

.common-card-row {
  --gap: 24px;
  --items: 3;
  --logic: calc(var(--gap) * (var(--items) - 1) / var(--items));
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.common-carditem {
  width: calc(100% / var(--items) - var(--logic));
}
.swiper {
  width: 100%;
  height: 100%;
}

/* Global css start */
.title {
  font-weight: 600;
}
a {
  text-decoration: none;
}
.color-secondary {
  color: var(--color-secondary);
}

.sec-bubble {
  width: 36px;
  height: 36px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.object-fit-contain {
  object-fit: contain !important;
}

.sec-bubble .bubble {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #00c7c6;
  border-radius: 50%;
}

.sec-bubble .bubble:nth-child(1) {
  top: 0;
  left: 50%;
  z-index: 3;
  margin-left: -10px;
}
.navbar {
  border-top: 2px solid #0082b7;
}
.sec-bubble .bubble:nth-child(2) {
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--color-primary);
}

.sec-bubble .bubble:nth-child(3) {
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--color-secondary);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.padding-12 {
  padding: 12px;
}

.image-in-frame {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Global css end */

/* Modern Banner Section Styles */
.modern-banner-section {
  position: relative;
  height: calc(100vh - 120px); /* Subtract header height (top-header + navbar) */
  min-height: 480px; /* Reduced for 1200x600 screen */
  max-height: 600px; /* Maximum height for 1200x600 screen */
  overflow: hidden;
  background: #000;
  padding: 0;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-in-out;
}
.banner-bg-image-mobile {
  display: none;
}

@media (max-width: 767px) {
  .slide-1 .banner-bg-image {
    object-position: 80%;
  }
  .slide-2 .banner-bg-image {
    object-position: right;
  }
  .slide-3 .banner-bg-image {
    object-position: 80%;
  }
  .slide-4 .banner-bg-image {
    object-position: 80%;
  }
}

@media (max-width: 575px) {
  .banner-bg-image {
    display: none;
  }
  .banner-bg-image-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.banner-slide.active .banner-bg-image {
  transform: scale(1.1);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 94, 138, 0.85) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-text-content {
  color: #fff;
  max-width: 800px;
}

.banner-badge {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.banner-slide.active .banner-badge {
  opacity: 1;
  transform: translateY(0);
}

.badge-text {
  display: inline-block;
  background: linear-gradient(135deg, #0082b7, #0b4e6d);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 199, 198, 0.3);
}

.banner-title {
  font-size: 2.5rem; /* Reduced from 3.5rem for better fit */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  opacity: 1;
  transition: all 0.6s ease 0.4s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-slide.active .banner-title {
  opacity: 1;
  transform: translateY(0);
}

.banner-description {
  font-size: 1rem; /* Reduced from 1.25rem for better fit */
  line-height: 1.6;
  margin-bottom: 2rem; /* Reduced from 2.5rem for better spacing */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.6s;
  color: rgba(255, 255, 255, 0.9);
}

.banner-slide.active .banner-description {
  opacity: 1;
  transform: translateY(0);
}

.banner-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.8s;
}

.banner-slide.active .banner-cta {
  opacity: 1;
  transform: translateY(0);
}

.modern-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.modern-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.modern-cta-btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: linear-gradient(135deg, #0082b7, #0090d1);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 199, 198, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 199, 198, 0.4);
  color: #fff;
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* Navigation Controls */
.banner-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 2rem;
}

.next-btn {
  right: 2rem;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active::before {
  opacity: 1;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* Progress Bar */
.slide-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00c7c6, #0580b8);
  width: 0%;
  transition: width 0.1s linear;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .banner-title {
    font-size: 2.25rem; /* Reduced for better fit */
  }

  .banner-description {
    font-size: 0.95rem; /* Reduced for better fit */
  }
}

@media (max-width: 991px) {
  .banner-title {
    font-size: 2rem; /* Reduced for better fit */
  }

  .banner-description {
    font-size: 0.9rem; /* Reduced for better fit */
  }

  .banner-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .modern-cta-btn {
    justify-content: center;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .prev-btn {
    left: 1rem;
  }

  .next-btn {
    right: 1rem;
  }
}

@media (max-width: 767px) {
  .modern-banner-section {
    height: calc(100vh - 100px); /* Adjusted for mobile header */
    min-height: 400px; /* Reduced for mobile */
    max-height: 630px;
  }

  .banner-title {
    font-size: 1.75rem; /* Reduced for mobile */
    margin-bottom: 1rem;
  }

  .banner-description {
    font-size: 0.85rem; /* Reduced for mobile */
    margin-bottom: 1.5rem; /* Reduced spacing */
  }

  .banner-badge {
    margin-bottom: 1rem;
    display: none;
  }

  .badge-text {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .slide-indicators {
    bottom: 1rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator::before {
    width: 4px;
    height: 4px;
  }
  .modern-cta-btn.secondary-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .modern-banner-section {
    max-height: 550px;
  }

  .banner-title {
    font-size: 1.75rem;
  }

  .banner-description {
    font-size: 0.9rem;
  }

  .modern-cta-btn {
    padding: 0.675rem 1.2rem;
    font-size: 0.9rem;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .banner-slide,
  .banner-bg-image,
  .banner-text-content *,
  .modern-cta-btn,
  .nav-btn,
  .indicator {
    transition: none !important;
    animation: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .banner-overlay {
    background: rgba(0, 0, 0, 0.9);
  }

  .modern-cta-btn {
    border-width: 3px;
  }

  .indicator {
    border: 2px solid #fff;
  }
}
/* header slice css starts */
.header_slice {
  background-color: #fff;
  position: fixed;
  height: auto;
  width: 100%;
  z-index: 99;
  top: 0;
}

.top-header .contactdetails {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.top-header {
  padding: 10px 0;
  /* position: fixed; */
  top: 0;
  z-index: 99;
  width: 100%;
  background: #f78c1c;
}

.top-header-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
  font-size: 25px;
  display: flex;
  align-items: center;
}

.top-header .iconlist {
  display: flex;
  justify-content: flex-end;
}

.top-header .iconslist {
  margin: 0 5px;
  filter: invert(1);
}

.top-header .mFocus {
  text-decoration: none;
  transition: 0.5s;
  color: #000;
}

.top-header .show-cone {
  width: 25px;
}

.top-header .dropdown-one {
  position: relative;
  display: inline-block;
  /* outline: auto; */
  cursor: pointer;
  color: #000;
}

.dropdown-one:focus-visible {
  outline: auto !important;
}

.top-header .dropdown-one-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 55px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  right: -5px;
  margin-top: 1px;
}

/* Links inside the dropdown-one */
.top-header .dropdown-one-content a {
  color: var(--theme-color);
  padding: 9px 16px;
  text-decoration: none;
  display: flex !important;
}

.top-header .dropdown-one-content a:hover,
.top-header .dropdown-one-content a:focus {
  background-color: #0d3b66;
  color: #fff;
}

/* Show the dropdown-one menu on hover */
.top-header .dropdown-one:hover .dropdown-one-content,
.top-header .dropdown-one:focus .dropdown-one-content,
.top-header .dropdown-one:focus-visible .dropdown-one-content {
  display: block;
}

.top-header .btn-orange {
  color: #ff6f37 !important;
  padding: 0;
  margin: 0;
}

.top-header .xt-blog-form label,
.newsletter-form label {
  display: none;
}

.top-header .form-control {
  height: 38px;
  /* padding: 0 0 0 12px; */
  line-height: initial;
  color: #252525;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.top-header .form-control:focus {
  box-shadow: none;
}

.top-header .searchbtn {
  background: white;
  color: #fff;
  border-radius: 0;
  outline: none;
  padding: 0 10px;
}

.top-header .accessiblelinks {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* header slice css ends */
/* loader + top  */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: linear-gradient(to right, #fff1ed, #ffefef, #ffeef3, #ffeef9, #fdeeff);
  background: #fff;
  transition: 0.5s;
  overflow: hidden;
}

.preloader-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 250px;
  width: 250px;
}

.preloader-thumb img {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader-thumb-wrap {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.preloader {
  display: none;
}

/* .preloaderStyle {
  background: red;
  width: 100%;
  height: 100px;
} */
#scroll-top {
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 12px;
  position: fixed;
  bottom: 115px;
  right: 29px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

#scroll-top .mdi {
  font-size: 2.5em;
  line-height: 50px;
  color: #fff;
}

#scroll-top:hover {
  cursor: pointer;
  opacity: 0.8 !important;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.tawk-min-container .tawk-button-circle.tawk-button-large {
  background-color: var(--theme-color) !important;
}

/* loader css  */
/* navbar css start */
.navbar-nav .nav-link {
  color: var(--color-text-dark) !important;
  font-weight: 600;
}

button.navbar-toggler.collapsed {
  background-color: #0d3b66;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: var(--color-text-blue) !important;
}

.dropend .dropdown-toggle {
  color: var(--color-text-blue);
  margin-left: 1em;
}

.dropdown-item:hover {
  color: var(--color-text-blue);
  background: transparent;
}

/* .dropdown .dropdown-menu {
  display: none;
} */

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  /* display: block; */
  margin-top: 0.125em;
  margin-left: 0.125em;
}

/* .supersub-menu:hover .dropdownpositionright  {
  display: block;
} */
.supersub-menu {
  font-size: 16px !important;
}
.logo {
  width: 200px;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 991px) {
  .logo {
    width: 290px;
  }
}

.logo .header-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-collapse {
  flex-grow: 0;
  align-items: center;
  justify-content: flex-end;
}

div#navbarSupportedContent {
  padding: 40px 0px;
  color: #0e0e0e;
  text-transform: capitalize;
  font-weight: 700;
  background-color: #fff;
}

.navbar-toggler,
button.navbar-toggler.collapsed {
  background-color: transparent;
  color: #000 !important;
  border: 2px solid #737373 !important;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  filter: brightness(0);
}

ul.dropdown-menu:hover {
  /* top: 100%; */
  opacity: 1;
  visibility: visible;
}

ul.dropdown-menu {
  /* position: absolute !important;
  left: 0;
  top: 110%;
  min-width: 220px; */
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
  border-radius: 3px;
  z-index: 99;
  border-top: 3px solid var(--color-primary) !important;
  border: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.navbar-nav .dropdown-item.active,
.dropdown-item:active {
  background-color: #0082b7;
  color: #fff;
}

.navbar-nav > li > a::before {
  position: absolute;
  top: 50%;
  left: -15px;
  background: #ffdc93;
  width: 35px;
  height: 35px;
  content: "";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: -1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

nav.navbar.navbar-expand-lg.navbar-dark.fixed-top {
  background: #fff;
  box-shadow: 2px 12px 16px -10px hsla(0, 0%, 66%, 0.5) !important;
}

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    right: 100%;
  }

  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
  /* .dropend .dropdownpositionright:not(.show) {
    display: none !important;
  } */
  .dropend .dropdown-menu[data-bs-popper] {
    position: absolute;
    top: 0;
    right: 100% !important;
    left: unset;
  }
}

.lecturers-area {
  padding: 150px 0;
}

/* Main banner css start */

@keyframes myMove {
  from {
    transform: scale(1, 1);
    transform-origin: 100% 100%;
  }

  to {
    transform: scale(1.7, 1.8);
    transform-origin: 50% 0%;
  }
}

@keyframes Slick-FastSwipeIn {
  0% {
    transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
  }
}

@keyframes in-left {
  from {
    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    transform: rotate3d(0, 1, 0, 90deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes out-left {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    -webkit-transform: rotate3d(0, 1, 0, 86deg);
    transform: rotate3d(0, 1, 0, 86deg);
  }
}

@keyframes in-right {
  from {
    -webkit-transform: rotate3d(0, -1, 0, 90deg);
    transform: rotate3d(0, -1, 0, 90deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes out-right {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    -webkit-transform: rotate3d(0, -1, 0, 86deg);
    transform: rotate3d(0, -1, 0, 86deg);
  }
}

/* Main banner css end */

/* banner details css start */
.page-title-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  /* min-height: 220px; */
  background-size: cover;
  opacity: 0.8;
  display: flex;
  align-items: center;
  /* margin-top: 105px; */
}
@media (min-width: 1536px) {
  .page-title-section {
    padding: 130px 0;
  }
}
@media (max-width: 767px) {
  .page-title-section {
    padding: 55px 0;
    background-position: right center !important;
  }
}

.bg-yellow {
  background-color: #ffc000;
}

.page-title-section .page-title {
  overflow: hidden;
  display: flex;
  margin: 0 auto;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.page-title-section .page-title-desc {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.page-title-section .bluespan {
  color: #099bd7;
}

.page-title-section h1 {
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  font-size: 44px;
}
@media (max-width: 767px) {
  .page-title-section h1 {
    font-size: 30px;
  }
}

.page-title-section .page-link {
  background: none;
  border: none;
  padding-bottom: 0;
}

.page-title-section ul {
  margin-bottom: 0;
  text-align: center;
}

.page-title-section ul li {
  display: inline-block;
}

.page-title-section ul li a {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  list-style-type: none;
}

/* .page-title-section ul li a::after{
  text-align: center;
  content: "\003E";
  background-color: #ffffff;
  margin: 0 10px 0 15px;
  display: inline-block;
  vertical-align: middle;

} */

/* banner details css end*/

/* about us start */
/* .pt-120 {
  padding-top: 60px;
}
*/
.pb-120 {
  padding-bottom: 120px;
}

.about-right {
  margin-left: 30px;
}

.about-box ul li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0px 9px 24px 0px rgba(222, 229, 231, 1.01);
  margin-bottom: 30px;
}

.about-box ul li i {
  float: left;
  margin-right: 14px;
  width: 40px;
  height: 40px;
  background: #ffc753;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
}

.about-box ul {
  margin: 0px;
  padding: 0px;
}

.about-box ul li h4 {
  font-size: 22px;
  margin-bottom: 0;
}

.about-box ul li:nth-child(2) i {
  background-color: #00c7c6;
}

.about-box-2 ul li i {
  background-color: #7c99e5;
}

.about-box-2 ul li:nth-child(2) i {
  background-color: #ff8000;
}

.ti-check:before {
  content: "\2713";
}

.about-btn {
  margin-right: 50px;
}

.thm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  line-height: 1;
  min-width: 160px;
  min-height: 48px;
  text-transform: capitalize;
  background-color: var(--color-primary);
  text-decoration: none;
  color: #fff;
  padding: 0 10px;
}

.thm-btn:hover {
  color: #ffff;
}

/* 
.about-img-big img {
  width: 80%;
} */

.about-left-2 .about-img-sml {
  bottom: -40%;
  right: -12%;
}

.about-left .about-img-sml {
  position: absolute;
  bottom: -20%;
  right: 5%;

  /* animation: srz 5s infinite; */
}

/* @keyframes srz {
  from {
    transform: rotate(60000deg);
  }
  to {
    transform: rotate(1deg);
  }
} */

.about-left .about-img-sml img,
.about-left .about-img-big img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.video-pay-main-div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.video-icon {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.48;
}
.video-icon-popup {
  position: relative;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-icon {
  z-index: 99;
  width: 33%;
  height: 44%;
  filter: brightness(0) invert(1);
  padding-bottom: 0 !important;
}
.video-icon-popup:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  text-align: center;
  background-color: rgba(25, 83, 164, 0.4);
  border-radius: 50%;
  animation: video-pay 1s infinite;
}
.video-icon-popup:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(25, 83, 164, 0.5);
  border-radius: 50%;
}
@keyframes video-pay {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 83, 164, 0.8);
  }

  to {
    box-shadow: 0 0 0 35px rgba(25, 83, 164, 0);
  }
}
/* about us end*/

/* calender css end */

/* counter css start */
.pb-80 {
  padding-bottom: 80px;
}

.bgblue {
  background-color: var(--color-primary);
}
.bgblue .section-heading {
  color: #fff;
}
.about-counter {
  position: relative;
  overflow: hidden;
}

.about-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.counter-row {
  --gap: 10px;
  --items: 5;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .counter-row {
    --gap: 25px;
  }
}

@media (max-width: 991px) {
  .counter-row {
    --gap: 20px;
  }
}

@media (max-width: 767px) {
  .counter-row {
    --gap: 15px;
  }
}

@media (max-width: 480px) {
  .counter-row {
    max-width: 300px;
  }
}

.counter-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #025e8a, #64c7fe);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.counter-card:hover::before {
  transform: scaleX(1);
}

.counter-icons {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-icons i {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #025e8a, #64c7fe);
  color: #ffffff;
  font-size: 36px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(2, 94, 138, 0.3);
}

.counter-card:hover .counter-icons i {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(2, 94, 138, 0.4);
}

.counter-content {
  color: #333;
}

.counter-number {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}

.counter-number .count {
  font-size: 32px;
  font-weight: 700;
  color: #025e8a;
  line-height: 1;
  display: inline-block;
}

.counter-label {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .counter-card {
    --items: 3;
    padding: 25px 15px;
  }

  .counter-icons i {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .counter-number .count {
    font-size: 28px;
  }

  .counter-label {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .counter-card {
    padding: 20px 15px;
  }

  .counter-icons i {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .counter-number .count {
    font-size: 24px;
  }

  .counter-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .counter-card {
    padding: 25px 20px;
  }

  .counter-icons i {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .counter-number .count {
    font-size: 28px;
  }

  .counter-label {
    font-size: 15px;
  }
}

/* counter css end */

/* courses css start */

.courses-block {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 15px;
}

@keyframes dotStretchingBefore {
  0% {
    transform: translate(0) scale(0.7, 0.7);
  }

  50%,
  60% {
    transform: translate(-20px) scale(1, 1);
  }

  100% {
    transform: translate(0) scale(0.7, 0.7);
  }
}

@keyframes dotStretchingAfter {
  0% {
    transform: translate(0) scale(0.7, 0.7);
  }

  50%,
  60% {
    transform: translate(20px) scale(1, 1);
  }

  100% {
    transform: translate(0) scale(0.7, 0.7);
  }
}

.owl-carousel .owl-nav button {
  color: #fff !important;
  text-align: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  background: var(--color-primary) !important;
  transition: all 0.4s ease 0s;
  margin: 0 5px;
  font-size: 24px !important;
}

.courses-block .courses-pic {
  overflow: hidden;
}

.courses-block .courses-pic img {
  transition: all 500ms ease;
}

.courses-block .course-desc {
  padding: 30px 20px;
}

.courses-block .course-desc p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.courses-block .course-desc h4 {
  margin-bottom: 15px;
  text-decoration: none;
}

.courses-block .course-desc a {
  color: #0d3b66;
  text-decoration: none;
}

.courses-block .course-desc p {
  margin-bottom: 0;
}

.courses-block .course-details {
  padding: 25px 40px;
  float: left;
  width: 100%;
  /* border-top: 1px dashed #00c7c6; */
}

.courses-block .course-details ul {
  margin: 0;
  float: left;
  width: 100%;
}

.courses-block .course-details li:first-child {
  float: left;
}

.courses-block .course-details li {
  color: #0d3b66;
}

/* button.owl-prev::before {
  content: "\003C";
  height: 40px;
  width: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

button.owl-next::before {
  content: "\003E";
  height: 40px;
  width: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
} */

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* courses css end*/

/* our blog css start */
.blog-active.owl-carousel .owl-item {
  margin: 10px 0;
}

.blog-single {
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(192, 208, 223, 0.2);
}

.blog-thumb {
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.blog-single .blog-date {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #ffc753;
  text-align: center;
  right: 15px;
  bottom: 15px;
}

.blog-left .blog-date h4 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 0;
  line-height: 24px;
  margin-top: 12px;
}

.blog-left .blog-date span {
  color: #fff;
}

.blog-content {
  padding: 15px 20px;
  padding-left: 0;
}

.blog-content .blog-title h3 {
  font-size: 27px;
}

.blog-content .blog-meta {
  border-bottom: 2px solid #fbf7f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-content .blog-meta span {
  display: inline-block;
  margin-right: 20px;
}

.blog-content .blog-meta span a {
  color: #7f7a7a;
}

.blog-content .blog-text p {
  margin-bottom: 0;
}

/* our blog css end */

/* co-curricular activities section start */

/* Modern Co-curricular Activities Section */
.co-curricular-activities-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.co-curricular-activities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.co-curricular-activities-section .container {
  position: relative;
  z-index: 2;
}

.co-curricular-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.co-curricular-activities-section .image-container {
  position: relative;
  margin: 0;
  animation: fadeInLeft 1s ease-out;
}

.co-curricular-activities-section .image-innerbox {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.co-curricular-activities-section .image-innerbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.co-curricular-activities-section .image-innerbox img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.co-curricular-activities-section .image-innerbox:hover img {
  transform: scale(1.05);
}

.co-curricular-activities-section .image-innerbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 94, 138, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.co-curricular-activities-section .co-curricular-content {
  padding-left: 20px;
  animation: fadeInRight 1s ease-out 0.2s both;
}

.heading-large {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .heading-large {
    text-align: center;
  }
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}
.margin-large {
  margin-bottom: 40px !important;
}
.cmn-section-spacing {
  padding: 50px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
  }
  .section-title-desc {
    font-size: 15px !important;
  }
  .cmn-section-spacing {
    padding: 30px 0;
  }
}
.blue-gradiant .section-title {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0580b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.blue {
  color: var(--color-primary);
}
.section-title.white {
  color: #fff;
}
.section-title.title-underline {
  position: relative;
  display: inline-block;
}
.section-title.title-underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #00c7c6);
  border-radius: 2px;
}

.section-title.title-underline.center::after {
  left: 50% !important;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .section-title.title-underline::after {
    left: 50% !important;
    transform: translateX(-50%);
  }
}

.section-title-desc {
  font-size: 1rem;
  font-weight: 500;
}

.co-curricular-activities-section .para {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
  font-weight: 400;
}

.co-curricular-activities-section .widget_box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.co-curricular-activities-section .widget_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), #00c7c6);
  transition: width 0.3s ease;
}

.co-curricular-activities-section .widget_box:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(2, 94, 138, 0.2);
}

.co-curricular-activities-section .widget_box:hover::before {
  width: 8px;
}

.co-curricular-activities-section .widget_box_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.co-curricular-activities-section .widget_box_icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 94, 138, 0.1) 0%, rgba(0, 199, 198, 0.1) 100%);
  color: var(--color-primary);
  font-size: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.co-curricular-activities-section .widget_box_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.co-curricular-activities-section .widget_box:hover .widget_box_icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--color-primary), #00c7c6);
  color: white;
}

.co-curricular-activities-section .widget_box:hover .widget_box_icon::before {
  left: 100%;
}

.co-curricular-activities-section .widget_box_icon i {
  transition: all 0.3s ease;
  transform: scale(1);
}

.co-curricular-activities-section .widget_box:hover .widget_box_icon i {
  transform: scale(1.1);
}

.co-curricular-activities-section .widget-content {
  flex: 1;
  margin: 0;
}

.co-curricular-activities-section .widget_box_title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 8px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.co-curricular-activities-section .widget_box:hover .widget_box_title {
  color: var(--color-primary);
}

.co-curricular-activities-section .widget_box_text {
  font-size: 0.95rem;
  color: #718096;
  margin: 0;
  line-height: 1.5;
}

.co-curricular-activities-section .portfolio-thumb {
  height: 200px;
  width: 100%;
}

.co-curricular-activities-section .portfolio-thumb img {
  height: 200px;
  width: 100%;
  object-fit: fill;
  border-radius: 6px;
}

/* co-curricular activities section end */

/* club-activities-start */
.club-activities-section .content-img {
  height: 280px;
  width: 280px;
  position: relative;
  z-index: 1;
}

.club-activities-section .content-img::after {
  position: absolute;
  left: -7px;
  top: -7px;
  z-index: -1;
  margin: auto;
  width: 105%;
  height: 105%;
  content: "";
  border-radius: 362.021px;
  background: linear-gradient(147deg, rgb(0 130 183 / 50%) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 27px 27px 52px 0px rgba(0, 0, 0, 0.08);
  animation: blinker 1.5s ease-in-out infinite;
  -webkit-animation: blinker 1.5s ease-in-out infinite;
  -moz-animation: blinker 1.5s ease-in-out infinite;
}

.club-activities-section .content-img img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}
.club-activities-section .rowspacing {
  margin: 40px 0;
}
.club-activities-section .leftimgeffect {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
/* club-activities-end */

/* fit india movement start */

.fit-india-movement-section .content-img {
  height: 300px;
  width: 300px;
  position: relative;
}

.fit-india-movement-section .col-lg-3 .content-img {
  padding: 14px;
}

.fit-india-movement-section .content-img img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

/* fit india movement end */

/* our team start */

.our-team-section .team-two__item {
  margin-bottom: 50px;
}

.our-team-section .team-two__item {
  position: relative;
  padding: 0 0 35px;
  margin-bottom: 36px;
  z-index: 2;
}

.our-team-section .team-two__item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  content: "";
  border-radius: 0 0 200px 200px;
  width: 100%;
  height: 309px;
  z-index: -1;
}

.our-team-section .team-two__image {
  position: relative;
  overflow: hidden;
  border-radius: 200px;
  margin: 0 31.5px;
}

.our-team-section .team-two__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(24, 24, 24, 0.69);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.our-team-section .team-two__content {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.our-team-section .team-two__title {
  font-size: 24px;
  color: white;
  line-height: 1;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  transform: translate3d(-100px, 0, 0);
  -moz-transform: translate3d(-100px, 0, 0);
  -webkit-transform: translate3d(-100px, 0, 0);
}

.our-team-section .team-two__designation {
  font-size: 20px;
  color: white;
  line-height: 1;
  display: block;
  margin: 5px 0 22px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  transform: translate3d(100px, 0, 0);
  -moz-transform: translate3d(100px, 0, 0);
  -webkit-transform: translate3d(100px, 0, 0);
}

.our-team-section .team-two__social {
  position: relative;
}

.our-team-section .team-two__social a {
  -webkit-transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: translate3d(0, 70px, 0);
  -moz-transform: translate3d(0, 70px, 0);
  -webkit-transform: translate3d(0, 70px, 0);
}

.our-team-section .team-two__social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-secondary);
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 29px;
  margin: 0 4px;
  visibility: hidden;
  opacity: 0;
}

.our-team-section .team-two__item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-primary);
  content: "";
  border-radius: 0 0 200px 200px;
  width: 100%;
  height: 200px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.our-team-section .team-two__item:hover .team-two__image::after {
  visibility: visible;
  opacity: 1;
}

.our-team-section .team-two__item:hover::after {
  height: 309px;
  visibility: visible;
  opacity: 1;
}

.our-team-section .team-two__item:hover .team-two__title {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.our-team-section .team-two__item:hover .team-two__designation {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  color: white;
}

.our-team-section .team-two__item:hover .team-two__social a {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.our-team-section a {
  text-decoration: none;
}

.our-team-section .team-two__title a {
  text-decoration: none;
  color: var(--color-secondary);
}

.our-team-section .team-two__image img {
  width: 100%;
  height: auto;
}

/* our team end */

/* curriculum start */

.curriculum-section .curriculum-image {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.curriculum-section .transform-banner img {
  animation: border-transform 20s linear infinite alternate forwards;
  border-radius: 100%;
}

.curriculum-section .vs-circle {
  width: 315px;
  height: 315px;
  border: 60px solid var(--color-light-blue);
  border-radius: 50%;
}

.curriculum-section .curriculum-image .vs-circle {
  position: absolute;
  right: 2%;
  top: -6%;
  z-index: -1;
}

.list-style1 ul {
  margin: 0 0 30px 0;
}

.list-style1 li {
  position: relative;
  display: flex;
  margin-bottom: 12px;
}

.list-style1 li:before {
  content: var(
    --icon,
    url("data:image/svg+xml,%3Csvg width='25' height='23' viewBox='0 0 25 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.6842 20.6753C9.59141 20.6753 9.50023 20.651 9.4197 20.6049C9.33917 20.5588 9.27209 20.4924 9.22512 20.4124C7.45633 17.399 2.74074 10.9826 2.69336 10.9182C2.61761 10.8152 2.58145 10.6884 2.59149 10.5609C2.60153 10.4335 2.65709 10.3139 2.74804 10.224L4.19806 8.79111C4.28662 8.7036 4.40305 8.6499 4.52711 8.63934C4.65116 8.62879 4.77499 8.66205 4.87706 8.73335L9.57343 12.0125C12.716 7.98275 15.6351 5.19864 17.5556 3.5558C19.7177 1.70658 21.0941 0.874056 21.1517 0.839774C21.2344 0.790135 21.3291 0.763914 21.4256 0.763916H23.7714C23.8794 0.763909 23.9847 0.796703 24.0736 0.85795C24.1624 0.919197 24.2306 1.006 24.269 1.10686C24.3074 1.20772 24.3142 1.31787 24.2886 1.4227C24.2629 1.52753 24.2061 1.62209 24.1254 1.69385C17.4636 7.62747 10.2191 20.2793 10.1467 20.4064C10.1005 20.4875 10.0338 20.5551 9.9532 20.6023C9.87262 20.6495 9.78104 20.6746 9.68766 20.6752L9.6842 20.6753Z' fill='%230d3b66'/%3E%3Cpath d='M9.58204 22.8931C4.2985 22.8931 0 18.5946 0 13.311C0 8.02746 4.2985 3.72901 9.58204 3.72901C10.6414 3.72784 11.6936 3.90269 12.6957 4.24644C12.8292 4.29232 12.9391 4.38938 13.0011 4.51624C13.063 4.64311 13.0721 4.7894 13.0262 4.92293C12.9803 5.05646 12.8833 5.1663 12.7564 5.22827C12.6295 5.29025 12.4832 5.29929 12.3497 5.25341C11.4588 4.9479 10.5234 4.79254 9.58156 4.79368C4.88503 4.79368 1.06419 8.61457 1.06419 13.311C1.06419 18.0075 4.88503 21.8284 9.58156 21.8284C14.2781 21.8284 18.0989 18.0075 18.0989 13.311C18.0991 12.7348 18.0412 12.1599 17.9261 11.5953C17.9121 11.5268 17.9118 11.4562 17.925 11.3875C17.9383 11.3189 17.965 11.2535 18.0035 11.1952C18.0421 11.1368 18.0917 11.0866 18.1497 11.0475C18.2076 11.0083 18.2727 10.981 18.3412 10.967C18.4097 10.953 18.4803 10.9526 18.549 10.9659C18.6176 10.9792 18.683 11.0059 18.7413 11.0444C18.7997 11.083 18.8498 11.1326 18.889 11.1905C18.9281 11.2485 18.9555 11.3136 18.9695 11.3821C19.0989 12.0169 19.164 12.6632 19.1639 13.311C19.1641 18.5946 14.8656 22.8931 9.58204 22.8931Z' fill='%230d3b66'/%3E%3C/svg%3E%0A")
  );
  margin-right: 10px;
  font-family: var(--icon-font);
}

.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  animation: jumpping var(--duration, 6s) infinite linear;
}

@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes jumpping {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  40% {
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}

/* curriculum end */

/* footer css start */

.footermain {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footermain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
}

.footermain .footer-logo {
  display: inline-flex;
  width: 280px;
  height: auto;
  transition: transform 0.3s ease;
}

.footermain .footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

img.width-75.sm-width-150px {
  height: 80px;
  width: auto;
}

.footer-bg {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  position: relative;
}

.footer-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.footer-bg .container {
  position: relative;
  z-index: 1;
}

.margin-20px-bottom {
  margin-bottom: 20px;
}

.margin-10px-bottom {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #666;
  font-size: 14px;
}

.text-sky {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-sky:hover {
  color: #0580b8;
}

.padding-50px-left {
  padding-left: 50px;
}

.list-style3,
.list-style2 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-style3 li {
  position: relative;
  padding: 8px 0 8px 35px;
  margin: 0;
  transition: all 0.3s ease;
}

.list-style3 li:hover {
  transform: translateX(5px);
}

.list-style3 li:before {
  content: "✓";
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--color-primary);
  background: rgba(2, 94, 138, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.list-style3 li:hover:before {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.mdi-phone-classic,
.mdi-email-open,
.mdi-medal,
.list-style3 li a,
.list-style3 li:before {
  color: #333;
}

.list-style3 li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.list-style3 li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.list-style3 li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.list-style3 li a:hover::after {
  width: 100%;
}

.list-style2 li {
  position: relative;
  padding: 8px 0;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.list-style2 li:hover {
  border-bottom-color: var(--color-primary);
  padding-left: 10px;
}

.list-style2 li:before {
  content: "";
}

footer .contact-info {
  position: relative;
  margin-bottom: 0;
}

footer .contact-info li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 12px 0 12px 45px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

footer .contact-info li:hover {
  transform: translateX(5px);
}

footer .contact-info li i {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-primary);
  background: rgba(2, 94, 138, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

footer .contact-info li:hover i {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  footer .contact-info li {
    font-size: 15px;
  }
}

footer .contact-info li a {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

footer .contact-info li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

footer .contact-info li:last-child {
  margin-bottom: 0;
}

/* Footer section headings */
.footer-bg h4 {
  color: #333;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-size: 18px;
}

.footer-bg h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Government partner logos */
.govt-partner-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.govt-partner-logo .partnerlogo {
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.govt-partner-logo .partnerlogo:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.govt-partner-logo .partnerlogo img {
  max-height: 50px;
  width: auto;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

/* .govt-partner-logo .partnerlogo:hover img {
  filter: grayscale(0%);
} */

/* .govt-partner-logo .partnerlogo.invert img {
  filter: grayscale(100%) invert(100%);
} */

/* .govt-partner-logo .partnerlogo.invert:hover img {
  filter: grayscale(0%) invert(0%);
} */

.footer-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0580b8 100%);
  color: #fff;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.footer-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.footer-bar .container {
  position: relative;
  z-index: 1;
}

.footer-bar .footer-left {
  text-align: left;
}

.footer-bar .footer-right {
  text-align: right;
}

a.copyright-link.other {
  color: #fff;
  padding: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  a.copyright-link.other {
    padding: 0 12px;
  }
}

a.copyright-link.other:hover {
  color: #f0f8ff;
  text-decoration: none;
}

a.copyright-link.other::after {
  content: "|";
  position: absolute;
  right: -5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

a.copyright-link.other:last-child::after {
  content: none;
}

a.copyright-link.other::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

a.copyright-link.other:hover::before {
  transform: scaleX(1);
}

/* Responsive improvements */
@media (max-width: 991px) {
  .footer-bg {
    padding: 40px 0 30px;
  }

  .padding-50px-left {
    padding-left: 0;
  }

  .footer-bar .footer-left,
  .footer-bar .footer-right {
    text-align: center;
    margin-bottom: 10px;
  }

  .govt-partner-logo {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footermain .footer-logo {
    width: 220px;
  }

  .footer-bg {
    padding: 30px 0 20px;
  }

  .footer-bg h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .list-style3 li,
  footer .contact-info li {
    padding-left: 30px;
  }

  .list-style3 li:before {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  footer .contact-info li i {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  .govt-partner-logo {
    gap: 10px;
  }

  .govt-partner-logo .partnerlogo {
    padding: 8px;
  }

  .govt-partner-logo .partnerlogo img {
    max-height: 40px;
  }

  .footer-bar {
    padding: 20px 0;
  }

  a.copyright-link.other {
    padding: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footermain .footer-logo {
    width: 180px;
  }

  .footer-bg {
    padding: 25px 0 15px;
  }

  .margin-10px-bottom {
    font-size: 13px;
  }

  .list-style3 li,
  footer .contact-info li {
    padding-left: 25px;
    font-size: 14px;
  }

  .list-style3 li:before {
    width: 16px;
    height: 16px;
    font-size: 11px;
  }

  footer .contact-info li i {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .govt-partner-logo {
    justify-content: center;
    gap: 8px;
  }

  .govt-partner-logo .partnerlogo {
    padding: 6px;
  }

  .govt-partner-logo .partnerlogo img {
    max-height: 35px;
  }

  .footer-bar {
    padding: 15px 0;
  }

  .footer-bar .footer-left p,
  a.copyright-link.other {
    font-size: 13px;
  }

  a.copyright-link.other {
    padding: 0 8px;
  }
}

/* footer css end */

/* Animations Declaration start */
@keyframes blinker {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.03, 1.03);
  }

  100% {
    transform: scale(1, 1);
  }
}

/* Animations Declaration end */

/* contact us start */

.contact-us-section .shape-1 {
  background: var(--color-primary);
  color: #fff;
  padding-left: 40px;
}

.contact-us-section .shape-2 {
  background: var(--color-secondary);
  color: #fff;
  /* clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); */
}

.contact-us-section .shape-3 {
  background: #fff4f4;
  color: #010a44;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  padding-right: 40px;
}

.contact-us-section .shape-3 .contact-info-heading h4,
.contact-us-section .shape-3 .contact-info-heading p {
  color: var(--color-primary);
}

.contact-us-section .contact-info {
  /* padding: 40px 70px 40px 70px; */
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 230px;
}

.contact-us-section .contact-info h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 14px;
  letter-spacing: -0.06em;
  margin: 0 0 5px;
  color: #fff;
}

.contact-us-section .contact-info span {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.01em;
}

.contact-us-section .contact-info p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #fff;
}

.contact-us-section .contact-info-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
}

.contact-us-section .contact-info-heading i {
  font-size: 40px;
  line-height: 1;
}

.contact-us-section .contact-info-heading .contact-header {
  padding-left: 10px;
}

.contact-us-section .social-links {
  display: flex;
}

.contact-us-section .contact-icon .mdi-facebook {
  color: #395498;
}

.contact-us-section .contact-icon .mdi-twitter {
  color: #1c96e9;
}

.contact-us-section .contact-icon .mdi-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-us-section .heading-h2 {
  margin-bottom: 20px;
}

.common-form-style label {
  display: block;
  color: rgba(17, 24, 39, 1);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.common-form-style input,
.common-form-style textarea {
  display: block;
  line-height: 1.5rem;
  font-size: 14px;
  /* border-radius: 6px; */
  padding: 8px 14px;
  color: rgba(17, 24, 39, 1);
  border: none;
  border-bottom: 1px solid #6b7280;
  background-color: transparent;
}

.common-form-style input:focus,
.common-form-style input:focus-visible,
.common-form-style textarea:focus,
.common-form-style textarea:focus-visible {
  border-color: var(--color-primary);
  outline: none;
}

.common-form-style .submit-btn button {
  border-radius: 6px;
  background-color: var(--color-primary);
  border: none;
  cursor: pointer;
  padding: 11px 14px;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.common-form-style .submit-btn button:hover {
  background-color: #0066ab;
}

.contact-us-section .contact-row {
  margin-bottom: 20px;
}

.contact-us-section .contact-us-content {
  position: relative;
  margin-bottom: 15px;
}

.contact-us-section .heading-main h4 {
  color: #333;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: capitalize;
  margin: 15px 0;
}

.contact-us-section .contact-info {
  align-items: center;
}

.contact-us-section .contact-icon {
  margin-right: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: ease 1.8s;
}

.contact-us-section .contact-icon i {
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 35px;
  color: var(--theme-color);
}

.contact-us-section a {
  text-decoration: none;
  color: inherit;
}

.common-form-style .captcha {
  /* display: flex; */
  border: none;
  /* padding: 36px 0px; */
}

.common-form-style .captcha .captcha-input {
  padding: 0 15px;
  border: none;
  background-color: #b0d0e5;
  height: 100%;
  border-radius: 5px 0 0 5px;
  width: 80%;
}

.common-form-style .captcha .preview {
  color: #555;
  width: 50%;
  text-align: center;
  height: 45px;
  line-height: 35px;
  letter-spacing: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

.common-form-style .captcha .captcha-refresh {
  height: 100%;
  border: none;
  background-color: var(--color-primary);
  color: #ffff;
  width: 20%;
  border-radius: 0 5px 5px 0;
}

.common-form-style .captcha .captcha-refresh:hover {
  background-color: #0066ab;
}
.common-form-style em {
  color: #ff0000;
  font-size: 14px;
}

.mainbox {
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 20px 30px;
}

.mainbox .col-md-8 {
  margin-top: 15px;
}

.submit-btn {
  /* margin-bottom: 20px; */
}

/* contact us end */

/* transport start */
.transport-section .img-box {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* transport end */

/* school student activity start */
.school-student-activity-section {
  padding: 40px 0;
}

.school-student-activity-section .wrapper nav {
  display: flex;
  justify-content: center;
}

.school-student-activity-section .gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.school-student-activity-section .gallery .image {
  width: calc(100% / 4);
  padding: 7px;
}

.school-student-activity-section .gallery .image a {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.school-student-activity-section .gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.school-student-activity-section .gallery .image:hover img {
  transform: scale(1.1);
}

.school-student-activity-section .gallery .image.hide {
  display: none;
}

.school-student-activity-section .gallery .image.show {
  animation: animate 0.4s ease;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.school-student-activity-section .wrapper .items {
  display: flex;
  /* max-width: 720px; */
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.school-student-activity-section .items span.active,
.school-student-activity-section .items span:hover {
  color: #fff;
  background: var(--color-primary);
}

.school-student-activity-section .preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.school-student-activity-section .preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}

.school-student-activity-section .preview-box .details {
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.school-student-activity-section .details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}

.school-student-activity-section .details .title p {
  font-weight: 500;
  margin: 0 0 0 5px;
}

.school-student-activity-section .details .icon {
  color: var(--orange);
  font-size: 22px;
  cursor: pointer;
  align-items: center;
}

.school-student-activity-section .preview-box .image-box {
  width: 100%;
  display: flex;
}

.school-student-activity-section .image-box img {
  width: 100%;
  border-radius: 0 0 3px 3px;
}

.school-student-activity-section .shadow {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

.school-student-activity-section .shadow.show {
  display: block;
}

.school-student-activity-section .items span {
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-primary);
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  margin: 0 5px 10px;
}

/* school student activity end */

/* children library start */
.facilities-component-section {
  padding: 20px 0 0 0;
}
.facilities-component-section .welcome {
  font-size: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.facilities-component-section .para {
  margin-bottom: 30px;
}
.facilities-component-section .library-gallary {
  margin-bottom: 30px;
}
.facilities-component-section .sciencehead {
  margin-bottom: 20px;
}
.facilities-component-section .welcome span {
  color: var(--color-secondary);
}

.facilities-component-section img {
  border-radius: 5px;
}

/* library-sidebar-start */

.facilities-component-section .library-sidebar {
  max-width: 293px;
  margin-left: auto;
}

.facilities-component-section .library-sidebar .widget-information {
  background-color: #fff;
  padding: 47px 20px 50px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
}

.facilities-component-section .library-sidebar .widget {
  margin-bottom: 30px;
}

.facilities-component-section .library-sidebar .widget-information .widget-title {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  border: 0;
  padding: 0;
  margin-bottom: 17px;
}

.facilities-component-section .sidebar .widget-title {
  color: #2b2b2b;
  font-size: 20.32px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  text-align: center;
  padding: 10px 15px;
  margin-bottom: 25px;
}

.facilities-component-section .library-sidebar .widget-information ul {
  padding: 0 0 26px 0;
  border-bottom: 1px solid #e5dfdf;
  margin: 0;
  list-style: none;
}

.facilities-component-section .library-sidebar .widget-information ul li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.library-sidebar .widget-information ul li h4 {
  color: #575757;
  font-size: 14px;
  font-style: italic;
}

.library-sidebar .widget-information ul li > span {
  margin-left: auto;
  color: #155799;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
}

.library-sidebar .widget-information .tech-info {
  padding-top: 25px;
  text-align: center;
}

.library-sidebar .widget-information .tech-info .tech-tble {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.library-sidebar .widget-information .tech-info .tech-tble > img {
  border-radius: 50%;
}

.library-sidebar .widget-information .tech-info .tech-tble .tch-info {
  padding-left: 14px;
  text-align: left;
}

.library-sidebar .widget-information .tech-info .tech-tble .tch-info h3 {
  color: #2b2b2b;
  font-size: 18px;
  text-transform: capitalize;
}

.library-sidebar .widget-information .tech-info .tech-tble .tch-info span {
  display: block;
  color: #575757;
  font-size: 14px;
  font-family: Poppins, sans-serif;
}

.library-sidebar .widget-information .tech-info .btn-default {
  padding: 0 40px 0 60px;
}

.library-sidebar a {
  text-decoration: none;
}

.library-sidebar .btn-default {
  display: inline-block;
  color: #fff;
  font-size: 18.29px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  background-color: #135e9e;
  height: 40px;
  line-height: 40px;
  padding: 0 60px;
  position: relative;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
}

.library-sidebar .btn-default i {
  background-color: #155799;
  width: 26px;
  height: 27px;
  line-height: 29px;
  text-align: center;
  border-radius: 50px;
  color: white;
  position: absolute;
  top: 46%;
  transition: all 0.4s ease-in-out;
  left: 6px;
  transform: translateY(-50%);
  font-size: 26px;
}

.library-sidebar .widget:last-child {
  margin-bottom: 0;
}

.facilities-component-section .sidebar .widget-information {
  margin-bottom: 20px;
}

.library-sidebar .widget-contact-dp {
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 47px 20px 50px;
}

.library-sidebar .widget-contact-dp .mdp-our-contacts h3 {
  font-size: 20px;
  font-weight: 600;
}

.mdp-contact .mdp-our-contacts h3 {
  color: #2b2b2b;
  font-size: 36.59px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.library-sidebar .widget-contact-dp ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mdp-contact .mdp-our-contacts ul li {
  margin-bottom: 30px;
}

.library-sidebar .widget-contact-dp .mdp-our-contacts .dd-cont {
  max-width: calc(100% - 50px);
}

.mdp-contact .mdp-our-contacts .dd-cont {
  padding-left: 15px;
}

.mdp-contact .mdp-our-contacts .dd-cont > h4 {
  color: #2b2b2b;
  font-size: 14.23px;
  margin-bottom: 5px;
  font-weight: 600;
}

.mdp-contact .mdp-our-contacts .dd-cont > span {
  display: block;
  color: #575757;
  font-size: 14.23px;
}

/* library-sidebar-end */

/* children library end */

/* our blog start */
.blog-wrap {
  position: relative;
}

.blog-wrap {
  background: url(../images/home/blog/blog-bg.jpg) no-repeat top;
  background-size: cover;
  padding: 60px 0;
  margin-top: 80px;
  padding: 60px 0 220px 0;
}

.section-header {
  text-align: center;
}

.section-header {
  margin-bottom: 30px;
}

.blog-post-holder .col-lg-6 {
  display: inline-block;
}

.blog-post-detail {
  padding: 60px 0px 0;
  position: relative;
}

.blog-post-detail h3 {
  padding: 0 0 10px;
  /* border-bottom: 1px solid; */
  display: inline-block;
  border-color: #00c7c6;
}

.meta-post {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.meta-post i {
  font-size: 22px;
  color: #0d3b66;
  margin-right: 5px;
}

.meta-post li:first-child {
  margin: 0;
}

.meta-post li {
  /* display: inline-block; */
  margin: 0 0 0 20px;
  color: #141414;
  display: inline-flex;
  align-items: center;
}

.readmore a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  /* background: #f68712; */
  background: #ffc856;
  padding: 14px 35px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 1;
  position: relative;
  color: #fefefe;
  letter-spacing: 1px;
}

.readmore a:hover::before {
  left: 0px;
  width: 100%;
  right: auto;
  border-radius: 30px;
}

.readmore a::before {
  top: 0px;
  width: 0px;
  left: auto;
  right: 0px;
  z-index: -1;
  border-radius: 30px;
  bottom: 0px;
  content: "";
  position: absolute;
  background-color: #ff8205;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.blog-post-holder .no-gutters {
  display: block;
}

.no-gutters {
  margin-bottom: 30px;
}

.blog-post-holder .col-lg-6 {
  display: inline-block;
}

.blog-wrap:after {
  content: "";
  background: url(../images/home/blog/bg.png) no-repeat bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 155px;
  background-size: cover;
}

/* our blog end*/

/* our partner css start */
.our-partner .carousel-wrap {
  margin: 0px auto;
  width: 100%;
  position: relative;
}

.ourpartnerlogo {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
@media (max-width: 767px) {
  .ourpartnerlogo {
    padding: 5px;
  }
}
.ourpartnerlogo img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.our-partner {
  background-color: #f0f8ff;
  padding: 30px 0;
}
.our-partner .owl-dots {
  display: none;
}
.our-partner .owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
}

.our-partner .owl-carousel .owl-item img {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .our-partner .owl-carousel .owl-item img {
    padding: 0;
  }
}

.our-partner .owl-carousel .owl-item img:hover {
  opacity: 1;
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transition-duration: 0.3s;
}

.our-partner .owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.our-partner .owl-nav {
  display: none;
}

/* our partner css end*/
/* about school  */
.about-school .boyuniform {
  text-align: center;
}
.about-school .uniformhead {
  font-weight: 600;
}
/* about school  */

/* about school css start */
.feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
  padding: 200px 30px 30px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-bottom: 30px;
  /* background-image: linear-gradient(to bottom, rgb(0 0 0 / 12%), rgb(0 0 0 / 80%)),
    url(https://www.semi.org/sites/semi.org/files/styles/four_column_card/public/2024-11/supply%20chain-b.jpg.webp?itok=SNPwHOS3); */
  color: #fff;
}

.feature-item .feature-thumb {
  max-width: 110px;
  margin: 0 auto 24px;
}

.feature-item .feature-thumb img {
  width: 100%;
}

.feature-item .feature-content .title {
  margin-bottom: 3px;
}

.feature-item .feature-content .cate {
  display: block;
  margin-bottom: 16px;
  color: #8dc63f;
}

.feature-item .feature-content p {
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.feature-item:hover {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

.section-header {
  margin-bottom: 30px;
}

.section-header .title {
  text-transform: capitalize;
  margin-bottom: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
  padding: 20px 30px;
  margin-bottom: 10px;
}

.faq-item .faq-title {
  cursor: pointer;
  align-items: center;
  display: flex;
}

.right-icon {
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 50%;
  background: #0d3b66;
  color: white;
  position: relative;
}

.right-icon::before {
  width: 12px !important;
  height: 2px !important;
  position: absolute;
  content: "";
}

.right-icon::after,
.right-icon::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: absolute;
}

.faq-item.open .right-icon::after {
  height: 2px;
}

.right-icon::after {
  height: 12px;
  width: 2px;
  content: "";
}

.faq-item.open .title {
  color: var(--color-text-blue);
}

.faq-item .faq-title .title {
  width: calc(100% - 36px);
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.rtl.d-none.d-lg-block.pe-4 {
  direction: rtl;
}

.padding-top.about-bottom {
  padding-top: 30px;
}

/* about school css end */

/* testimonial about css start */

.testimonial .owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  padding: 15px;
  margin-top: 20px;
}

.testimonial .parent-card {
  border-radius: 10px;
  width: 100%;
  padding: 15px;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  background: var(--color-light-blue);
  position: relative;
  min-height: auto;
  height: 100%;
}

.testimonial .div_images {
  margin: 10px 0;
}

.testimonial .rating-div {
  /* justify-content: flex-end; */
  display: flex;
  align-items: center;
}

.testimonial .rating-img {
  height: auto;
  width: 20px !important;
}

.testimonial .owl-nav {
  display: none;
}

.testimonial .subheading-card {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 15px 0;
}

.testimonial .user-image {
  height: auto;
  width: 45px !important;
  margin-right: 10px;
}

.testimonial .card-user {
  display: flex;
  align-items: center;
}

.testimonial .carduser-name {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

/* testimonial about css end */

/* vision mission css start */
progress {
  text-align: center;
  height: 40px;
  width: 80%;
  -webkit-appearance: none;
  border-radius: 16px;

  /* Set the progressbar to relative */
  position: relative;

  overflow: hidden;
}

progress:before {
  content: attr(data-label);
  color: #fff;
  font-weight: 600;
  vertical-align: 0;
  /*Position text over the progress bar */
  position: absolute;
  left: 0;
  top: 8px;
  padding: 0 20px;
}

progress::-webkit-progress-bar {
  background-color: #c9c9c9;
}

progress::-webkit-progress-value {
  background-color: #0d3b66;
}

progress::-moz-progress-bar {
  background-color: #0d3b66;
}

.rounded-gallery {
  position: relative;
  height: 100%;
  max-width: unset;
}

.rounded-gallery .figure {
  height: 500px;
  width: 500px;
  overflow: hidden;
}

.rounded-gallery img {
  overflow: hidden;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
}

.rounded-gallery .vision-img-01 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rounded-gallery .figure-img-1 {
  height: 150px;
  width: 150px;
  overflow: hidden;
  position: absolute;
  top: 0;
}

.rounded-gallery .vision-img-02 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rounded-gallery .figure-img-2 {
  height: 150px;
  width: 150px;
  overflow: hidden;
  position: absolute;
  top: 60%;
}

/* vision mission css end*/

/* sitemap css start */
/* .sitemapMain {
  padding: 150px 0 0 0;
} */

.sitemapMain ul li {
  padding: 7px 30px;
  position: relative;
  margin: auto;
  color: #555;
}

.sitemapMain ul li::before {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #0d3b66;
  left: 9px;
}

.sitemapMain ul li::before {
  content: "";
  position: absolute;
  border-radius: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sitemapMain ul li:hover::before {
  background-color: #0d3b66;
}

.sitemapMain .web-links {
  color: inherit;
  text-decoration: none;
}

.sitemapMain .main-heading {
  color: var(--orange);
}

.sitemapMain .color {
  box-shadow: 0 0 15px 0 #ddd;
  height: 100%;
  border-radius: 5px;
}

.sitemapMain .color .main-heading {
  background: linear-gradient(90deg, rgb(2 94 138) 35%, rgb(13 59 102 / 22%) 100%);
  padding: 10px 0 10px 15px;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.sitemapMain .list-unstyled {
  padding-left: 15px;
}

.sitemapMain .main-heading {
  font-size: 22px;
}

/* sitemap css end  */

/* founders message start */
.border-radius-5 {
  border-radius: 5px;
}

.padding-20px-left {
  padding-left: 20px;
}

.text-pink {
  color: #ff457e;
}

.margin-25px-bottom {
  margin-bottom: 25px;
}

.opacity7 {
  opacity: 0.7;
}

.font-weight-400 {
  font-weight: 400;
}

.font-size16 {
  font-size: 16px;
}

.no-margin {
  margin: 0 !important;
}

.team-single-icons ul li {
  display: inline-block;
  border: 1px solid #0d3b66;
  border-radius: 50%;
  color: #86bc42;
  margin-right: 8px;
  margin-bottom: 5px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.team-single-icons ul li:hover {
  background: #0d3b66;
  border-color: #0d3b66;
}

.team-single-icons ul li a {
  color: #0d3b66;
  display: block;
  font-size: 14px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  width: 25px;
}

.team-single-icons ul li:hover a {
  color: #fff;
}

.margin-50px-tb {
  margin-top: 50px;
  margin-bottom: 50px;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.block-info {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 0;
  height: 400px;
}

.block-info > h6 {
  border-radius: 5px;
  padding: 15px 15px;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 24px;
  -webkit-border-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.block-info .bg-yellow {
  background-color: #f98d1b;
}

.list-style12 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-style12 li {
  position: relative;
  padding: 15px 25px;
  border-bottom: 1px solid #e5e5e5;
}
.list-style12 li:last-child {
  border-bottom: unset;
}

.bg-pink {
  background-color: #38661a !important;
}

.padding-25px-all {
  padding: 25px;
}

.progress-text {
  font-size: 15px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 10px;
}

.custom-progress {
  height: 10px;
  border-radius: 50px;
  box-shadow: none;
  margin-bottom: 25px;
}

.custom-bar {
  height: 100%;
  box-shadow: none;
}

.progress-bar {
  background-color: #0d3b66;
}

/* founders message end */

/* blog section start */
.blogs-section .blogs-card-container {
  visibility: visible;
  animation-delay: 100ms;
}

.blogs-section .blog-item {
  position: relative;
  margin: 0 0 36px;
}

.blogs-section .blog-image img {
  height: auto;
  width: 100%;
}

.blogs-section a {
  box-shadow: none;
  text-decoration: none;
}

.blogs-section .blog-image a {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 37, 77, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blogs-section .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.blogs-section .blogs-content {
  position: relative;
  background-color: white;
  margin: -158px 30px 0;
  padding: 30px 30px 27px;
  border-radius: 10px 10px 50px 50px;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}

.blogs-section .blog-top-meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 19px;
}

.blogs-section .blog-tag a {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  height: 24px;
  line-height: 24px;
  padding: 0 11px;
  margin: 0 5px 5px 0;
}

.blogs-section .blog-date {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-secondary);
}

.blogs-section .blog-title a {
  font-size: 24px;
  margin: 0 0 24px;
  color: #2a254d;
}

.blogs-section .blog-bottom-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.blogs-section .blog-meta-author {
  position: relative;
  padding: 6px 0 0 0px;
  min-height: 45px;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.blogs-section .blog-meta-author .icon i {
  font-size: 36px;
}

.blogs-section .blog-meta-author img {
  border-radius: 50%;
  width: 44px !important;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.blogs-section .blog-meta-author a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  color: black;
}

.blogs-section .blog-bottom-icon i {
  font-size: 32px;
}

/* blog sidebar start */
.sidebar-widget-container {
  border-radius: 14px;
  background-color: white;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
  padding: 37px 30px 42px;
}

.right-sidebar .sidebar-header h3 {
  position: relative;
  font-size: 24px;
  line-height: 26px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--color-secondary);
  margin: 0 0 30px;
  padding-bottom: 25px;
}

.right-sidebar {
  padding: 0 12px;
}

.post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-list li {
  list-style: none;
  position: relative;
  padding: 3px 0 31px 109px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e4e4e4;
  min-height: 89px;
}

.post-list li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-post-list .sidebar-post-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 89px;
  height: 89px;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar-post-list .sidebar-post-image img {
  height: 100%;
  object-fit: cover;
}

/* blog sidebar end */

/* blog section end */

/* blog-detail-section start */
.blog-detail-content {
  border-radius: 14px;
  background-color: white;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
  padding: 37px 30px 42px;
}

.blog-detail-section .blog-detail-header {
  line-height: 26px;
  border-bottom: 1px dashed var(--color-secondary);
  margin: 0 0 30px;
  padding: 25px 0;
}

.blog-detail-section .blog-detail-mainimage img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* blog-detail-section end*/

/* canteen facility start */
.canteen-facility-section .image-innerbox img {
  position: relative;
  z-index: 2;
}

/* canteen facility end */

/* academic achievement css start */
.mb--40--50 {
  margin-bottom: -40px;
}

.gallery-section .gallery-item {
  text-align: center;
  position: relative;
  margin: 0 20px 40px;
}

.gallery-section .gallery-item::before {
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-4.5deg);
  -ms-transform: rotate(-4.5deg);
  transform: rotate(-4.5deg);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.gallery-section .gallery-item .gallery-inner {
  padding: 15px;
  padding-bottom: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.gallery-section .gallery-item .gallery-thumb a {
  display: block;
  overflow: hidden;
}

.gallery-section .gallery-item .gallery-thumb a img {
  width: 100%;
}

.gallery-section .gallery-item .gallery-content {
  padding: 20px 0;
}

.gallery-section .gallery-item .gallery-content .title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #0d3b66;
}

.gallery-section .gallery-item:hover::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.gallery-section .gallery-item::before {
  position: absolute;
  content: "";
}

.gallery-section {
  background-image: url(../images/academic-achievement/blue-wave.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  margin-top: 40px;
  /* height: 100vh; */
  display: flex;
  align-items: center;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 407px;
  height: 170px;
  background: url(../images/academic-achievement/cloudx2.png);
  background-size: cover;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: translateY(-55%) rotate(0deg);
  -ms-transform: translateY(-55%) rotate(0deg);
  transform: translateY(-55%) rotate(0deg);
}

/* academic achievement css end */

/* campus news start */
/* Legacy news section styles - Updated with enhanced responsive design */
/* Note: These styles are now enhanced with the new responsive design above */

/* Legacy cardz styles - now enhanced above */

/* campus news end */

/* smart classroom start */
.library-gallary .gallary-sub-img .image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 12px 0;
}

/* smart classroom end */

/* news-detail-start */
.news-detail-section .news-detail-content {
  border-radius: 14px;
  background-color: white;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
  padding: 37px 30px 42px;
  margin-bottom: 20px;
}

.news-detail-section .news-detail-image {
  margin-bottom: 20px;
}

.news-detail-section .news-detail-image {
  margin-bottom: 20px;
}

.news-detail-section .news-meta span {
  font-size: 13px;
  font-style: oblique;
  font-family: auto;
  font-weight: 600;
  color: black;
  opacity: 0.5;
}

/* news-detail-end */

.inner-bannermain {
  background: linear-gradient(rgba(5, 128, 184, 0.6), rgba(5, 128, 184, 0.6)), url(../images/bg-10.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 18rem;
  color: #fff;
}
@media (max-width: 767px) {
  .inner-bannermain {
    height: unset;
    padding: 30px 0;
  }
}
.inner-bannermain .thm-btn {
  background: #fff;
  color: var(--color-primary);
}

/* =============about quote section============= */
.aboutquotemain {
  padding: 30px 0;
}
.aboutquotemain .about-us-description-large {
  font-size: 32px;
  text-align: center;
}
.aboutquotemain .quotebannerbox {
  width: 100%;
  height: auto;
}
.aboutquotemain .quotebannerbox .quoteimg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .aboutquotemain .about-us-description-large {
    font-size: 20px;
  }
}

/* =============about quote section============= */

/* tab section */
.tab-sectionmain .tab-section {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 600px;
  border-radius: 25px;
  margin-bottom: 10px;
}

.tab-sectionmain .tab-navigation {
  flex: 0 0 300px;
  background-color: #f1f3f4;
  padding: 0;
}

.tab-sectionmain .tab-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: #5f6368;
}

.tab-sectionmain .tab-item:hover {
  background-color: #e8eaed;
}

.tab-sectionmain .tab-item.active {
  background-color: white;
  color: var(--color-primary);
  border-right: 3px solid var(--color-primary);
}

.tab-sectionmain .tab-item:last-child {
  border-bottom: none;
}

.tab-sectionmain .tab-arrow {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.tab-sectionmain .tab-item.active .tab-arrow {
  transform: rotate(45deg) scale(1.1);
}

.tab-sectionmain .tab-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.tab-sectionmain .content-panel {
  display: none;
}

.tab-sectionmain .content-panel.active {
  display: block;
}

.tab-sectionmain .content-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.tab-sectionmain .content-title {
  font-size: 24px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-sectionmain .content-description {
  font-size: 16px;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tab-sectionmain .learn-more {
  display: inline-flex;
  align-items: center;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.tab-sectionmain .learn-more:hover {
  color: #1557b0;
}

.tab-sectionmain .learn-more::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.tab-sectionmain .learn-more:hover::after {
  transform: rotate(45deg) translateX(2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tab-sectionmain .tab-section {
    flex-direction: column;
    min-height: auto;
  }

  .tab-sectionmain .tab-navigation {
    flex: none;
    display: flex;
    overflow-x: auto;
    background-color: #f1f3f4;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }

  .tab-sectionmain .tab-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 15px 20px;
    border-bottom: none;
    border-right: 1px solid #e0e0e0;
    font-size: 14px;
  }

  .tab-sectionmain .tab-item:last-child {
    border-right: none;
  }

  .tab-sectionmain .tab-item.active {
    border-right: none;
    border-bottom: 3px solid #1a73e8;
  }

  .tab-sectionmain .tab-content {
    padding: 20px;
  }

  .tab-sectionmain .content-image {
    height: 200px;
    margin-bottom: 20px;
  }

  .tab-sectionmain .content-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .tab-sectionmain .content-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .tab-sectionmain .tab-item {
    padding: 12px 16px;
    font-size: 13px;
  }

  .tab-sectionmain .tab-content {
    padding: 15px;
  }

  .tab-sectionmain .content-title {
    font-size: 18px;
  }
}
/* tab section */

/* meet our team */

.cardsection-twomain .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.cardsection-twomain .leadership-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cardsection-twomain .leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cardsection-twomain .card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .cardsection-twomain .executive-team {
  background-image: url("/placeholder.svg?height=400&width=600");
}

.cardsection-twomain .board-members {
  background-image: url("/placeholder.svg?height=400&width=600");
} */

.cardsection-twomain .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: white;
}

.cardsection-twomain .card-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.cardsection-twomain .learn-more {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cardsection-twomain .learn-more:hover {
  transform: translateX(5px);
}

.cardsection-twomain .learn-more::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.cardsection-twomain .learn-more:hover::after {
  transform: rotate(45deg) translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cardsection-twomain .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
  }

  .cardsection-twomain .leadership-card {
    height: 350px;
  }

  .cardsection-twomain .card-overlay {
    padding: 35px;
  }

  .cardsection-twomain .card-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .cardsection-twomain .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cardsection-twomain .leadership-card {
    height: 300px;
  }

  .cardsection-twomain .card-overlay {
    padding: 30px;
  }

  .cardsection-twomain .card-title {
    font-size: 22px;
  }

  .cardsection-twomain .learn-more {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cardsection-twomain .leadership-card {
    height: 280px;
  }

  .cardsection-twomain .card-overlay {
    padding: 25px;
  }

  .cardsection-twomain .card-title {
    font-size: 20px;
  }

  .cardsection-twomain .learn-more::after {
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }
}

/* Accessibility improvements */
.cardsection-twomain .leadership-card:focus {
  outline: 3px solid #007bff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cardsection-twomain .leadership-card,
  .cardsection-twomain .learn-more,
  .cardsection-twomain .learn-more::after {
    transition: none;
  }

  .cardsection-twomain .leadership-card:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .cardsection-twomain .card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
  }
}
/* meet our team */

/* service section */
.service-sectionmain .services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-sectionmain .service-card {
  flex: 1 1 350px;
  max-width: 380px;
  min-width: 300px;
  text-align: center;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 30px;
}

.service-sectionmain .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-sectionmain .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-radius: 8px;
  position: relative;
}

.service-sectionmain .service-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.service-sectionmain .service-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.service-sectionmain .service-description {
  font-size: 16px;
  color: #5a6c7d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-sectionmain .learn-more {
  display: inline-flex;
  align-items: center;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.service-sectionmain .learn-more:hover {
  color: #6f42c1;
  transform: translateX(3px);
}

.service-sectionmain .learn-more::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-sectionmain .learn-more:hover::after {
  transform: rotate(45deg) translateX(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-sectionmain .services-section {
    gap: 30px;
  }

  .service-sectionmain .service-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 35px 25px;
  }

  .service-sectionmain .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .service-sectionmain .service-icon svg {
    width: 35px;
    height: 35px;
  }

  .service-sectionmain .service-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .service-sectionmain .service-description {
    font-size: 15px;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .service-sectionmain .services-section {
    gap: 25px;
  }

  .service-sectionmain .service-card {
    flex: 1 1 280px;
    max-width: 100%;
    min-width: 280px;
    padding: 30px 20px;
  }

  .service-sectionmain .service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .service-sectionmain .service-icon svg {
    width: 32px;
    height: 32px;
  }

  .service-sectionmain .service-title {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .service-sectionmain .service-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .service-sectionmain .learn-more {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .service-sectionmain .services-section {
    gap: 20px;
  }

  .service-sectionmain .service-card {
    flex: 1 1 100%;
    min-width: auto;
    padding: 25px 15px;
  }

  .service-sectionmain .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .service-sectionmain .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-sectionmain .service-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .service-sectionmain .service-description {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

/* Accessibility improvements */
.service-sectionmain .service-card:focus-within {
  outline: 2px solid #6f42c1;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .service-sectionmain .service-card,
  .service-sectionmain .learn-more,
  .service-sectionmain .learn-more::after {
    transition: none;
  }

  .service-sectionmain .service-card:hover {
    transform: none;
  }
}
/* service section */

/* UNDO OF Executive Team */

/* leadership team */

/* Modern Leadership Team Section Styles */
.leadership-team-main {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leadership-team-main .team-grid {
  --items-gap: 30px;
  --items: 3;
  --logic: (var(--items-gap)) * (var(--items) - 1) / (var(--items));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--items-gap);
  margin-top: 30px;
}

.leadership-team-main .team-card {
  width: calc((100% / var(--items)) - var(--logic));
  perspective: 1000px;
  height: 410px;
}

.leadership-team-main .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.leadership-team-main .team-card:hover .card-inner {
  transform: rotateY(180deg);
}
.leadership-team-main .team-card.advisory-team-card:hover .card-inner {
  transform: none;
}

.leadership-team-main .card-front,
.leadership-team-main .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.leadership-team-main .card-front {
  background: white;
  padding: 20px;
}

.leadership-team-main .card-back {
  background: linear-gradient(135deg, var(--color-primary) 0%, #00a2c7 100%);
  color: white;
  transform: rotateY(180deg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.leadership-team-main .profile-image-container {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f8ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-team-main .team-card:hover .profile-image-container {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leadership-team-main .profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leadership-team-main .member-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-team-main .member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.leadership-team-main .member-title {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.4;
}

.leadership-team-main .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.leadership-team-main .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f8ff;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.leadership-team-main .social-icons a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.leadership-team-main .bio-toggle {
  background: linear-gradient(90deg, var(--color-primary), #00b2cf);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.leadership-team-main .bio-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.leadership-team-main .card-back h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
}

.leadership-team-main .card-back h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.leadership-team-main .bio-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.leadership-team-main .card-back .bio-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
}

.leadership-team-main .card-back .bio-toggle:hover {
  background: white;
  color: var(--color-primary);
}

/* Responsive Styles */

@media (max-width: 991px) {
  .leadership-team-main .team-grid {
    --items: 2;
  }
  .leadership-team-main .section-heading .title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .leadership-team-main .section-heading .title {
    font-size: 1.8rem;
  }

  .leadership-team-main .profile-image-container {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 767px) {
  .leadership-team-main .team-grid {
    --items: 1;
  }
}
/* leadership team */

/* ebooks */
.blogs-section {
  padding-bottom: 30px;
}
.blogs-section .blog-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Featured Article Section */
.blogs-section .featured-section {
  flex: 2;
  min-width: 0;
}

.blogs-section .featured-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.blogs-section .featured-image-container {
  position: relative;
  height: 300px;
  background: url("/placeholder.svg?height=300&width=600") center/cover;
}

.blogs-section .featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 144, 220, 0.8) 0%, rgba(116, 185, 255, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.blogs-section .logo {
  color: white;
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.blogs-section .logo::before {
  content: "";
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-block;
}

.blogs-section .ebook-label {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  margin-bottom: 20px;
}

.blogs-section .featured-title {
  color: white;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: auto;
}

.blogs-section .featured-content {
  padding: 30px;
}

.blogs-section .featured-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blogs-section .article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6c757d;
}

.blogs-section .category-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 500;
}

.blogs-section .article-excerpt {
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.6;
}

/* Sidebar Section */
.blogs-section .sidebar {
  flex: 1;
  min-width: 300px;
}

.blogs-section .search-container {
  display: flex;
  margin-bottom: 30px;
  gap: 0;
}

.blogs-section .search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.blogs-section .search-input:focus {
  border-color: #20b2aa;
}

.blogs-section .search-button {
  background: linear-gradient(135deg, #20b2aa 0%, #17a2b8 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.blogs-section .search-button:hover {
  background: linear-gradient(135deg, #1a9a94 0%, #138496 100%);
}

.blogs-section .sidebar-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blogs-section .sidebar-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogs-section .sidebar-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.blogs-section .postcontainer {
  --items-gap: 20px;
  --items: 3;
  --logic: (var(--items-gap)) * (var(--items) - 1) / (var(--items));
  display: flex;
  flex-wrap: wrap;
  gap: var(--items-gap);
}

.blogs-section .postcontainer .sidebar-article {
  width: calc((100% / var(--items)) - var(--logic));
}

.blogs-section .sidebar-image {
  height: 120px;
  background: url("/placeholder.svg?height=120&width=300") center/cover;
  position: relative;
}
.blogs-section .sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs-section .sidebar-image::after {
  content: "Semicon";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.blogs-section .sidebar-content {
  padding: 20px;
}

.blogs-section .sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogs-section .card-desc {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-section .sidebar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #6c757d;
}

.blogs-section .sidebar-category {
  background: #e8f5e8;
  color: #2e7d32;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blogs-section .blog-layout {
    gap: 25px;
  }

  .blogs-section .featured-title {
    font-size: 32px;
  }

  .blogs-section .featured-content h2 {
    font-size: 24px;
  }

  .blogs-section .sidebar {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .blogs-section .container {
    padding: 15px;
  }

  .blogs-section .blog-layout {
    flex-direction: column;
    gap: 20px;
  }

  .blogs-section .sidebar {
    min-width: auto;
  }

  .blogs-section .featured-image-container {
    height: 250px;
  }

  .blogs-section .featured-overlay {
    padding: 20px;
  }

  .blogs-section .featured-title {
    font-size: 28px;
  }

  .blogs-section .featured-content {
    padding: 20px;
  }

  .blogs-section .featured-content h2 {
    font-size: 22px;
  }

  .blogs-section .search-container {
    margin-bottom: 20px;
  }

  .blogs-section .sidebar-articles {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
  }

  .blogs-section .sidebar-article {
    flex: 0 0 280px;
  }
}

@media (max-width: 480px) {
  .blogs-section .featured-overlay {
    padding: 15px;
  }

  .blogs-section .featured-title {
    font-size: 24px;
  }

  .blogs-section .featured-content {
    padding: 15px;
  }

  .blogs-section .featured-content h2 {
    font-size: 20px;
  }

  .blogs-section .logo {
    font-size: 24px;
  }

  .blogs-section .search-input,
  .blogs-section .search-button {
    padding: 10px 14px;
    font-size: 14px;
  }

  .blogs-section .sidebar-articles {
    flex-direction: column;
  }

  .blogs-section .sidebar-article {
    flex: none;
  }
}

/* Accessibility improvements */
.blogs-section .search-button:focus,
.blogs-section .search-input:focus {
  outline: 2px solid #20b2aa;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .blogs-section .sidebar-article {
    transition: none;
  }

  .blogs-section .sidebar-article:hover {
    transform: none;
  }
}
/* ebooks */

/* Brochures */
.brochures-main .form-section {
  flex: 1 1 400px;
}
.brochures-main .form-section h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
.brochures-main .form-section h1 span {
  color: var(--color-text-blue);
}
.brochures-main .form-section p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}
.brochures-main form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.brochures-main label {
  margin-bottom: 5px;

  display: flex;
  color: rgba(17, 24, 39, 1);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.brochures-main input[type="text"],
.brochures-main input[type="email"] {
  /* padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 15px; */

  width: 100%;
  display: block;
  font-size: 15px;
  /* border-radius: 6px; */
  padding: 8px 14px;
  color: rgba(17, 24, 39, 1);
  border: none;
  border-bottom: 1px solid #6b7280;
  background-color: transparent;
}
.brochures-main .phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 0 12px;
  overflow: hidden;

  width: 100%;
  font-size: 14px;
  /* border-radius: 6px; */
  padding: 8px 14px;
  color: rgba(17, 24, 39, 1);
  border: none;
  border-bottom: 1px solid #6b7280;
  background-color: transparent;
}
.brochures-main .phone-input img {
  width: 24px;
  height: auto;
  margin-right: 8px;
}
.brochures-main .phone-input input {
  border: none;
  flex: 1;
  padding: 12px 0;
  font-size: 15px;
}
.brochures-main .phone-input input:focus,
.brochures-main input[type="text"]:focus,
.brochures-main input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}
.brochures-main button {
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  padding-left: 25px;
  padding-right: 25px;
}
.brochures-main .image-section {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brochures-main .image-section img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .brochures-main .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .brochures-main .form-section,
  .brochures-main .image-section {
    flex: 1 1 100%;
  }
  .brochures-main .form-section h1 {
    font-size: 24px;
  }
}
/* Brochures */

/* training options */
.tabscard-main .tab-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto 10px;
}

.tabscard-main .tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.tabscard-main .tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: #e6e6e6;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 767px) {
  .tabscard-main .tab {
    font-size: 14px;
  }
}

.tabscard-main .tab.active {
  background: var(--color-primary);
  color: white;
}

.tabscard-main .tab-content-wrapper {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: opacity 0.5s ease, max-height 0.5s ease, visibility 0.5s;
  overflow: hidden;
}

.tabscard-main .tab-content-wrapper.active {
  opacity: 1;
  visibility: visible;
  max-height: 2000px; /* or enough to hold the content */
}

.tabscard-main .tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  justify-content: space-between;
}

.tabscard-main .left-content {
  flex: 1 1 45%;
}

.tabscard-main .left-content h3 {
  font-weight: bold;
}

.tabscard-main .left-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.tabscard-main .left-content ul li {
  margin-bottom: 10px;
}

.tabscard-main .explore-btn {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
}

.tabscard-main .card-container {
  display: flex;
  gap: 20px;
  flex: 1 1 50%;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.tabscard-main .card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 280px;
  flex: 1 1 250px;
}

.tabscard-main .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tabscard-main .badge {
  position: absolute;
  background: var(--color-primary);
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.tabscard-main .card-content {
  padding: 15px;
}

.tabscard-main .card-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.tabscard-main .learn-more {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.tabscard-main .learn-more::after {
  content: " \2192";
  color: #800080;
}

@media (max-width: 992px) {
  .tabscard-main .tab-content {
    flex-direction: column;
  }

  .tabscard-main .left-content,
  .tabscard-main .card-container {
    flex: 1 1 100%;
  }

  .tabscard-main .card-container {
    justify-content: center;
  }
}
/* training options */

/* course tab */
.course-tab-main .course-tabs-section {
  padding-bottom: 20px;
  font-family: sans-serif;
}

.course-tab-main .course-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.course-tab-main .tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background-color: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.course-tab-main .tab.active {
  background-color: var(--color-primary);
  color: #fff;
}

.course-tab-main .tab-content-wrapper {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.course-tab-main .tab-content-wrapper.active {
  display: block;
  opacity: 1;
}

.course-tab-main .course-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .course-tab-main .course-card-grid {
    grid-template-columns: 1fr;
  }
}

.course-tab-main .course-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.course-tab-main .course-card:hover {
  transform: translateY(-5px);
}

.course-tab-main .image-wrap {
  position: relative;
}

.course-tab-main .image-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.course-tab-main .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.course-tab-main .course-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
}

.course-tab-main .course-card a {
  display: block;
  margin: 0 12px 12px;
  font-weight: bold;
  color: var(--color-text-blue);
  text-decoration: none;
}
/* course tab */

/* course section */
.courses-section .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.courses-section .course-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}

.courses-section .course-card:hover {
  transform: translateY(-5px);
}

.courses-section .image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.courses-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses-section .card-content {
  padding: 15px;
}

.courses-section .card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.courses-section .member-price {
  color: #000;
  font-weight: 500;
}

.courses-section .member-price span {
  color: green;
}

.courses-section .non-member-price {
  color: #555;
  font-size: 14px;
}

.courses-section .with-button .quick-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.courses-section .with-button:hover .quick-add {
  opacity: 1;
}

/* course section */
/* course section marquee */
.marquee-card-section {
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 8s linear infinite;
  gap: 30px;
}

.marquee-card-section:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* feature section */
.features-section {
  background-color: #f0f8ff;
  position: relative;
  overflow: hidden;
}

.features-section .container {
  position: relative;
  z-index: 2;
}

.features-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-section .features-section-row {
  --gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card container */
.features-section .feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.features-section .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) #38c5ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features-section .feature-card:hover::before {
  transform: scaleX(1);
}

.features-section .feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

/* Icon styles */
.features-section .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  transition: all 0.3s ease;
}

.features-section .icon-wrapper::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-section .feature-card:hover .icon-wrapper::after {
  opacity: 1;
}

.features-section .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Feature title */
.features-section .feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

/* Color backgrounds */
.features-section .blue-bg {
  background: linear-gradient(135deg, #0082b7, #146992);
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-section .features-section-row {
    --gap: 25px;
  }
}

@media (max-width: 991px) {
  .features-section .features-section-row {
    --gap: 20px;
  }
}

@media (max-width: 767px) {
  .features-section .features-section-row {
  }

  .features-section .feature-card {
    padding: 30px 20px;
  }

  .features-section .icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .features-section .feature-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .features-section .section-heading .title {
    font-size: 1.5rem;
  }

  .features-section .feature-card {
    padding: 25px 15px;
  }

  .features-section .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .features-section .feature-card h3 {
    font-size: 1.1rem;
  }
}
/* feature section */

.partnerlogo-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.partnerlogo-header .partnerlogo {
  width: 243px;
  height: 123px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 8px 0;
}
@media (max-width: 1499px) {
  .partnerlogo-header .partnerlogo {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .partnerlogo-header .partnerlogo {
    height: 68px;
    width: 100%;
  }
}
.govt-partner-logo .partnerlogo img,
.partnerlogo-header .partnerlogo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.govt-partner-logo .partnerlogo {
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  max-width: 320px;
}
.govt-partner-logo .partnerlogo.invert {
  /* filter: invert(1); */
}
.ctatext {
  font-size: 18px;
  font-weight: 700;
}
.radius-0 {
  border-radius: 0 !important;
}
.ismlogo {
  width: 265px;
  height: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ismlogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modern Banner Styles */
.modern-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.modern-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 128, 184, 0.9) 0%, rgb(2 94 138) 100%);
  z-index: 1;
}

.modern-banner .container {
  position: relative;
  z-index: 3;
}
.modern-banner .glass-effect-row {
  --gap: 24px;
}

.banner-content {
  margin-bottom: 3rem;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta-card:hover::before {
  left: 100%;
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: #5896b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.cta-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modern-btn {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: var(--color-primary);
  border: none;
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: auto;
  min-height: auto;
}

.modern-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.modern-btn:hover::before {
  left: 100%;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #e9ecef);
}

.modern-btn i {
  transition: transform 0.3s ease;
}

.modern-btn:hover i {
  transform: translateX(3px);
}

.banner-overlay {
  opacity: 0.5;
}

.banner-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  top: 80%;
  right: 10%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-banner .glass-effect-row {
    --items: 2;
  }

  .modern-banner {
    min-height: 500px;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
  }

}

@media (max-width: 767px) {
  .modern-banner {
    min-height: auto;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .cta-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .cta-icon i {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.25rem;
  }

  .modern-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .banner-text-content {
    margin-top: -60px;
  }

  .cta-card {
    padding: 1.25rem 0.75rem;
  }

  .modern-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Enhanced existing inner-bannermain styles */
.inner-bannermain.modern-banner {
  background: none;
  height: auto;
}

.inner-bannermain.modern-banner .thm-btn {
  color: var(--color-primary);
}

/* Enhanced Events Section Styles */
.news {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.news .container {
  position: relative;
  z-index: 2;
}

/* Enhanced Card Styles */
.news .cardz {
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .news .cardz {
    --items: 2;
    width: calc(100% / var(--items) - var(--logic));
  }
  .news-cards-row {
    justify-content: center;
  }
}
.news .cardz:hover {
  transform: translateY(-5px);
}

/* Enhanced snip1208 styles */
figure.snip1208 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  color: #333333;
  text-align: left;
  font-size: 16px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
}

figure.snip1208:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

figure.snip1208 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

figure.snip1208 .image-frame {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
}

figure.snip1208 .image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(2, 94, 138, 0.1), rgba(0, 0, 0, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

figure.snip1208:hover .image-frame::before {
  opacity: 1;
}

figure.snip1208 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transform-origin: 50% 50%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

figure.snip1208:hover img {
  transform: scale(1.1);
}

figure.snip1208 figcaption {
  padding: 25px 30px 30px;
  position: relative;
  background: #ffffff;
}

figure.snip1208 .date,
figure.snip1208 i {
  background: linear-gradient(135deg, var(--color-primary), #0580b8);
  top: 20px;
  right: 20px;
  color: #ffffff;
  min-height: 50px;
  min-width: 50px;
  position: absolute;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(2, 94, 138, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

figure.snip1208:hover .date {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(2, 94, 138, 0.4);
}

figure.snip1208 .date {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
}

figure.snip1208 .date span {
  display: block;
  line-height: 1.2;
}

figure.snip1208 .date .day {
  font-size: 20px;
  font-weight: 800;
}

figure.snip1208 .date .month {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 1px 6px;
  border-radius: 8px;
  margin-top: 1px;
}

figure.snip1208 i {
  line-height: 50px;
  font-size: 20px;
  opacity: 0;
  transform: rotateY(-90deg);
  transition-delay: 0s;
  pointer-events: none;
}

/* Disable calendar icon hover effect */
figure.snip1208:hover i {
  opacity: 0;
  transform: rotateY(-90deg);
  transition-delay: 0s;
}

figure.snip1208 h3,
figure.snip1208 p {
  margin: 0;
  padding: 0;
}

figure.snip1208 h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: none;
  line-height: 1.3;
  transition: color 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

figure.snip1208:hover h3 {
  color: var(--color-secondary);
}

figure.snip1208 p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #666;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

figure.snip1208 button {
  border: none;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-primary), #0580b8);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(2, 94, 138, 0.3);
}

figure.snip1208 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

figure.snip1208 button:hover::before {
  left: 100%;
}

figure.snip1208 button:hover {
  background: linear-gradient(135deg, var(--color-secondary), #333);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

figure.snip1208 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

@media (max-width: 991px) {
  figure.snip1208 figcaption {
    padding: 20px 25px 25px;
  }

  figure.snip1208 h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  figure.snip1208:hover {
    transform: unset;
  }

  figure.snip1208 .image-frame {
    height: 180px;
  }

  figure.snip1208 figcaption {
    padding: 18px 20px 22px;
  }

  figure.snip1208 h3 {
    font-size: 1.2rem;
  }

  figure.snip1208 p {
    font-size: 0.9rem;
  }

  figure.snip1208 button {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  figure.snip1208 .date,
  figure.snip1208 i {
    min-height: 45px;
    min-width: 45px;
    top: 15px;
    right: 15px;
  }

  figure.snip1208 .date .day {
    font-size: 18px;
  }

  figure.snip1208 .date .month {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .news .cardz {
    margin-bottom: 20px;
  }

  figure.snip1208 {
    margin: 0 10px;
  }

  figure.snip1208 .image-frame {
    height: 160px;
  }

  figure.snip1208 figcaption {
    padding: 15px 18px 20px;
  }

  figure.snip1208 h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  figure.snip1208 p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  figure.snip1208 button {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  figure.snip1208 .date,
  figure.snip1208 i {
    min-height: 40px;
    min-width: 40px;
    top: 12px;
    right: 12px;
  }

  figure.snip1208 .date .day {
    font-size: 16px;
  }

  figure.snip1208 .date .month {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  figure.snip1208 {
    margin: 0 5px;
  }

  figure.snip1208 .image-frame {
    height: 140px;
  }

  figure.snip1208 figcaption {
    padding: 12px 15px 0px;
  }

  figure.snip1208 h3 {
    font-size: 1rem;
  }

  figure.snip1208 p {
    font-size: 0.8rem;
  }

  figure.snip1208 button {
    padding: 7px 14px;
    font-size: 0.7rem;
  }

  figure.snip1208 .date,
  figure.snip1208 i {
    min-height: 35px;
    min-width: 35px;
    top: 10px;
    right: 10px;
  }

  figure.snip1208 .date .day {
    font-size: 14px;
  }

  figure.snip1208 .date .month {
    font-size: 10px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  figure.snip1208,
  figure.snip1208 *,
  .news .cardz {
    transition: none;
    animation: none;
  }

  figure.snip1208:hover {
    transform: none;
  }

  figure.snip1208:hover img {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  figure.snip1208 {
    border: 2px solid var(--color-primary);
  }

  figure.snip1208 button {
    border: 2px solid var(--color-primary);
  }
}

/* Focus styles for accessibility */
figure.snip1208:focus-within {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

figure.snip1208 button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Modern Partners Section Styles */
.partners-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.partners-section .container {
  position: relative;
  z-index: 2;
}

/* Partners Grid for Desktop */
.partners-grid {
  --items: 5;
  --gap: 2rem;
}

.partner-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.partner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #0580b8 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-primary);
}

.partner-item:hover::before {
  transform: scaleX(1);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  position: relative;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0.8);
}

.partner-item:hover .partner-logo img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Mobile Carousel */
.partners-carousel {
  margin-top: 2rem;
}

.partners-carousel .partner-item {
  margin: 0 1rem;
  padding: 1.5rem;
}

.partners-carousel .partner-logo {
  height: 100px;
}

/* Carousel Navigation */

/* Responsive Design */
@media (max-width: 1200px) {
  .partners-grid {
    --gap: 1.5rem;
  }

  .partner-item {
    padding: 1.5rem;
  }

  .partner-logo {
    height: 100px;
  }
}

@media (max-width: 991px) {
  .partners-title {
    font-size: 2rem;
  }

  .partners-grid {
    --gap: 1rem;
  }

  .partner-item {
    padding: 1.25rem;
  }

  .partner-logo {
    height: 90px;
  }
}

@media (max-width: 767px) {
  .partners-title {
    font-size: 1.75rem;
  }

  .partners-subtitle {
    font-size: 1rem;
  }

  .partners-carousel .partner-item {
    margin: 6px;
    padding: 1rem;
  }

  .partners-carousel .partner-logo {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .partners-title {
    font-size: 1.5rem;
  }

  .partners-carousel .partner-item {
    padding: 0.75rem;
  }

  .partners-carousel .partner-logo {
    height: 70px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-item[data-aos="fade-up"] {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Loading States */
.partner-logo img {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Focus States for Accessibility */
.partner-item:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .partner-item {
    border: 2px solid #000;
  }

  .partner-logo img {
    filter: none;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .partner-item,
  .partner-logo img {
    transition: none;
  }

  .partner-item:hover {
    transform: none;
  }

  .partner-item:hover .partner-logo img {
    transform: none;
  }
}

/* Modern Courses Section Styles */
.courses-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.courses-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #00c7c6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.course-category {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-content {
  padding: 25px;
}

.course-title {
  margin-bottom: 15px;
}

.course-title a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.course-title a:hover {
  color: #00c7c6;
}

.course-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.course-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 500;
}

.course-meta i {
  color: var(--color-primary);
  font-size: 1rem;
}

.course-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), #00aaff);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.course-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.course-btn:hover::before {
  left: 100%;
}

.course-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.courses-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), #00aaff);
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .course-card {
    border-radius: 15px;
  }

  .course-content {
    padding: 20px;
  }

  .course-title a {
    font-size: 1.2rem;
  }

  .course-meta {
    gap: 15px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .courses-section .section-subtitle {
    font-size: 0.9rem;
  }

  .course-content {
    padding: 18px;
  }

  .course-title a {
    font-size: 1.1rem;
  }

  .course-description {
    font-size: 0.9rem;
  }

  .course-meta {
    flex-direction: column;
    gap: 10px;
  }

  .course-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Accessibility and Focus States */
.course-card:focus-within {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.course-btn:focus,
.btn-primary:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .course-card,
  .course-card:hover,
  .course-image img,
  .course-btn,
  .course-btn:hover,
  .btn-primary,
  .btn-primary:hover {
    transition: none;
    transform: none;
  }

  .course-btn::before,
  .btn-primary::before {
    display: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .course-card {
    border: 2px solid var(--color-primary);
  }

  .course-btn,
  .btn-primary {
    border: 2px solid var(--color-primary);
  }
}

/* Social Links Column Styles */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(2, 94, 138, 0.1), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: rgba(2, 94, 138, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(2, 94, 138, 0.2);
}

.social-link i {
  font-size: 18px;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 94, 138, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover i {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.social-link span {
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Social Media Specific Colors */
.social-link[aria-label="Facebook"]:hover {
  background: rgba(59, 89, 152, 0.1);
  border-color: #3b5998;
  color: #3b5998;
}

.social-link[aria-label="Facebook"]:hover i {
  background: #3b5998;
}

.social-link[aria-label="Twitter"]:hover {
  background: rgba(29, 161, 242, 0.1);
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link[aria-label="Twitter"]:hover i {
  background: #1da1f2;
}

.social-link[aria-label="LinkedIn"]:hover {
  background: rgba(0, 119, 181, 0.1);
  border-color: #0077b5;
  color: #0077b5;
}

.social-link[aria-label="LinkedIn"]:hover i {
  background: #0077b5;
}

.social-link[aria-label="Instagram"]:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #e1306c;
  color: #e1306c;
}

.social-link[aria-label="Instagram"]:hover i {
  background: #e1306c;
}

.social-link[aria-label="YouTube"]:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
  color: #ff0000;
}

.social-link[aria-label="YouTube"]:hover i {
  background: #ff0000;
}

/* Responsive Styles for Social Links */
@media (max-width: 991px) {
  .social-links {
    gap: 10px;
  }

  .social-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .social-link i {
    font-size: 16px;
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .social-links {
    gap: 8px;
  }

  .social-link {
    padding: 8px 12px;
    font-size: 12px;
  }

  .social-link i {
    font-size: 14px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .social-links {
    gap: 6px;
  }

  .social-link {
    padding: 6px 10px;
    font-size: 11px;
  }

  .social-link i {
    font-size: 12px;
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

/* Accessibility and Focus States for Social Links */
.social-link:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced Motion Support for Social Links */
@media (prefers-reduced-motion: reduce) {
  .social-link,
  .social-link:hover,
  .social-link i,
  .social-link:hover i,
  .social-link::before {
    transition: none;
    transform: none;
  }

  .social-link::before {
    display: none;
  }
}

/* High Contrast Mode Support for Social Links */
@media (prefers-contrast: high) {
  .social-link {
    border: 2px solid var(--color-primary);
  }

  .social-link:hover {
    border-width: 3px;
  }
}

.national-priorities-section {
  background: var(--color-light-blue, #f0f8ff);
}

.np-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.np-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(2, 94, 138, 0.08);
  padding: 32px 28px;
  max-width: 370px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.np-card:hover {
  box-shadow: 0 8px 32px rgba(2, 94, 138, 0.16);
}
.np-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.np-card-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-right: 16px;
  display: flex;
  align-items: center;
}
.np-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}
.np-card-desc {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.7;
}

/* Responsive styles */
@media (max-width: 991px) {
  .np-cards {
    /* flex-direction: column; */
    gap: 24px;
    /* align-items: center; */
  }
  .np-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .np-card {
    padding: 20px 12px;
  }
}

/* About Us Main Section Styles */
.about-us-main-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-us-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e3e3e3" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.about-us-main-section .container {
  position: relative;
  z-index: 2;
}

.about-us-content {
  padding-right: 30px;
}

.about-us-text {
  margin-top: 30px;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 25px;
  font-weight: 500;
}

.description-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

.about-us-image {
  position: relative;
  padding-left: 30px;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.rounded-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.image-container:hover .rounded-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 94, 138, 0.1) 0%, rgba(0, 199, 198, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .lead-text {
    font-size: 1rem;
  }

  .about-us-content {
    padding-right: 20px;
  }

  .about-us-image {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .about-us-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-us-image {
    padding-left: 0;
  }

  .image-container {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .lead-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .description-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-us-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .lead-text {
    font-size: 0.9rem;
  }

  .description-text {
    font-size: 0.85rem;
  }

  .image-container {
    border-radius: 15px;
  }
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us-content.wow.fadeInLeft {
  animation: fadeInUp 0.8s ease-out;
}

.about-us-image.wow.fadeInRight {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Accessibility and Focus States */

.image-container:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .about-us-main-section {
    background: #ffffff;
  }

  .lead-text,
  .description-text {
    color: #000000;
  }

  .image-container {
    border: 2px solid #000000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .image-container,
  .rounded-image,
  .image-overlay {
    transition: none;
  }

  .about-us-content.wow.fadeInLeft,
  .about-us-image.wow.fadeInRight {
    animation: none;
  }
}

.object-fit-cover {
  object-fit: cover;
}

/* Mission Vision Section - Modern Design */
.mission-vision-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.mission-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
  cursor: pointer;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.mission-card:hover .card-background {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  color: #fff;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.card-icon i {
  font-size: 32px;
  color: #fff;
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon i {
  transform: scale(1.1);
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover .card-title {
  transform: scale(1.05);
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover .card-description {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .mission-card {
    height: 386px;
  }

  .card-content {
    padding: 30px 25px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 28px;
  }

  .card-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .card-description {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .mission-card {
    height: 320px;
  }

  .card-content {
    padding: 25px 20px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .card-icon i {
    font-size: 24px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
  }

  .card-description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .mission-card {
    height: 300px;
  }

  .card-content {
    padding: 20px 15px;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .card-icon i {
    font-size: 22px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .card-description {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .mission-card {
    height: 280px;
    border-radius: 15px;
  }

  .card-content {
    padding: 15px 12px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .card-icon i {
    font-size: 20px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .card-description {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  .mission-card,
  .card-background,
  .card-icon,
  .card-icon i,
  .card-title,
  .card-description {
    transition: none;
  }

  .mission-card:hover {
    transform: none;
  }

  .mission-card:hover .card-background {
    transform: none;
  }

  .mission-card:hover .card-icon {
    transform: none;
  }

  .mission-card:hover .card-icon i {
    transform: none;
  }

  .mission-card:hover .card-title {
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .mission-card {
    border: 2px solid #000;
  }

  .card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
  }

  .card-icon {
    border: 3px solid #fff;
  }

  .card-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  }

  .card-description {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }
}

/* Focus states for accessibility */
.mission-card:focus-within {
  outline: 3px solid #007bff;
  outline-offset: 2px;
}

.card-content:focus {
  outline: none;
}

/* Print styles */
@media print {
  .mission-vision-section {
    background: #fff !important;
  }

  .mission-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .card-overlay {
    background: none !important;
  }

  .card-content {
    color: #000 !important;
  }

  .card-icon {
    background: #f0f0f0 !important;
    border: 1px solid #ccc !important;
  }

  .card-icon i {
    color: #333 !important;
  }

  .card-title {
    color: #000 !important;
    text-shadow: none !important;
  }

  .card-description {
    color: #333 !important;
    text-shadow: none !important;
  }
}

/* Vision Future Section */
.vision-future-section {
  background-color: #f8f9fa;
}

.vision-future-section .section-heading {
  text-align: left;
}

.vision-future-section .vision-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.vision-future-section .vision-quote {
  background-color: #e9f5ff;
  border-left: 5px solid var(--color-primary);
  padding: 25px 30px;
  margin-top: 30px;
  position: relative;
  border-radius: 8px;
}

.vision-future-section .vision-quote p {
  font-style: italic;
  font-size: 1.15rem;
  color: #002347;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* About PMKK  */
.pmkk-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}
/* .pmkk-section {
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://www.msde.gov.in/static/uploads/2025/07/657f5fd36831b92f128a3dbdc5a14181.png') 0 no-repeat;
  background-size: cover;
} */

.pmkk-section .pmkk-features {
  --items: 2;
  margin-top: 30px;
}

.pmkk-section .pmkk-feature-card {
  display: flex;
  background: white;
  border-radius: 12px;
  align-items: center;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pmkk-section .pmkk-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;

  transition: all 0.3s ease;
}

.pmkk-section .pmkk-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pmkk-section .pmkk-feature-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.pmkk-section .feature-icon {
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 94, 138, 0.1);
  border-radius: 50%;
  margin-right: 20px;
}

.pmkk-section .feature-icon i {
  font-size: 24px;
  color: var(--color-primary);
}

.pmkk-section .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.pmkk-section .feature-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 0;
}

/* Responsive styles */

@media (max-width: 767px) {
  .pmkk-section .pmkk-feature-card {
    padding: 20px;
  }

  .pmkk-section .feature-icon {
    min-width: 50px;
    height: 50px;
  }

  .pmkk-section .feature-icon i {
    font-size: 20px;
  }

  .pmkk-section .feature-content h4 {
    font-size: 16px;
  }

  .pmkk-section .feature-content p {
    font-size: 14px;
  }
}

/* About PMKK  */

/* Sectors & Job Roles */
.sectors-hexagon-section {
  background: linear-gradient(135deg, #003246 0%, #16243e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sectors-hexagon-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3N2Zz4=");
  opacity: 0.5;
  z-index: 0;
}

.sectors-hexagon-section .hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}

.sectors-hexagon-section .hex-item {
  position: relative;
  width: 250px;
  height: 280px;
  margin: 5px 15px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sectors-hexagon-section .hex-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 107 199 / 20%) 0%, rgba(2, 94, 138, 0.2) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.sectors-hexagon-section .hex-item:hover::before {
  opacity: 1;
}

.sectors-hexagon-section .hex-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.sectors-hexagon-section .hex-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  z-index: 1;
}

.sectors-hexagon-section .hex-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.sectors-hexagon-section .hex-item:hover .hex-icon {
  background: rgba(0, 199, 198, 0.3);
  transform: scale(1.1) rotate(360deg);
}

.sectors-hexagon-section .hex-icon i {
  font-size: 28px;
  color: #fff;
  transition: all 0.4s ease;
}

.sectors-hexagon-section .hex-item:hover .hex-icon i {
  color: #fff;
}

.sectors-hexagon-section .hex-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.sectors-hexagon-section .hex-details {
  opacity: 0.7;
  transition: all 0.3s ease;
  font-size: 14px;
}

.sectors-hexagon-section .hex-item:hover .hex-details {
  opacity: 1;
}

.sectors-hexagon-section .certification-badge {
  background: rgb(0 130 183 / 10%);
  border: 1px solid rgb(0 130 183 / 30%);
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.sectors-hexagon-section .certification-badge::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: rgba(0, 199, 198, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.sectors-hexagon-section .certification-badge::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: rgba(2, 94, 138, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.sectors-hexagon-section .certification-badge p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 991px) {
  .sectors-hexagon-section .hex-item {
    width: 220px;
    height: 250px;
    margin: 20px 10px;
  }
}

@media (max-width: 767px) {
  .sectors-hexagon-section .hex-item {
       width: 200px;
    height: 235px;
    margin: 15px auto;
  }

  .sectors-hexagon-section .hex-icon {
    width: 50px;
    height: 50px;
  }

  .sectors-hexagon-section .hex-icon i {
    font-size: 20px;
  }

  .sectors-hexagon-section .hex-content h4 {
    font-size: 16px;
  }

  .sectors-hexagon-section .hex-details p {
    font-size: 12px;
  }

  .sectors-hexagon-section .certification-badge {
    padding: 15px 20px;
  }

  .sectors-hexagon-section .certification-badge p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .sectors-hexagon-section .hex-grid {
    justify-content: center;
  }

  .sectors-hexagon-section .hex-item {
    width: 150px;
    height: 170px;
    margin: auto;
  }

  .sectors-hexagon-section .hex-content {
    padding: 15px;
  }

  .sectors-hexagon-section .hex-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .sectors-hexagon-section .hex-icon i {
    font-size: 18px;
  }

  .sectors-hexagon-section .hex-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .sectors-hexagon-section .hex-details p {
    font-size: 10px;
    line-height: 1.3;
  }
}
/* Sectors & Job Roles */

/* who can join */
.who-can-join-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  position: relative;
  overflow: hidden;
}

.who-can-join-section .eligibility-container {
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

.who-can-join-section .eligibility-wrapper {
  --items: 1;
  --gap: 25px;
  flex-direction: column;
}

.who-can-join-section .eligibility-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.who-can-join-section .eligibility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--color-primary);
}

.who-can-join-section .eligibility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.who-can-join-section .eligibility-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding: 20px;
  font-size: 28px;
  color: #000;
  transition: all 0.3s ease;
}

.who-can-join-section .eligibility-card:hover .eligibility-icon {
  color: var(--color-primary);
}

.who-can-join-section .eligibility-content {
  flex: 1;
  padding: 20px 20px 20px 0;
}

.who-can-join-section .eligibility-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.who-can-join-section .eligibility-card:hover .eligibility-content h4 {
  color: var(--color-primary);
}

/* Responsive styles */
@media (max-width: 991px) {
  .eligibility-container {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .who-can-join-section .eligibility-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .who-can-join-section .eligibility-card::before {
    width: 100%;
    height: 5px;
  }

  .who-can-join-section .eligibility-icon {
    width: 100%;
    padding: 20px 20px 0 20px;
  }

  .who-can-join-section .eligibility-content {
    padding: 15px 20px 20px 20px;
  }
  .who-can-join-section .eligibility-content h4 {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .who-can-join-section .eligibility-container {
    padding: 16px 0;
  }

  .who-can-join-section .apply-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}
/* who can join */

/* new testimonial */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section .testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonials-section .testimonial-card {
  min-width: 300px;
  max-width: 500px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.testimonials-section .testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #0082b7, #7bcefe);
  z-index: 2;
}

.testimonials-section .testimonial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgb(95 174 255 / 5%) 0%, rgb(123 194 254 / 5%) 100%);
  border-radius: 50%;
  z-index: -1;
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-section .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: rgb(0 130 183 / 20%);
  transition: all 0.3s ease;
}

.testimonials-section .testimonial-card:hover .quote-icon {
  transform: scale(1.2) rotate(10deg);
}

.testimonials-section .testimonial-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.testimonials-section .testimonial-content > p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonials-section .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonials-section .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background: linear-gradient(to right, #0082b7, #7bcefe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section .avatar-placeholder {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.testimonials-section .author-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.testimonials-section .author-info p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

/* Responsive styles */

@media (max-width: 767px) {
  .testimonials-section .testimonial-card {
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .testimonials-section .testimonial-card {
    padding: 25px 20px;
  }

  .testimonials-section .testimonial-content > p {
    font-size: 15px;
  }

  .testimonials-section .author-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonials-section .avatar-placeholder {
    font-size: 16px;
  }

  .testimonials-section .author-info h4 {
    font-size: 15px;
  }

  .testimonials-section .author-info p {
    font-size: 13px;
  }
}
/* new testimonial */

/* Join the Skill Movement Today */
.skill-movement-section {
  background: linear-gradient(135deg, rgba(2, 94, 138, 0.05) 0%, rgba(2, 94, 138, 0.15) 100%);
  position: relative;
  overflow: hidden;
}
.skill-movement-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(2, 94, 138, 0.1);
  z-index: 0;
}
.skill-movement-section::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(2, 94, 138, 0.1);
  z-index: 0;
}
.skill-movement-section .skill-movement-content {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 50px;
}

.skill-movement-section .skill-movement-actions {
  --gap: 25px;
  width: 100%;
}

.skill-movement-section .skill-movement-actions {
 --items: 2;
}
.skill-movement-section .skill-movement-actions-pmkvy { 
 --items: 3;
}
.skill-movement-section .action-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.skill-movement-section .action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.skill-movement-section .action-card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.skill-movement-section .action-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 94, 138, 0.1);
  border-radius: 50%;
  margin-right: 15px;
}
.skill-movement-section .action-icon i {
  font-size: 20px;
  color: var(--color-primary);
}
.skill-movement-section .action-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}
.skill-movement-section .action-link:hover {
  color: var(--color-primary);
}
.skill-movement-section .apply-now {
  position: relative;
}
.skill-movement-section .apply-now::after {
  content: "Free";
  position: absolute;
  top: calc(50% - 12px);
  right: -10px;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Responsive Styles */
@media (max-width: 991px) {
  .skill-movement-section .skill-movement-content {
    padding: 40px 30px;
  }
  .skill-movement-section .skill-movement-actions {
 --items: 2;
 justify-content: center;
}
}
@media (max-width: 767px) {
  .skill-movement-section .skill-movement-content {
    padding: 0px 20px;
  }
}
@media (max-width: 575px) {
  .skill-movement-section .action-card {
    padding: 20px 15px;
  }
  .skill-movement-section .action-icon {
    min-width: 40px;
    height: 40px;
  }
  .skill-movement-section .action-link {
    font-size: 14px;
  }
}
/* Join the Skill Movement Today */

/* Visit Our PMKK Center Today */

.visit-pmkk-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.visit-pmkk-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 94, 138, 0.1) 0%, rgba(2, 94, 138, 0) 70%);
  border-radius: 50%;
}
.visit-pmkk-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(2, 94, 138, 0.1) 0%, rgba(2, 94, 138, 0) 70%);
  border-radius: 50%;
}
.visit-pmkk-section .visit-pmkk-wrapper {
  position: relative;
  z-index: 1;
}
.visit-pmkk-section .visit-pmkk-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.visit-pmkk-section .contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.visit-pmkk-section .contact-info {
  flex: 1;
  min-width: 300px;
}
.visit-pmkk-section .info-item {
  display: flex;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.visit-pmkk-section .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: white;
}
.visit-pmkk-section .info-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 94, 138, 0.1);
  border-radius: 50%;
  margin-right: 15px;
}
.visit-pmkk-section .info-icon i {
  font-size: 20px;
  color: var(--color-primary);
}
.visit-pmkk-section .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-text-dark);
}
.visit-pmkk-section .info-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}
.visit-pmkk-section .info-content a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}
.visit-pmkk-section .info-content a:hover {
  color: var(--color-primary);
}
.visit-pmkk-section .map-placeholder {
  flex: 1;
  min-width: 300px;
  min-height: 300px;
  background: linear-gradient(135deg, #e6f7ff 0%, #ccf2ff 100%);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visit-pmkk-section .map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(2, 94, 138, 0.3);
}
.visit-pmkk-section .map-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-primary);
  animation: ripple 2s infinite;
}
.visit-pmkk-section .powered-by {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.visit-pmkk-section .powered-by h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text-dark);
}
.visit-pmkk-section .partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.visit-pmkk-section .partner-logo {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.visit-pmkk-section .partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(2, 94, 138, 0.05);
}
.visit-pmkk-section .partner-logo img {
  filter: unset;
}

@keyframes ripple {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
/* Responsive Styles */
@media (max-width: 991px) {
  .visit-pmkk-section .visit-pmkk-content {
    padding: 40px 30px;
  }
  .visit-pmkk-section .map-placeholder {
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .visit-pmkk-section .visit-pmkk-content {
    padding: 30px 20px;
  }
  .visit-pmkk-section .info-item {
    padding: 12px;
  }
  .visit-pmkk-section .info-content h4 {
    font-size: 16px;
  }
  .visit-pmkk-section .info-content p {
    font-size: 14px;
  }
  .visit-pmkk-section .partner-logo {
    padding: 8px 15px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .visit-pmkk-section .info-icon {
    min-width: 40px;
    height: 40px;
  }
  .visit-pmkk-section .info-icon i {
    font-size: 16px;
  }
  .visit-pmkk-section .map-placeholder {
    min-height: 200px;
  }
  .visit-pmkk-section .partner-logos {
    gap: 10px;
  }
  .visit-pmkk-section .partner-logo {
    padding: 6px 12px;
    font-size: 12px;
  }
}
/* Visit Our PMKK Center Today */

/* Why Institutional Capacity Matters - New Design */

.capacity-matters-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.capacity-matters-section .capacity-matters-content {
  max-width: 800px;
  margin: 0 auto;
}
.capacity-matters-section .capacity-matters-quote-container {
  position: relative;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
.capacity-matters-section .capacity-matters-quote-container:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.capacity-matters-section .quote-icon {
  position: absolute;
  top: -16px;
  left: 30px;
  fill: var(--color-primary);
  opacity: 0.2;
  transform: scale(2);
}
.capacity-matters-section .capacity-matters-quote p {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.capacity-matters-section .capacity-matters-description {
  text-align: center;
}
.capacity-matters-section .capacity-matters-description p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 0;
}
.capacity-matters-section .capacity-matters-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.capacity-matters-section .capacity-card {
  height: 280px;
  perspective: 1000px;
}
.capacity-matters-section .capacity-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.capacity-matters-section .capacity-card:hover .capacity-card-inner {
  transform: rotateY(180deg);
}
.capacity-matters-section .capacity-card-front,
.capacity-matters-section .capacity-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.capacity-matters-section .capacity-card-front {
  background: white;
}
.capacity-matters-section .capacity-card-back {
  background: var(--color-primary);
  color: white;
  transform: rotateY(180deg);
}
.capacity-matters-section .capacity-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 94, 138, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--color-primary);
}
.capacity-matters-section .capacity-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}
.capacity-matters-section .capacity-card-back p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .capacity-matters-section .capacity-matters-quote p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .capacity-matters-section .capacity-matters-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 576px) {
  .capacity-matters-section .capacity-matters-quote p {
    font-size: 18px;
  }
  .capacity-matters-section .capacity-matters-description p {
    font-size: 16px;
  }
  .capacity-matters-section .capacity-matters-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .capacity-matters-section .capacity-card {
    height: 250px;
  }
}
/* Why Institutional Capacity Matters - New Design */

/* Semiconductor Courses Section Styles */
.semiconductor-courses-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.semiconductor-courses-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}
.semiconductor-courses-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}
.semiconductor-courses-section .section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 30px;
}
.semiconductor-courses-section .courses-container {
  --gap: 30px;
  position: relative;
  z-index: 1;
}

.semiconductor-courses-section .course-card-inner {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.semiconductor-courses-section .course-card:hover .course-card-inner {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.semiconductor-courses-section .course-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.semiconductor-courses-section .course-card:hover .course-card-inner::before {
  transform: scaleX(1);
}
.semiconductor-courses-section .course-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.semiconductor-courses-section .course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
}
.semiconductor-courses-section .course-icon svg {
  width: 30px;
  height: 30px;
  fill: #3498db;
  transition: all 0.3s ease;
}
.semiconductor-courses-section .course-card:hover .course-icon svg {
  fill: #2980b9;
}
.semiconductor-courses-section .course-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.semiconductor-courses-section .course-card:hover .course-title {
  color: #3498db;
}
.semiconductor-courses-section .course-description {
  font-size: 0.95rem;
  color: #7f8c8d;
  margin-bottom: 20px;
  flex-grow: 1;
}
.semiconductor-courses-section .course-details {
  background: rgba(236, 240, 241, 0.5);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.semiconductor-courses-section .detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px dashed rgb(0 0 0 / 20%);
}
.semiconductor-courses-section .detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.semiconductor-courses-section .detail-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7f8c8d;
}
.semiconductor-courses-section .detail-value {
  font-size: 0.85rem;
  color: #2c3e50;
  font-weight: 500;
  text-align: right;
}
.semiconductor-courses-section .course-action {
  text-align: center;
}
.semiconductor-courses-section .btn-learn-more {
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.semiconductor-courses-section .btn-learn-more:hover {
  background: linear-gradient(90deg, #3498db, #2980b9);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Styles */

@media (max-width: 1199px) {
  .semiconductor-courses-section .courses-container {
    --items: 2;
  }
}

@media (max-width: 768px) {
  .semiconductor-courses-section .section-title {
    font-size: 2rem;
  }
  .semiconductor-courses-section .courses-container {
    --gap: 20px;
  }
}
@media (max-width: 576px) {
  .semiconductor-courses-section .section-title {
    font-size: 1.8rem;
  }
  .semiconductor-courses-section .section-subtitle {
    font-size: 1rem;
  }
  .semiconductor-courses-section .course-card-inner {
    padding: 20px;
  }
}

/* Semiconductor Courses Section Styles *


/* loader form */
.loading1 {
  position: fixed;
  z-index: 999;
  height: 5em;
  width: 5em;
  overflow: visible;
  margin: auto;
  top: -50px;
  left: -50px;
  bottom: 50px;
  right: 50px;
}

.loading1 div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  animation: loader 1.2s linear infinite;
  z-index: 1000;
}

.loading1 div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.loading1 div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.loading1 div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.loading1 div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.loading1 div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.loading1 div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.loading1 div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.loading1 div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.loading1 div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.loading1 div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.loading1 div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.loading1 div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes loader {
  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

/* Transparent Overlay */
.loading1:before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.loading1:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* loader form */

/* ======================Responsive Swiper====================== */
.responsive-swiper .swiper-slide {
  height: unset !important;
}

.responsive-swiper.prevnextpadding .swiper {
  padding-bottom: 40px !important;
}

.responsive-swiper .swiper-button-prev,
.responsive-swiper .swiper-button-next {
  position: absolute;
  top: calc(100% - 10px);
}
.responsive-swiper .swiper-button-prev {
  left: calc(50% - 40px);
}

.responsive-swiper .swiper-button-next {
  left: calc(50% + 10px);
}

.responsive-swiper .swiper-button-prev::after {
  background-image: url("../images/left_arrow.svg");
}
.responsive-swiper .swiper-button-next::after {
  background-image: url("../images/right_arrow.svg");
}

.responsive-swiper .swiper-button-prev::after,
.responsive-swiper .swiper-button-next::after {
  content: "";
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 29px;
  height: 20px;
}
.responsive-swiper.whitearrow .swiper-button-prev::after,
.responsive-swiper.whitearrow .swiper-button-next::after {
  filter: invert(1);
}
.responsive-swiper .swiper .common-carditem {
  width: 100%;
  height: 100%;
}
/* ======================Responsive Swiper====================== */

/* Banner New */
.home-banner-main {
  padding: 0;
  color: #fff;
}
.home-banner-swiper {
  position: relative;
}
.home-banner-main .slide-item {
  position: relative;
  width: 100%;
  /* height: calc(100vh - 100px); */
  height: calc(100vh - 160px);
  min-height: 550px;
  align-content: center;
}
.home-banner-main .slide-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.home-banner-main .slide-background .slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100%;
}
.home-banner-main .slide-background .mobile {
  display: none;
}

.slide-item .inner-content {
  max-width: 60%;
}
.slide-item .slide-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.slide-item .slide-desc {
  font-size: 1.3rem;
  font-weight: 400;
}
.slide-item .rightbottomtext{
     position: absolute;
    right: 0;
    bottom: 0;
   padding: 0 15px 40px 0;
    text-align: end;
   color: rgba(255 255 255 / 60%);
    font-weight: 500;
    text-transform: uppercase;
    display: none;
}
.slide-item .rightbottomtext .person-name{
font-size: 18px;
}
.slide-item .rightbottomtext .person-position{
  font-size: 14px;
 margin-bottom: 0;
}

.swiper-paginationdots .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  margin-bottom: 0;
  position: absolute;
  bottom: 24px;
  left: 0;
}
.swiper-paginationdots .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 10px;
  margin-right: 10px;
  display: block;
 opacity: 0.9;
  cursor: pointer;
}
.swiper-paginationdots .swiper-pagination-bullet-active {
  background-color: #005d89 !important;
  width: 25px !important;
}
.swiper-paginationdots .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}


@media (max-width: 1399px) {
  .slide-item .slide-heading {
    font-size: 2rem;
  }
  .slide-item .slide-desc {
    font-size: 1.1rem;
  }
  .modern-cta-btn {
    padding: 12px 18px;
  }
}

@media (max-width: 991px) {
  .slide-item .inner-content {
    max-width: 75%;
  }
  .home-banner-main .slide-1 .slide-background .desktop{
    object-position: 85%;
  }
  .home-banner-main .slide-2 .slide-background .desktop{
    object-position: 100%;
  }
  .home-banner-main .slide-3 .slide-background .desktop{
    object-position: 90%;
  }
  .home-banner-main .slide-4 .slide-background .desktop{
    object-position: 75%;
  }
}

@media (max-width: 767px) {
  .slide-item .slide-heading {
    font-size: 1.5rem;
  }
  .modern-cta-btn {
    padding: 10px 15px;
  }
}

@media (max-width: 575px) {
  .home-banner-main .slide-item{
    align-content: unset;
  }
  .home-banner-main .slide-background .mobile {
    display: block;
  }
  .home-banner-main .slide-background .desktop {
    display: none;
  }
  .slide-item .inner-content {
    max-width: 100%;
    padding-top: 80px;
  }
    .slide-item .rightbottomtext{
    display: block;
  }
  .slide-item .slide-desc {
     overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.slide-item .slide-heading{
        overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
}

@media (max-width: 375px) {
    .slide-item .inner-content {
    padding-top: 60px;
  }
}

/* Banner New */

.readmore-btn {
  /* position: absolute;
  bottom: 0;
  right: 0; */
  font-size: inherit !important;
  text-decoration: none !important;
}

.policy-container{
  padding: 50px 0;
}
.policy-container h4{
  font-size: 20px;
  font-weight: 600;
}
.policy-container h5{
  font-size: 18px;
  font-weight: 600;
}
.policy-container ol{
  list-style-type: none;
}
.policy-container li {
 line-height: 1.6;
}
.policy-container .lastupdate{
  margin-bottom: 10px;
}