:root {
  --medical-blue: #1a7ab8;
  --nursing-teal: #2aa9a3;
  --light-bg: #f8fafc;
  --dark-text: #2d3748;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: white;
  color: var(--dark-text);
  padding-top: 100px;
  /* To compensate for large initial logo */
}

/* ----- Header Styles ----- */
.navbar {
  background: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-brand {
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: all 0.3s ease;
  height: 150px;
  /* Initial large size */
}

.navbar.shrink .navbar-brand img {
  height: 85px;
  /* Smaller size after scroll */
}

/* Navigation Links */
.nav-link {
  color: var(--dark-text) !important;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 8px;
  position: relative;
  padding: 8px 12px !important;
}



.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
  left: 50%;
}

nav .active {
  color: #ee7d21 !important;
}

.nav-link:hover {
  color: #ee7d21 !important;
}

/* Contact Button - Medical Style */
.contact-btn {
  background: linear-gradient(135deg, var(--medical-blue), var(--nursing-teal));
  color: white !important;
  border-radius: 8px;
  padding: 10px 24px !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(26, 122, 184, 0.3);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.contact-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: 0.5s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 122, 184, 0.4);
}

.contact-btn:hover::before {
  left: 100%;
}

/* Mobile Menu */
@media (max-width: 991px) {
  body {
    padding-top: 90px;
    /* Adjusted for mobile */
  }

  .navbar-brand img {
    height: 60px;
    /* Slightly smaller initial size for mobile */
  }

  .navbar.shrink .navbar-brand img {
    height: 40px;
  }

  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .nav-link {
    margin: 6px 0;
    padding: 12px 16px !important;
    border-radius: 6px;
  }

  .nav-link:hover {
    background: var(--light-bg);
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}


:root {
  --medical-blue: #1a7ab8;
  --nursing-teal: #2aa9a3;
  --light-bg: #f8fafc;
  --dark-text: #2d3748;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Hero Slider Container */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Slider Items */
.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.slider-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Content Styling */
.slider-content {
  max-width: 800px;
  padding: 0 40px;
  color: white;
  transform: translateY(50px);
  transition: transform 0.8s 0.3s;
}

.slider-item.active .slider-content {
  transform: translateY(0);
}

.slider-subtitle {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s 0.4s;
}

.slider-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s 0.6s;
}

.slider-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s 0.8s;
}

.slider-btn {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, #ed7c20, #ed7c20);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(26, 122, 184, 0.3);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s 1s, background 0.3s;
}

.slider-btn:hover {
  background: linear-gradient(135deg, var(--nursing-teal), var(--medical-blue));
  color: white;
  transform: translateY(30px) scale(1.05);
}

.slider-item.active .slider-subtitle,
.slider-item.active .slider-title,
.slider-item.active .slider-text,
.slider-item.active .slider-btn {
  transform: translate(0);
  opacity: 1;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
}

.slider-dot {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .slider-title {
    font-size: 2.8rem;
  }

  .slider-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .slider-title {
    font-size: 2.2rem;
  }

  .slider-subtitle {
    font-size: 1rem;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Animation for gradient background */
.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a7ab8, #2aa9a3, #1a7ab8);
  background-size: 300% 300%;
  animation: gradientMove 15s ease infinite;
  z-index: -2;
  opacity: 0.3;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

:root {
  --scon-orange: #FF7E33;
  --scon-blue: #0D1B3E;
  --scon-light: #F8F9FA;
  --scon-gray: #6C757D;
}

/* Base Styles */
.about-root {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
}

/* Hero Header */
.about-hero {
  background: linear-gradient(rgba(13, 27, 62, 0.8), rgba(13, 27, 62, 0.9)),
    url('https://images.unsplash.com/photo-1581093450021-4a7360e9a7b8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center/cover;
  padding: 120px 0 80px;
  color: white;
  position: relative;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--scon-light);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Timeline Style About Section */
.about-timeline {
  position: relative;
  padding: 100px 0;
  background: var(--scon-light);
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--scon-orange);
}

.about-timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}

.about-timeline-item:nth-child(odd) .about-timeline-content {
  margin-left: auto;
  text-align: right;
  padding-right: 80px;
  padding-left: 0;
}

.about-timeline-item:nth-child(even) .about-timeline-content {
  padding-left: 80px;
}

.about-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--scon-orange);
  border: 5px solid var(--scon-light);
  box-shadow: 0 0 0 4px var(--scon-orange);
  z-index: 1;
}

.about-timeline-content {
  width: calc(50% - 40px);
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(13, 27, 62, 0.1);
  transition: all 0.3s ease;
}

.about-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13, 27, 62, 0.15);
}

.about-timeline-year {
  display: inline-block;
  padding: 5px 15px;
  background: var(--scon-orange);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-timeline-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--scon-blue);
  margin-bottom: 15px;
}

