* {
  box-sizing: border-box;
  margin: 0 5px;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

:root {
  --primary-color: #0f3e96;
  --secondary-color: #8f0b09;
  --accent-color: #d9176e;
  --light-bg: rgba(255, 255, 255, 0.9);
  --dark-text: #312929;
  --light-text: #ffffff;
  --footer-color: #ff6666;
  --footer-secondary: #467a5c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* Container for all content */
.v481_2 {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
}

/* Header and Navigation */
.v507_27 {
  width: 100%;
  height: 80px;
  background-color: var(--light-bg);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.v507_2 {
  width: 193px;
  height: 72px;
  background: url("../images/v507_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.v507_2:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.v507_10, .v507_11, .v507_12, .v507_14 {
  color: var(--dark-text);
  font-family: 'SeoulHangang', sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.v507_10:hover, .v507_11:hover, .v507_12:hover, .v507_14:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.v507_10::after, .v507_11::after, .v507_12::after, .v507_14::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.v507_10:hover::after, .v507_11:hover::after, .v507_12:hover::after, .v507_14:hover::after {
  width: 100%;
}

/* **************************************************************************************************Mobile menu button */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-text);
}

/******************************************************************************************************* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh;
  background: url("../images/MCPC_LAB1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  margin-top: 80px;
}
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.blinking {
    animation: blink 1.5s infinite;
}
.v507_23 {
  width: 100%;
  max-width: 650px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.v507_23:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.v511_2 {
  color: var(--light-text);
  font-weight: bold;
  font-size: clamp(24px, 5vw, 40px);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/******************************************************* College Info Section */
.college-info {
  width: 100%;
  padding: 60px 5%;
  text-align: center;
  background-color: #f5f5f5;
}

.v511_6 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: clamp(24px, 4vw, 33px);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.v511_6::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.v511_5, .v511_4 {
  color: var(--dark-text);
  font-size: clamp(16px, 3vw, 22px);
  margin: 10px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/************************************************************* Course Section */
.course-section {
  width: 100%;
  padding: 60px 5%;
  background-color: #ffffff;
  background-image: url("../images/v507_66.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 300px;
  background-blend-mode: lighten;
}

.v511_9 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.v511_9::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
}

.v511_8 {
  color: var(--dark-text);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: justify;
}

.v511_11 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: clamp(20px, 3.5vw, 28px);
  margin-bottom: 20px;
}

.benefits-list {
  color: var(--dark-text);
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  text-align: left;
  margin-left: 20px;
}

.benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.explore-btn {
  text-decoration: none;
  background-color: var(--accent-color);
  color: var(--light-text);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(15, 62, 150, 0.3);
}

.explore-btn:hover {
  background-color: #1956c8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15, 62, 150, 0.4);
}

.explore-btn i {
  margin-left: 8px;
}

/****************************************************** Why Choose Us Section */
.why-choose-us {
  width: 100%;
  padding: 60px 5%;
  background-color: #f5f5f5;
  position: relative;
  background-image: url("../images/v507_67.png"); 
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 200px;
  background-blend-mode: lighten;
}

.v507_55 {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: clamp(24px, 4vw, 33px);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.v507_55::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
}

.v507_62 {
  color: var(--dark-text);
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
  max-width: 1000px;
}

.v507_63 {
  background-color: var(--accent-color);
  border-radius: 30px;
  padding: 15px 30px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
}

.v507_63:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(217, 23, 110, 0.3);
}

.v507_64 {
  color: var(--light-text);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  text-align: center;
}

/*********************************************** Career Opportunities Section */
.career-section {
  width: 100%;
  padding: 60px 5%;
  background-color: #ffffff;
  background-image: url("../images/v507_7.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 150px;
  background-blend-mode: lighten;
}

.v507_81 {
  color: var(--dark-text);
  font-weight: bold;
  font-size: clamp(28px, 4.5vw, 43px);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.v507_81::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -15px;
  left: 0;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.career-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.career-title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 15px;
}

.career-description {
  color: var(--dark-text);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}

/* Additional styling for career section */
.career-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.career-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.career-image:hover {
  transform: scale(1.05);
}

/****************************** Enhanced button styles */
.v507_63 {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.v507_63: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;
  z-index: -1;
}

.v507_63:hover:before {
  left: 100%;
}

/* Additional hover effects */
.nav-links span {
  position: relative;
  padding: 5px 0;
}

/*******************************************************Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Program Page Styles */
.logo-link {
  text-decoration: none;
}

.nav-link {
  text-decoration: none;
}

.nav-links .active {
  color: var(--primary-color);
}

.nav-links .active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
}

/*******************************************************************************Program Hero Section */
.program-hero-section {
  width: 100%;
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("../images/MCPC_LAB4.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  margin-top: 80px;
  text-align: center;
  overflow: hidden;
}

.program-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 62, 150, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.program-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out forwards;
}

.program-title {
  color: var(--light-text);
  font-weight: bold;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

.program-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: translateX(-50%);
  animation: expandWidth 1.5s ease-out forwards;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


.program-subtitle {
  color: var(--light-text);
  font-size: clamp(18px, 3vw, 24px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Container for sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/******************************************************************************** Common section styles */
.section-title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;

}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.subsection-title {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: clamp(20px, 3vw, 28px);
  margin: 30px 0 20px;
}

/* Program Overview Section */
.program-overview {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.program-overview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(15, 62, 150, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.overview-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.overview-text {
  flex: 1;
  min-width: 300px;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.overview-text p:hover {
  transform: translateX(5px);
}

.course-parts {
  margin: 20px 0;
  padding-left: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.course-parts li {
  position: relative;
  padding: 15px 15px 15px 40px;
  margin-bottom: 10px;
  font-size: 18px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.course-parts li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #f0f7ff;
}

.course-parts li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.course-parts li:hover::before {
  transform: scale(1.2);
  color: var(--accent-color);
}

.overview-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.overview-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.program-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.program-img:hover {
  transform: scale(1.05);
}

.syllabus-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.syllabus-link {
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.syllabus-link::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: all 0.6s ease;
}

.syllabus-link:hover {
  background-color: #1956c8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(15, 62, 150, 0.3);
}

.syllabus-link:hover::before {
  left: 100%;
}

.syllabus-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.syllabus-link:hover i {
  transform: translateX(5px);
}

/* Program Objectives Section */
.program-objectives {
  padding: 60px 0;
  background: linear-gradient(rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.95)), url("../images/Phar03.JPG");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  position: relative;
  overflow: hidden;
}

.program-objectives::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 62, 150, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.objective-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid transparent;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 62, 150, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
  transition: all 0.5s ease;
}

.objective-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(217, 23, 110, 0.2);
}

.objective-card:hover::before {
  transform: scale(1.2) rotate(10deg);
  background: linear-gradient(135deg, rgba(15, 62, 150, 0.1) 0%, rgba(217, 23, 110, 0.05) 60%);
}

.objective-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.5s ease;
  position: relative;
}

.objective-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.objective-card:hover .objective-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

.objective-card:hover .objective-icon::after {
  width: 60px;
  height: 60px;
  opacity: 0.2;
}

.objective-card p {
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.objective-card:hover p {
  color: var(--primary-color);
}

/* Practical Training Section */
.practical-training {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.practical-training::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(15, 62, 150, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.practical-training::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(217, 23, 110, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.training-intro {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out forwards;
}

.training-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.benefit-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.05);
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item h4 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.benefit-item:hover h4 {
  color: var(--accent-color);
}

.benefit-item h4 i {
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item:hover h4 i {
  transform: scale(1.2) rotate(10deg);
  color: var(--primary-color);
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}

.benefit-item:hover p {
  padding-left: 10px;
}

/* Teaching Methodology Section */
.teaching-methodology {
  padding: 60px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url("../images/phar03.JPG");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  color: white;
  position: relative;
  overflow: hidden;
}

.teaching-methodology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(217, 23, 110, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}
.section-title {
  color: var(--accent-color);
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.subsection-title {
  color: var(--accent-color);
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.methodology-intro {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out forwards;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.methodology-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(15, 62, 150, 0.7), rgba(217, 23, 110, 0.7));
  z-index: -1;
  transition: all 0.8s ease;
  transform: scale(0.5);
  opacity: 0;
}

.methodology-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.methodology-card:hover::before {
  top: -50%;
  left: -50%;
  opacity: 1;
  transform: scale(1);
}

.methodology-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.methodology-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: all 0.5s ease;
}

.methodology-card:hover .methodology-icon {
  background-color: var(--accent-color);
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 0 20px rgba(217, 23, 110, 0.4);
}

.methodology-card:hover .methodology-icon::after {
  opacity: 1;
}

.methodology-card h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.methodology-card h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.5s ease;
  transform: translateX(-50%);
}

.methodology-card:hover h4 {
  color: white;
}

.methodology-card:hover h4::after {
  width: 50%;
}

.methodology-card p {
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.methodology-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.program-cta {
  padding: 80px 0;
  background: linear-gradient(rgba(15, 62, 150, 0.85), rgba(15, 62, 150, 0.95)), url("../images/v507_8.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.program-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(217, 23, 110, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.program-cta h2 {
  color: white;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.program-cta h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), white);
  transform: translateX(-50%);
}

.program-cta p {
  color: white;
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::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: all 0.6s ease;
}

.cta-button:hover {
  background-color: #e82e85;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive styles for modal */
@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .modal-content {
    padding: 20px;
    width: 95%;
  }
  
  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Enhanced footer */
/* Footer Section */
.footer {
  width: 100%;
  background-color: whitesmoke;
  padding: 40px 5% 0;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-heading {
  color: #930350;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-text {
  color: var(--dark-text);
  font-size: 16px;
  line-height: 1.6;
}

.copyright {
  width: 100%;
  background-color: var(--footer-secondary);
  padding: 15px 5%;
  text-align: center;
}

.v507_93 {
  color: var(--light-text);
  font-size: clamp(14px, 2vw, 18px);
}

/* Additional animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Enhance mobile responsiveness */
@media screen and (max-width: 768px) {
  .career-header {
    justify-content: center;
    text-align: center;
  }
  
  .v507_81 {
    width: 100%;
    text-align: center;
  }
  
  .v507_81::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Program Page Responsive Styles */
  .program-hero-section {
    height: 40vh;
  }
  
  .overview-content,
  .training-benefits,
  .methodology-grid,
  .objectives-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-content {
    flex-direction: column-reverse;
  }
  
  .overview-image {
    margin-bottom: 30px;
  }
  
  .syllabus-links {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .syllabus-link {
    width: 100%;
    text-align: center;
  }
  
  .section-title,
  .subsection-title {
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .benefit-item,
  .methodology-card,
  .objective-card {
    padding: 20px;
  }
  
  .cta-button {
    width: 100%;
    padding: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .v507_27 {
    padding: 0 3%;
  }
  
  .hero-section {
    padding: 0 3%;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--light-bg);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .v507_10, .v507_11, .v507_12, .v507_14 {
    margin: 10px 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
    padding: 100px 5% 50px;
  }
  
  .v507_23 {
    max-width: 100%;
  }
  
  .career-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .v507_2 {
    width: 150px;
    height: 56px;
  }
  
  .v511_2 {
    font-size: clamp(20px, 6vw, 28px);
  }
  
  .v511_6, .v511_9, .v507_55, .v507_81 {
    font-size: clamp(20px, 5vw, 26px);
  }
  
  .v511_5, .v511_4 {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .v511_8, .v507_62 {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-active {
  opacity: 1;
}

.modal-content {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-content-active {
  transform: scale(1);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--accent-color);
}

.form-title {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.form-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.apply-form {

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.apply-form label {
  font-weight: 600;
  color: var(--dark-text);
  font-size: 16px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(15, 62, 150, 0.2);
  outline: none;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.reset-btn,
.submit-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.reset-btn {
  background-color: #f0f0f0;
  color: #666;
}

.reset-btn:hover {
  background-color: #e0e0e0;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
}

.submit-btn:hover {
  background-color: #1956c8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(15, 62, 150, 0.3);
}

/* Processing and Success Messages */
.processing-message,
.success-message,
.error-message {
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.5s ease-out forwards;
}

.processing-message i {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: spin 1.5s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.processing-message h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.processing-message p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.success-icon {
  font-size: 60px;
  color: #4CAF50;
  animation: bounceIn 0.8s ease-out forwards;
}

.error-icon {
  font-size: 60px;
  color: #e74c3c;
  animation: shakeX 0.8s ease-out forwards;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes shakeX {
   0%, 100% { transform: translateX(0); }
   10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
   20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.success-message h3,
.error-message h3 {
  color: var(--primary-color);
  font-size: 24px;
}

.success-message p,
.error-message p {
  color: #666;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.success-message p strong {
  color: var(--accent-color);
  font-weight: bold;
}

.error-message p strong {
  color: #e74c3c;
  font-weight: bold;
}

.close-success-btn,
.close-error-btn {
  padding: 12px 25px;
  margin-top: 10px;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.close-success-btn {
  background-color: var(--primary-color);
}

.close-error-btn {
  background-color: #e74c3c;
}

.close-success-btn:hover {
  background-color: #1956c8;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.close-error-btn:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
}

/* Enhanced Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.shimmer-effect {
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

/* Activity / Uploads Section */
.activity-section {
  width: 100%;
  padding: 60px 5%;
  background-color: #ffffff;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: start;
}

.upload-card {
  background: linear-gradient(180deg, #fff, #fbfbfb);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.activity-stream {
  background: linear-gradient(180deg, #fbfbfb, #fff);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.preview-item {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.preview-item img,
.preview-item video {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.preview-item .meta {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.hint { display: block; color: #666; font-size: 13px; margin-top: 6px; }

@media screen and (max-width: 900px) {
  .activity-grid { grid-template-columns: 1fr; }
  .preview-item img, .preview-item video { height: 140px; }
}

/************************************************************************************************************** About Page Styles */

/* About Hero Section */
.about-hero-section {
    width: 100%;
    height: 60vh;
    background: url("../images/Phar03.JPG");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 80px;
    text-align: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
    text-align:center;
}

.about-title {
    color: var(--light-text);
    font-weight: bold;
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
   
}

.about-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: expandWidth 1.5s ease forwards 0.5s;
}

.about-subtitle {
    color: var(--light-text);
    font-size: clamp(18px, 3vw, 24px);
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.vision-mission-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.vision-box, .mission-box {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.mission-list {
    list-style-type: none;
    padding-left: 0;
}

.mission-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.6;
}

.mission-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* History Section */
.history-section {
    padding: 80px 5%;
    background-color: white;
}

.history-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.history-text {
    flex: 1;
    min-width: 300px;
}

.history-text p {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.history-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.history-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Faculty Section */
.faculty-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}
.cns{
    width:100%;
    background-color:green;
    text-align:center;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-text);
    font-size: 18px;
    margin-bottom: 40px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faculty-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faculty-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-info {
    padding: 20px;
}

.faculty-name {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 5px;
}

.faculty-position {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.faculty-qualification, .faculty-experience, .faculty-expertise {
    color: var(--dark-text);
    font-size: 14px;
    margin-bottom: 5px;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 5%;
    background-color: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
}

.facility-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.facility-card:hover .facility-icon {
    color: white;
}

.facility-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.facility-card:hover .facility-title {
    color: white;
}

.facility-description {
    color: var(--dark-text);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.facility-card:hover .facility-description {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(rgba(15, 62, 150, 0.9), rgba(15, 62, 150, 0.9)), url("../images/Prm_01.JPG");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 62, 150, 0.7) 0%, rgba(15, 62, 150, 0.9) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover i {
    transform: translateX(5px);
}
