/* Program Banner */
.program-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.program-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.program-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.program-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.program-level,
.program-duration {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.program-level {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.program-duration {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.program-header h1 {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.program-faculty {
  font-size: 1.2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 10px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.breadcrumb li a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb li.active {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Program Content */
.program-content {
  padding: 80px 0;
}

.program-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.program-main {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Program Tabs */
.program-tabs {
  display: flex;
  flex-direction: column;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 20px 25px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  outline: none;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 90, 135, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tab-btn.active .tab-icon {
  background-color: var(--primary-color);
  color: white;
}

.tab-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

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

/* Program Section Styles */
.program-section {
  padding: 40px;
}

.program-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.program-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 1.5px;
}

.program-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 25px;
}

.program-highlights {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.program-highlights h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.program-highlights ul {
  list-style: none;
  padding: 0;
}

.program-highlights ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.program-highlights ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.program-details-box {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-top: 30px;
  overflow: hidden;
}

.detail-row {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  width: 200px;
  padding: 15px 20px;
  background-color: var(--bg-light);
  font-weight: 600;
  color: var(--text-color);
  border-right: 1px solid var(--border-color);
}

.detail-value {
  flex: 1;
  padding: 15px 20px;
  color: var(--text-light);
}

/* Curriculum Styles */
.year-section {
  margin-bottom: 40px;
}

.year-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.semester {
  margin-bottom: 30px;
}

.semester h4 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 15px;
  background-color: var(--bg-light);
  padding: 10px 15px;
  border-radius: var(--border-radius);
}

.course-list {
  list-style: none;
  padding: 0 0 0 20px;
}

.course-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px dashed var(--border-color);
}

.course-list li:last-child {
  border-bottom: none;
}

.course-list li::before {
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-color);
}

.electives-section {
  margin-top: 40px;
}

.electives-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.electives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.elective-group {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
}

.elective-group h4 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.elective-group ul {
  list-style: none;
  padding: 0;
}

.elective-group ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.elective-group ul li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

/* Admission Requirements Styles */
.requirements-box {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.requirements-box h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.requirements-box ul {
  list-style: none;
  padding: 0;
}

.requirements-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.requirements-box ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.transfer-students {
  margin-top: 30px;
}

.transfer-students h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.transfer-students ul {
  list-style: none;
  padding: 0;
}

.transfer-students ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.transfer-students ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.application-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* Career Opportunities Styles */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.career-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.career-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.career-card:hover .career-icon {
  transform: scale(1.1);
  background-color: var(--primary-color);
}

.career-card h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.career-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.industry-partners {
  margin-top: 40px;
}

.industry-partners h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.partner-logo {
  background-color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 150px;
  height: auto;
}

/* Faculty Styles */
.faculty-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faculty-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faculty-image {
  width: 200px;
  flex-shrink: 0;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-info {
  padding: 25px;
  flex: 1;
}

.faculty-info h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.faculty-title {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-style: italic;
}

.faculty-specialization {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.faculty-bio {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.faculty-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.faculty-contact a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Sidebar Styles */
.program-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.sidebar-widget h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 1.5px;
}

.apply-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-align: center;
}

.apply-widget h3 {
  color: white;
}

.apply-widget h3::after {
  background: var(--secondary-color);
  left: 50%;
  transform: translateX(-50%);
}

.apply-widget p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-block {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.contact-widget {
  padding-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.download-list {
  list-style: none;
  padding: 0;
}

.download-list li {
  margin-bottom: 15px;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.download-link:hover {
  background-color: rgba(0, 90, 135, 0.1);
  transform: translateX(5px);
}

.download-link i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.download-link span {
  font-weight: 500;
  color: var(--text-color);
}

.related-list {
  list-style: none;
  padding: 0;
}

.related-list li {
  margin-bottom: 10px;
}

.related-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.related-link:hover {
  background-color: rgba(0, 90, 135, 0.1);
  transform: translateX(5px);
}

.related-program {
  font-weight: 500;
  color: var(--text-color);
  flex: 1;
}

.related-link i {
  color: var(--primary-color);
}

/* Student Testimonials */
.student-testimonials {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.testimonials-slider {
  position: relative;
  margin-top: 50px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 120px;
  line-height: 1;
  font-family: serif;
  color: var(--primary-color);
  opacity: 0.1;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.testimonial-author p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
  font-style: normal;
}

.testimonial-controls {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 40px auto 0;
  z-index: 5;
  max-width: 800px;
}

.prev-testimonial,
.next-testimonial {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 90, 135, 0.2);
  border: none;
  font-size: 1.2rem;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 90, 135, 0.3);
}

.testimonial-dots {
  display: flex;
  gap: 15px;
}

.testimonial-dots .dot {
  width: 14px;
  height: 14px;
  background: rgba(0, 90, 135, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 90, 135, 0.5);
  border: 2px solid white;
}

/* Call to Action */
.cta-section {
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 90, 135, 0.9), rgba(0, 90, 135, 0.7));
}

.cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.cta-content h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .program-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .careers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .electives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-header h1 {
    font-size: 2.2rem;
  }

  .careers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faculty-card {
    flex-direction: column;
  }

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

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .program-section {
    padding: 25px;
  }

  .program-header h1 {
    font-size: 1.8rem;
  }

  .program-badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }

  .electives-grid {
    grid-template-columns: 1fr;
  }

  .application-cta {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .program-section h2 {
    font-size: 1.6rem;
  }

  .detail-row {
    flex-direction: column;
  }

  .detail-label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