/* Mission/Vision Cards */
.about-mission-cards {
  padding: 80px 0;
  background: white;
}

.about-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.1);
  transition: all 0.4s;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(13, 27, 62, 0.2);
}

.about-card-header {
  background: var(--scon-blue);
  color: white;
  padding: 20px;
  position: relative;
}

.about-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 40px;
  height: 40px;
  background: var(--scon-blue);
  transform: rotate(45deg);
  z-index: 0;
}

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--scon-orange);
}

.about-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.about-card-body {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.about-card-highlight {
  background: rgba(255, 126, 51, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid var(--scon-orange);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-timeline::before {
    left: 40px;
  }

  .about-timeline-item:nth-child(odd) .about-timeline-content,
  .about-timeline-item:nth-child(even) .about-timeline-content {
    width: calc(100% - 90px);
    margin-left: 80px;
    text-align: left;
    padding: 25px;
    padding-left: 80px;
  }

  .about-timeline-dot {
    left: 40px;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }
}

.about_section_container {
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about_section_content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about_section_text {
  padding-right: 60px;
}

.about_section_subtitle {
  color: #FF7E33;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.about_section_subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FF7E33;
}

.about_section_title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0D1B3E;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about_section_description {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.about_section_image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(13, 27, 62, 0.15);
  transition: transform 0.5s;
  height: 500px;
  object-fit: cover;
}

.about_section_image:hover {
  transform: scale(1.03);
}

.about_section_button {
  display: inline-flex;
  align-items: center;
  background: #FF7E33;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 10px 25px rgba(255, 126, 51, 0.3);
  border: none;
}

.about_section_button:hover {
  background: #0D1B3E;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 51, 0.4);
}

.about_section_button i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.about_section_button:hover i {
  transform: translateX(5px);
}

.about_section_decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 126, 51, 0.1);
  z-index: 1;
}

.about_section_decoration-1 {
  top: -150px;
  right: -150px;
}

.about_section_decoration-2 {
  bottom: -100px;
  left: -100px;
  background: rgba(13, 27, 62, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about_section_content {
    flex-direction: column;
  }

  .about_section_text {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .about_section_subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about_section_title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .about_section_container {
    padding: 70px 0;
  }

  .about_section_title {
    font-size: 2rem;
  }

  .about_section_description {
    font-size: 1rem;
  }

  .about_section_image {
    height: 350px;
  }
}

.nc-quick-access-2 {
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center/cover;
  position: relative;
  overflow: hidden;
}

.nc-quick-access-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 62, 0.85);
  /* Dark blue overlay */
  z-index: 0;
}

.nc-qa-container {
  position: relative;
  z-index: 2;
}

.nc-qa-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: white;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nc-qa-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #FF7E33;
  /* Orange */
  border-radius: 2px;
}

.nc-qa-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 35px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.nc-qa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF7E33, #FF9E66);
  /* Orange gradient */
  transition: height 0.3s;
}

.nc-qa-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.nc-qa-card:hover::before {
  height: 8px;
}

.nc-qa-icon {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  display: inline-block;
}

.nc-qa-icon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #FF7E33;
  /* Orange */
  border-radius: 3px;
}

.nc-qa-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.nc-qa-card-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.nc-qa-link {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 20px;
  background: rgba(255, 126, 51, 0.2);
  /* Orange with opacity */
  border-radius: 50px;
  border: 1px solid rgba(255, 126, 51, 0.4);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.nc-qa-link:hover {
  background: rgba(255, 126, 51, 0.4);
  /* Orange with more opacity */
  color: white;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 126, 51, 0.3);
}

.nc-qa-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.nc-qa-link:hover i {
  transform: translateX(5px);
}

/* Floating Particles */
.nc-qa-particle {
  position: absolute;
  background: rgba(255, 126, 51, 0.6);
  /* Orange */
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .nc-qa-title {
    font-size: 2.2rem;
  }

  .nc-qa-card {
    margin-bottom: 25px;
    padding: 25px;
  }
}

/* Animation Classes */
.nc-fade-in {
  animation: ncFadeIn 1s forwards;
  opacity: 0;
}

@keyframes ncFadeIn {
  to {
    opacity: 1;
  }
}

.nc-delay-1 {
  animation-delay: 0.2s;
}

.nc-delay-2 {
  animation-delay: 0.4s;
}

.nc-delay-3 {
  animation-delay: 0.6s;
}

.news_section_container {
  padding: 10px 0;
  /* background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%); */
  position: relative;
  overflow: hidden;
}

.news_section_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.news_section_title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.news_section_subtitle {
  color: #FF7E33;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.news_section_subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #FF7E33;
}

.news_section_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news_section_card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.1);
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news_section_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(13, 27, 62, 0.15);
}

.news_section_card_image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.news_section_card_body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news_section_card_badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news_section_card_badge.updates {
  background: rgba(26, 188, 156, 0.1);
  color: #1ABC9C;
}

.news_section_card_badge.events {
  background: rgba(52, 152, 219, 0.1);
  color: #3498DB;
}

.news_section_card_badge.news {
  background: rgba(155, 89, 182, 0.1);
  color: #9B59B6;
}

.news_section_card_title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news_section_card_date {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.news_section_card_date i {
  margin-right: 8px;
  color: #FF7E33;
}

.news_section_card_text {
  color: #4A5568;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news_section_card_link {
  color: #FF7E33;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.news_section_card_link:hover {
  color: #0D1B3E;
  transform: translateX(5px);
}

.news_section_card_link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.news_section_card_link:hover i {
  transform: translateX(5px);
}

.news_section_view_all {
  text-align: center;
  margin-top: 50px;
}

.news_section_view_all_btn {
  display: inline-flex;
  align-items: center;
  background: #0D1B3E;
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(13, 27, 62, 0.2);
}

.news_section_view_all_btn:hover {
  background: #FF7E33;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 126, 51, 0.3);
  color: white;
}

.news_section_view_all_btn i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.news_section_view_all_btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .news_section_title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .news_section_container {
    padding: 70px 0;
  }

  .news_section_title {
    font-size: 2rem;
  }

  .news_section_grid {
    grid-template-columns: 1fr;
  }
}

.programs_section_container {
  padding: 100px 0;
  background: #fbfdff;
  position: relative;
  overflow: hidden;
}

.programs_section_header {
  text-align: center;
  margin-bottom: 60px;
}

.programs_section_title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0D1B3E;
  margin-bottom: 15px;
}

.programs_section_subtitle {
  color: #FF7E33;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.programs_section_subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #FF7E33;
}

.programs_section_tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.programs_section_tab {
  padding: 12px 25px;
  background: #F8F9FA;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.programs_section_tab.active {
  background: #0D1B3E;
  color: white;
}

.programs_section_tab:hover:not(.active) {
  background: #E2E8F0;
}

.programs_section_content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.programs_section_content.active {
  display: block;
}

.programs_section_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s;
  border-left: 4px solid #FF7E33;
}

.programs_section_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13, 27, 62, 0.15);
}

.programs_section_card_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 20px;
}

.programs_section_card_years {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.programs_section_year {
  flex: 1;
  min-width: 250px;
}

.programs_section_year_title {
  font-weight: 600;
  color: #FF7E33;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px dashed #E2E8F0;
}

.programs_section_subjects {
  columns: 2;
  column-gap: 30px;
}

.programs_section_subject {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  break-inside: avoid;
}

.programs_section_subject::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: #FF7E33;
  position: absolute;
  left: 0;
  top: 5px;
}

.programs_section_note {
  font-size: 0.9rem;
  color: #718096;
  margin-top: 20px;
  font-style: italic;
}

.programs_section_button {
  display: inline-flex;
  align-items: center;
  background: #FF7E33;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 20px;
}

.programs_section_button:hover {
  background: #0D1B3E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 126, 51, 0.3);
  color: white;
}

.programs_section_button i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.programs_section_button:hover i {
  transform: translateX(5px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .programs_section_title {
    font-size: 2.3rem;
  }

  .programs_section_subjects {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .programs_section_container {
    padding: 70px 0;
  }

  .programs_section_title {
    font-size: 2rem;
  }

  .programs_section_tabs {
    flex-direction: column;
    align-items: center;
  }
}

:root {
  --KeyFeatures-primary: #FF6B35;
  /* Vibrant orange */
  --KeyFeatures-secondary: #1A2E4D;
  /* Dark blue */
  --KeyFeatures-light: #F7F9FC;
  --KeyFeatures-accent: #FFD166;
}

.KeyFeatures_section {
  background: linear-gradient(135deg, #002c52 0%, #022240 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.KeyFeatures_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80') no-repeat center center/cover;
  opacity: 0.08;
  z-index: 0;
}

.KeyFeatures_section_heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}




.KeyFeatures_container {
  position: relative;
  z-index: 2;
}

.KeyFeatures_feature {
  position: relative;
  margin-bottom: 30px;
  perspective: 1000px;
}

.KeyFeatures_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(26, 46, 77, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transform-style: preserve-3d;
}

.KeyFeatures_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--KeyFeatures-primary), var(--KeyFeatures-accent));
  transition: all 0.4s ease;
}

.KeyFeatures_card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(26, 46, 77, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.KeyFeatures_card:hover::before {
  height: 10px;
}

.KeyFeatures_icon_wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #011A2F, #002C53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.KeyFeatures_card:hover .KeyFeatures_icon_wrapper {
  transform: rotateY(180deg) scale(1.1);
}

.KeyFeatures_icon {
  color: white;
  font-size: 2.2rem;
  transition: all 0.4s ease;
}

.KeyFeatures_card:hover .KeyFeatures_icon {
  transform: rotateY(-180deg);
}

.KeyFeatures_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--KeyFeatures-secondary);
  position: relative;
  padding-bottom: 10px;
}

.KeyFeatures_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--KeyFeatures-primary);
  transition: all 0.4s ease;
}

.KeyFeatures_card:hover .KeyFeatures_title::after {
  width: 80px;
  background: var(--KeyFeatures-accent);
}

.KeyFeatures_text {
  color: #5E6E82;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.KeyFeatures_learn_more {
  display: inline-flex;
  align-items: center;
  color: var(--KeyFeatures-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.KeyFeatures_learn_more i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.KeyFeatures_learn_more:hover {
  color: var(--KeyFeatures-secondary);
}

.KeyFeatures_learn_more:hover i {
  transform: translateX(5px);
}

/* Floating elements */
.KeyFeatures_floating {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.KeyFeatures_floating-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--KeyFeatures-primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 15s ease-in-out infinite;
}

.KeyFeatures_floating-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: var(--KeyFeatures-secondary);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .KeyFeatures_section_heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .KeyFeatures_section_heading {
    font-size: 2.2rem;
  }

  .KeyFeatures_icon_wrapper {
    width: 70px;
    height: 70px;
  }
}

.GalleryTour_section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.GalleryTour_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80') no-repeat center center/cover;
  opacity: 0.03;
  z-index: 0;
}

.GalleryTour_heading {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1A2E4D;
  text-align: center;
  position: relative;
}

.GalleryTour_subheading {
  font-size: 1.2rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
}

.GalleryTour_heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #FFD166);
  border-radius: 2px;
}

.GalleryTour_tabs {
  justify-content: center;
  margin-bottom: 40px;
  border: none;
  position: relative;
  z-index: 1;
}

.GalleryTour_tabs .nav-link {
  color: #495057 !important;
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  margin: 0 5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

.GalleryTour_tabs .nav-link.active {
  color: white !important;
  background: linear-gradient(90deg, #FF6B35, #FF8C42);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.GalleryTour_tabs .nav-link:not(.active):hover {
  color: #FF6B35;
}

.GalleryTour_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 1;
}

.GalleryTour_item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  aspect-ratio: 4/3;
}

.GalleryTour_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.GalleryTour_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.GalleryTour_item:hover .GalleryTour_img {
  transform: scale(1.05);
}

.GalleryTour_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 46, 77, 0.9), transparent);
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
}

.GalleryTour_item:hover .GalleryTour_overlay {
  transform: translateY(0);
  opacity: 1;
}

.GalleryTour_title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.GalleryTour_category {
  font-size: 0.9rem;
  opacity: 0.8;
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 20px;
}

.GalleryTour_virtual {
  position: relative;
  grid-column: span 2;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(rgba(26, 46, 77, 0.7), rgba(26, 46, 77, 0.7)), url('images/campus.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  color: white;
  overflow: hidden;
}

.GalleryTour_virtual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(26, 46, 77, 0.8) 100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.GalleryTour_virtual:hover::after {
  opacity: 1;
}

.GalleryTour_virtual i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: white;
  transition: all 0.3s ease;
}

.GalleryTour_virtual h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.GalleryTour_virtual p {
  font-size: 1.1rem;
  max-width: 600px;
  text-align: center;
  margin-bottom: 25px;
  opacity: 0.9;
}

.GalleryTour_virtual_btn {
  padding: 12px 30px;
  background: linear-gradient(90deg, #FF6B35, #FF8C42);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.GalleryTour_virtual_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

@media (max-width: 992px) {
  .GalleryTour_gallery {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .GalleryTour_virtual {
    grid-column: span 1;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .GalleryTour_heading {
    font-size: 2.5rem;
  }

  .GalleryTour_tabs .nav-link {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

.testimonials_section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials_section_title {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}

.testimonials_section_title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d2b3a;
  position: relative;
  z-index: 1;
}

.testimonials_section_title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background: #ee7d21;
  border-radius: 2px;
  transform: translateX(-50%);
}

.testimonials_section_subtitle {
  color: #ee7d21;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.testimonial_card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border: none;
}

.testimonial_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #002c52, #ee7d21);
}

.testimonial_quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial_quote::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -20px;
  color: rgba(108, 99, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial_author {
  display: flex;
  align-items: center;
}

.testimonial_author_img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #6c63ff;
}

.testimonial_author_name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #002c53;
}

.testimonial_author_role {
  color: #ed7d20;
  font-size: 0.9rem;
}

.companies_section {
  margin-top: 80px;
}

.companies_section_title {
  text-align: center;
  margin-bottom: 40px;
}

.companies_section_title h3 {
  font-weight: 700;
  color: #2d2b3a;
  position: relative;
  display: inline-block;
}

.companies_section_title h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #6c63ff;
  border-radius: 2px;
}

.company_logo {
  height: 60px;
  margin: 15px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.company_logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.stats_container {
  margin-top: 60px;
}

.stat_card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.stat_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat_number {
  font-size: 3rem;
  font-weight: 700;
  color: #ed7d20;
  margin-bottom: 10px;
  line-height: 1;
}

.stat_label {
  color: #555;
  font-size: 1rem;
  font-weight: 500;
}

.floating_shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.shape_1 {
  top: 10%;
  left: 5%;
  width: 150px;
  animation: float 6s ease-in-out infinite;
}

.shape_2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Animation classes */
.animate_delay_1 {
  animation-delay: 0.2s;
}

.animate_delay_2 {
  animation-delay: 0.4s;
}

.animate_delay_3 {
  animation-delay: 0.6s;
}

.footer_section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  /* Dark blue gradient */
  color: #fff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff7e33 0%, #ff5200 100%);
  /* Orange gradient */
}

.footer_wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ff7e33"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ff7e33"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ff7e33"></path></svg>') repeat-x;
  background-size: 1200px 50px;
  animation: wave 10s linear infinite;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1200px;
  }
}

.footer_logo {
  max-width: 150px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.footer_logo:hover {
  transform: scale(1.05);
}

.footer_about_text {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer_heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer_heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff7e33 0%, #ff5200 100%);
  /* Orange gradient */
  border-radius: 3px;
}

.footer_links_list {
  list-style: none;
  padding: 0;
}

.footer_links_list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.footer_links_list li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff7e33;
  /* Orange */
  transition: all 0.3s ease;
}

.footer_links_list li a {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer_links_list li:hover {
  transform: translateX(5px);
}

.footer_links_list li:hover a {
  color: #fff;
}

.footer_links_list li:hover::before {
  color: #ff5200;
  /* Darker orange */
}

.footer_contact_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer_contact_icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 126, 51, 0.1);
  /* Orange with opacity */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #ff7e33;
  /* Orange */
  transition: all 0.3s ease;
}

.footer_contact_item:hover .footer_contact_icon {
  background: linear-gradient(135deg, #ff7e33 0%, #ff5200 100%);
  /* Orange gradient */
  color: #fff;
  transform: rotate(10deg);
}

.footer_contact_text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer_contact_text p {
  color: #b8b8b8;
  margin: 0;
  font-size: 0.9rem;
}

.footer_social_links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.footer_social_link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(238, 123, 31);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer_social_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff7e33 0%, #ff5200 100%);
  /* Orange gradient */
  transition: all 0.3s ease;
  z-index: -1;
}

.footer_social_link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 126, 51, 0.3);
  /* Orange shadow */
}

.footer_social_link:hover::before {
  left: 0;
}

.footer_newsletter_form {
  position: relative;
  margin-top: 20px;
}

.footer_newsletter_input {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.footer_newsletter_input::placeholder {
  color: #b8b8b8;
}

.footer_newsletter_btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: linear-gradient(135deg, #ff7e33 0%, #ff5200 100%);
  /* Orange gradient */
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 7px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer_newsletter_btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 126, 51, 0.4);
  /* Orange shadow */
}

.footer_bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  margin-top: 50px;
}

.footer_copyright {
  color: #b8b8b8;
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
}

.footer_copyright a {
  color: #ff7e33;
  /* Orange */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_copyright a:hover {
  color: #ff5200;
  /* Darker orange */
  text-decoration: underline;
}

/* Floating Elements */
.footer_floating_element {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.footer_floating_element_1 {
  top: 20%;
  left: 5%;
  width: 100px;
  animation: float 8s ease-in-out infinite;
}

.footer_floating_element_2 {
  bottom: 20%;
  right: 5%;
  width: 80px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .footer_section {
    padding: 60px 0 0;
  }

  .footer_heading {
    margin-top: 30px;
  }

  .footer_wave {
    top: -30px;
    height: 30px;
  }
}

.eligibility_page {
  font-family: 'Poppins', sans-serif;
  color: #292929;
  background-color: #F7F7F7;
  overflow-x: hidden;
}

/* Hero Section Styles */
.eligibility_page_hero {
  background: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%),
    url('https://images.unsplash.com/photo-1581056771107-24ca5f033842?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.eligibility_page_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 30%);
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.eligibility_page_hero_title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.eligibility_page_hero_title span {
  color: #FFD700;
  position: relative;
}

.eligibility_page_hero_title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FF6B35;
  animation: underline 2s infinite;
}

@keyframes underline {
  0% {
    width: 0%;
    left: 50%;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0%;
    left: 0;
  }
}

.eligibility_page_hero_subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.eligibility_page_hero_btn {
  background-color: #FF6B35;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: white;
}

.eligibility_page_hero_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.eligibility_page_hero_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: 0.5s;
}

.eligibility_page_hero_btn:hover::before {
  left: 100%;
}

.eligibility_page_hero_scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Content Sections */
.eligibility_page_section {
  padding: 100px 0;
}

.eligibility_page_section_title {
  color: #004E89;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}

.eligibility_page_section_title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 80px;
  height: 4px;
  background-color: #FF6B35;
  animation: lineGrow 1s ease-out;
}

@keyframes lineGrow {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

.eligibility_page_card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 78, 137, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 30px;
  background-color: white;
  transform: translateY(50px);
  opacity: 0;
  animation: cardAppear 0.8s forwards;
}

@keyframes cardAppear {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.eligibility_page_card:nth-child(2) {
  animation-delay: 0.2s;
}

.eligibility_page_card:nth-child(3) {
  animation-delay: 0.4s;
}

.eligibility_page_card:nth-child(4) {
  animation-delay: 0.6s;
}

.eligibility_page_card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 78, 137, 0.2);
}

.eligibility_page_card_header {
  background: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
  color: white;
  font-weight: 600;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eligibility_page_card_header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.eligibility_page_card_body {
  padding: 30px;
}

.eligibility_page_list_item {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.eligibility_page_list_item:hover {
  transform: translateX(10px);
}

.eligibility_page_list_item::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #FF6B35;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
}

.eligibility_page_subject_item {
  background-color: rgba(0, 78, 137, 0.05);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.eligibility_page_subject_item:hover {
  background-color: rgba(0, 78, 137, 0.1);
  transform: translateX(8px);
  border-left: 4px solid #FF6B35;
}

@media (max-width: 768px) {
  .eligibility_page_hero {
    padding: 100px 0;
    background-attachment: scroll;
  }

  .eligibility_page_hero_title {
    font-size: 2.5rem;
  }

  .eligibility_page_hero_subtitle {
    font-size: 1.2rem;
  }

  .eligibility_page_section {
    padding: 60px 0;
  }
}

.facilities_page {
  font-family: 'Poppins', sans-serif;
  color: #292929;
  background-color: #F7F7F7;
  overflow-x: hidden;
}

/* Hero Section */
.facilities_page_hero {
  background: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%),
    url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0 150px;
  position: relative;
  overflow: hidden;
}

.facilities_page_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.4) 0%, transparent 40%);
  animation: pulse 12s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.facilities_page_hero_title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.facilities_page_hero_title span {
  display: inline-block;
  position: relative;
}

.facilities_page_hero_title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
  animation: highlight 4s infinite;
}

@keyframes highlight {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

.facilities_page_hero_subtitle {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 50px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Facilities Section */
.facilities_page_section {
  padding: 100px 0;
}

.facilities_page_section_title {

  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}

.facilities_page_section_title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #004E89 0%, #FF6B35 100%);
  border-radius: 5px;
  animation: lineGrow 1.5s ease-out;
}

@keyframes lineGrow {
  from {
    width: 0;
  }

  to {
    width: 100px;
  }
}

/* Facility Cards */
.facilities_page_facility_card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 78, 137, 0.1);
  transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 40px;
  background-color: white;
  transform: translateY(50px);
  opacity: 0;
}

.facilities_page_facility_card.appear {
  animation: cardRise 0.8s forwards;
}

@keyframes cardRise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.facilities_page_facility_card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 30px 50px rgba(0, 78, 137, 0.2);
}

.facilities_page_facility_card_header {
  background: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
  color: white;
  font-weight: 600;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.facilities_page_facility_card_header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.6s;
}

.facilities_page_facility_card:hover .facilities_page_facility_card_header::after {
  left: 100%;
}

.facilities_page_facility_card_icon {
  font-size: 2rem;
  color: #EE7D21;
  transition:all 0.3s ease;
  background-color: #002c53;
  padding:20px;
  margin:10px;
  border-radius:50%;
}

.facilities_page_facility_card:hover .facilities_page_facility_card_icon {
  transform: scale(1.2) rotate(10deg);
}

.facilities_page_facility_card_body {
  padding: 30px;
  position: relative;
}

.facilities_page_facility_card_body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF9E1B 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.facilities_page_facility_card:hover .facilities_page_facility_card_body::before {
  transform: scaleX(1);
}

.facilities_page_facility_card_title {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.facilities_page_facility_card:hover .facilities_page_facility_card_title {
  color: #FF6B35;
}

.facilities_page_facility_card_text {
  margin-bottom: 20px;
}

.facilities_page_highlight_item {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.facilities_page_highlight_item::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #FF6B35;
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.facilities_page_highlight_item:hover::before {
  transform: translateX(5px);
}

/* Hospital Section */
.facilities_page_hospital_section {
  background: linear-gradient(rgba(0, 78, 137, 0.9), rgba(0, 78, 137, 0.9)),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 0;
  position: relative;
}

.facilities_page_hospital_card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.facilities_page_hospital_card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Placement Section */
.facilities_page_placement_section {
  background-color: #FF6B35;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.facilities_page_placement_section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.facilities_page_placement_card {
  background-color: white;
  color: #292929;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.facilities_page_placement_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.facilities_page_placement_highlight {
  color: #004E89;
  font-weight: 600;
}

@media (max-width: 768px) {
  .facilities_page_hero {
    padding: 120px 0;
    background-attachment: scroll;
  }

  .facilities_page_hero_title {
    font-size: 2.8rem;
  }

  .facilities_page_hero_subtitle {
    font-size: 1.3rem;
  }

  .facilities_page_section {
    padding: 60px 0;
  }
}

.placement_hero {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(255, 152, 0, 0.48)),
    url('https://images.unsplash.com/photo-1581056771107-24ca5f033842') no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.placement_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.placement_hero_content {
  position: relative;
  z-index: 2;
}

.placement_title {
  font-weight: 700;
  background-clip: text;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: -1px 1px 5px #333;
}

.placement_title2 {
  font-weight: 700;
  background-clip: text;
  color: #002b52;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.placement_section {
  padding: 80px 0;
  position: relative;
}

.placement_highlight {
  background-color: #f8f9fa;
  border-left: 4px solid #002c52;
  padding: 30px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.placement_highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ff9800;
}

.placement_feature_box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 3px solid #0d47a1;
}

.placement_feature_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #ff9800;
}

.placement_icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ee7d21;
}

.placement_stats {
  font-size: 3rem;
  font-weight: 700;
  color: #ed7c20;
}

.placement_testimonial {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.placement_testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(13, 71, 161, 0.1);
  position: absolute;
  top: 10px;
  left: 10px;
}

.placement_btn {
  background: linear-gradient(135deg, #0d47a1, #ff9800);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s ease;
}

.placement_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
  color: white;
}

.placement_pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.placement_float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.placement_underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, #0d47a1, #ff9800);
  margin: 10px auto;
}

.placement_list_item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.placement_list_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background: #ee7d21;
  border-radius: 50%;
}

.placement_list_item:nth-child(odd)::before {
  background: #002c52;
}

.placement_heading_txt {
  color: #002c53;
  font-weight: 600;
}

.contact_hero {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(255, 152, 0, 0.48)), url('images/Contact-Us-cover.jpg') no-repeat center center;
  background-size: cover;
  padding: 250px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.contact_hero_content {
  position: relative;
  z-index: 2;
}

.contact_title {
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact_title2 {
  font-weight: 700;
  color: #002c53;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact_section {
  padding: 80px 0;
  position: relative;
}

.contact_card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #002c52, #0d47a1);
  z-index: 2;
}

.contact_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact_icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ee7d21;
  transition: all 0.3s ease;
}

.contact_card:hover .contact_icon {
  transform: scale(1.2);
}

.contact_form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #002c52, #0d47a1);
  z-index: 2;
}

.form-control {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 10px 0;
  margin-bottom: 25px;
  background: transparent;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: #0d47a1;
}

.contact_btn {
  background: linear-gradient(135deg, #002c53, #0d47a1);
  border: none;
  padding: 12px 40px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s ease;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d47a1, #002c53);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.contact_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(255, 152, 0, 0.3);
  color: white;
}

.contact_btn:hover::before {
  opacity: 1;
}

.contact_map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 300px;
  position: relative;
}

.contact_map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact_social {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.contact_social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d47a1, #ff9800);
  color: white;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact_social a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.contact_underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d47a1, #ff9800);
  margin: 15px auto 30px;
  border-radius: 2px;
}

/* Floating animation */
.contact_float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Pulse animation */
.contact_pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Glow animation */
.contact_glow {
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
  }

  to {
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.8);
  }
}

.admission-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff9800, #ff6d00);
  color: white;
  border: none;
  padding: 20px 15px;
  border-radius: 0 50px 50px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.admission-btn:hover {
  background: linear-gradient(135deg, #ff6d00, #ff9800);
  padding: 20px 20px;
  box-shadow: 0 8px 25px rgba(255, 109, 0, 0.5);
}

.admission-btn i {
  margin-bottom: 10px;
  font-size: 1.5rem;
  transform: rotate(90deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(90deg) translateY(0);
  }

  40% {
    transform: rotate(90deg) translateY(-10px);
  }

  60% {
    transform: rotate(90deg) translateY(-5px);
  }
}

/* Admission Form Overlay */
.admission-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 99999 !important;
}

.admission-form {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.admission-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ff9800, #ff6d00);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header p {
  color: #666;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
  outline: none;
}

.submit-btn {
  background: linear-gradient(135deg, #ff9800, #ff6d00);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ff6d00, #ff9800);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 109, 0, 0.4);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f5f5f5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #ff9800;
  color: white;
}

/* Form animation when opened */
.admission-overlay.active {
  display: flex;
  opacity: 1;
}

.admission-overlay.active .admission-form {
  transform: translateY(0);
}

/* Floating label effect */
.floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
}

.floating-label .form-control:focus+label,
.floating-label .form-control:not(:placeholder-shown)+label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #ff9800;
}

/* Gallery Section Base Styles */
.about_section_gallery {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

.about_section_gallery_title {
  position: relative;
  color: #2c3e50;
  margin-bottom: 15px;
}

.about_section_gallery_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ed7c20, #b75505);
}

.about_section_gallery_subtitle {
  color: #7f8c8d;
}

/* Gallery Items */
.about_section_gallery_container {
  perspective: 1000px;
}

.about_section_gallery_item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.about_section_gallery_img_wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 300px;
  transition: all 0.3s ease;
}

.about_section_gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about_section_gallery_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about_section_gallery_img_title {
  margin: 0;
  font-size: 1.2rem;
}

/* Hover Effects */
.about_section_gallery_item:hover .about_section_gallery_img_wrapper {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about_section_gallery_item:hover .about_section_gallery_img {
  transform: scale(1.03);
}

.about_section_gallery_item:hover .about_section_gallery_caption {
  transform: translateY(0);
}

/* Fullscreen Overlay */
.about_section_gallery_fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.about_section_gallery_fullscreen.active {
  opacity: 1;
  visibility: visible;
}

.about_section_gallery_fullimg {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: about_section_gallery_zoomIn 0.3s ease;
}

.about_section_gallery_fullcaption {
  position: absolute;
  bottom: 30px;
  color: white;
  text-align: center;
  font-size: 1.2rem;
}

.about_section_gallery_close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about_section_gallery_close:hover {
  transform: rotate(90deg);
}

/* Animation */
@keyframes about_section_gallery_zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about_section_gallery_img_wrapper {
    height: 250px;
  }

  .about_section_gallery_title {
    font-size: 2rem;
  }
  .contact_hero {
  padding: 80px 0!important;
}
}

/* Main Container Styles */
.facility_animated_row {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
  position: relative;
  overflow: hidden;
}

.facility_animated_row::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 109, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.facility_animated_col {
  position: relative;
  z-index: 1;
}

/* Elite Card Styles */
.facility_elite_card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(26, 35, 126, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.facility_elite_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(26, 35, 126, 0.15);
}

/* Icon Styles with Animation */
.facility_elite_icon_box {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 50%;
  border-radius:
50%;
}

.facility_elite_icon {
  font-size: 40px;
  color: #ff6d00;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.facility_elite_icon_halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 109, 0, 0.1);
  border-radius: 50%;
  z-index: 1;
  animation: facilityHaloPulse 3s infinite;
}

@keyframes facilityHaloPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* Title Styles */
.facility_elite_title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #002c53;
}

.facility_elite_title_main {
  color: #ee7d21;
  display: block;
}

.facility_elite_title_sub {
  display: block;
  font-weight: 600;
}

/* Content Styles */
.facility_elite_content {
  position: relative;
}

.facility_elite_paragraph {
  color: #333;
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}

.facility_elite_paragraph_1 {
  animation: facilityTextAppear 0.6s 0.2s forwards;
}

.facility_elite_paragraph_2 {
  animation: facilityTextAppear 0.6s 0.4s forwards;
}

@keyframes facilityTextAppear {
  to { opacity: 1; transform: translateY(0); }
}

.facility_elite_divider {
  height: 2px;
  background: linear-gradient(90deg, #ff6d00, #1a237e);
  margin: 30px 0;
  width: 100px;
  opacity: 0;
  animation: facilityDividerAppear 0.6s 0.3s forwards;
}

@keyframes facilityDividerAppear {
  from { width: 0; opacity: 0; }
  to { width: 100px; opacity: 1; }
}

/* Highlight Badge */
.facility_elite_highlight {
  display: inline-block;
  background: #1a237e;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.facility_elite_highlight_glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.facility_elite_highlight:hover .facility_elite_highlight_glow {
  left: 100%;
}

/* Image Styles */
.facility_elite_image_wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  height: 100%;
}

.facility_elite_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.facility_elite_image_shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 35, 126, 0.4), transparent 60%);
}

.facility_elite_image_tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.facility_elite_tag_icon {
  color: #ff6d00;
  margin-right: 10px;
  font-size: 18px;
}

/* Hover Effects */
.facility_elite_image_wrap:hover .facility_elite_image {
  transform: scale(1.05);
}

.facility_elite_card:hover .facility_elite_icon {
  transform: rotate(10deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .facility_elite_card {
      padding: 30px;
      margin-bottom: 40px;
  }
  
  .facility_elite_title {
      font-size: 2rem;
  }
  
  .facility_elite_image_wrap {
      height: 400px;
  }
}

@media (max-width: 768px) {
  .facility_elite_title {
      font-size: 1.8rem;
  }
  
  .facility_elite_paragraph {
      font-size: 1rem;
  }
}
.only_img_shadow{
  filter: drop-shadow(-2px 2px 3px #484848);
}