/* ==== RESET ==== */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html{
  scroll-behavior: smooth;
  scroll-snap-type: mandatory;
}

body {
  background: #ffffff;
  color: #333333;
}

/* ==== NAVBAR ==== */
nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff; /* transparent se solid background kar diya */
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3d6b;
  text-decoration: none;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding-top: 31px;
}

.nav-links li {
  position: relative;
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  padding: 5px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c85a11;
}

/* Underline hover effect */
.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #1e3d6b;
  transition: width 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown (Desktop) */
.dropdown {
  cursor: pointer;
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 40px;
  left: -52px;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 6px;
  z-index: 9999;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333333;
  font-size: 0.9rem;
  text-decoration: none;
}

.dropdown-content a:hover {
  /* background: #D67127; */
  color: #fff;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

/* CTA Button */
.btn-apply {
  margin-left: 25px;
  background: #c85a11;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-apply:hover {
  background: #a4460e;
}

/* ==== MOBILE ==== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }

  /* Mobile dropdown fix */
  .dropdown-content {
    position: static; /* remove absolute for mobile */
    background: #fff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none; /* hidden by default */
    margin-top: 5px;
    border-radius: 6px;
    width: 100%;
  }

  .dropdown-content a {
    padding: 10px 15px;
    color: #333333;
  }

  .dropdown.active .dropdown-content {
    display: block; /* show when clicked */
  }

  .menu-toggle {
    display: flex;
  }
}
/* Mobile toggle animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(47deg) translateY(16px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-16px);
}

/* ========================= Hero section =========================  */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  height: 100%;
  width: 100%;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 34, 59, 0.55); /* Blue overlay */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 5px 5px 20px black;
  font-size: 5rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #f5f5f5;
}

.hero-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: #1e3d6b; /* Blue button */
  color: #fff;
}
.btn-primary:hover {
  background: #162d4f; /* Darker blue */
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover {
  background: #fff;
  color: #1e3d6b;
}

@media (max-width: 786px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-buttons a.btn-secondary{
    margin: 30px 0;
  }
}

@media (max-width: 1080px) {
  .skill_section{
    height: 152vh;
  }
}

/* animation */

/* ===== HERO CONTENT ANIMATION ===== */
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* =========================== Hero section end ====================== */

/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css'); */

/*body {*/
/*  background: #f5f8fa;*/
/*  padding: 2rem;*/
/*  font-family: 'Poppins', sans-serif;*/
/*}*/

.skill_section {
  height: auto;
}

.grid-container {
  width: min(80rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem;
  position: relative;
  top: -100px;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

/* Responsive layout */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* === Card Styling === */
.card {
  --grad: #004080, #0073e6;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff, #f0f4f9);
  border-radius: 1.5rem;
  display: grid;
  grid-template:
    "title icon"
    "content content"
    "bar bar" / 1fr auto;
  color: #2c3e50;
  box-shadow: 0 10px 25px rgba(0, 115, 230, 0.15);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: cardFadeIn 0.8s ease forwards;
}

/* Staggered animations */
.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }
.card:nth-child(4) { animation-delay: 0.8s; }

/* Hover Effects */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 115, 230, 0.3);
  background: linear-gradient(145deg, #eaf3fc, #ffffff);
}

/* Title */
.card .title {
  font-size: 1.2rem;
  grid-area: title;
  align-self: end;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #003366;
}

/* Icon */
.card .icon {
  grid-area: icon;
  font-size: 2.8rem; /* Adjusted for balance */
  text-align: right;
}

.card .icon i {
  color: transparent;
  background: linear-gradient(to right, var(--grad));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Content */
.card .content {
  grid-area: content;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-top: 0.5rem;
}

/* Bar Line */
.card::after {
  content: "";
  grid-area: bar;
  height: 3px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, var(--grad));
  margin-top: 1rem;
}

/* Simple animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes cardFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { transform: translateX(-40px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/* ============  About us start  ============== */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 0rem 10%;
  background: #fff;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a2a33;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004aad, #ff9800);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
  text-align: justify;
}

.about-buttons a {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  margin-right: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(90deg, #004aad, #0077ff);
  color: #fff;
}
.btn-primary:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.4);
}

.btn-outline {
  border: 2px solid #004aad;
  color: #004aad;
  background: transparent;
}
.btn-outline:hover {
  background: #004aad;
  color: #fff;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #d8702b;
  color: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 80px;
  }
  .about-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section a.btn-primary{
    margin: 30px 0;
  }
}

/* === ABOUT SECTION ANIMATION === */

/* Hidden (initial) state */
.about-content,
.about-image {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

/* Visible (active) state */
.about-content.show,
.about-image.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional extra touch: zoom the image slightly */
.about-image.show img {
  animation: zoomIn 1.2s ease forwards;
}

/* Subtle zoom effect on image */
@keyframes zoomIn {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}


/* ============  About us end  ============== */

/* ============  Popular Courses start  ============== */
.popular_course_container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  padding: 40px 20px;
}

._section_title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #22293C;
  margin-bottom: 25px;
  position: relative;
}
._section_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d77126;
  margin: 10px auto 0;
  border-radius: 2px;
}

._slide_container {
  max-width: 1200px;
  width: 100%;
}
._slide_content {
  margin: 0 20px;
  overflow: hidden;
}

._card {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

._image_content {
  position: relative;
}
._card_image {
  height: 300px;
  overflow: hidden;
}
._card_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

._card_content {
  padding: 20px;
  text-align: center;
}
._name {
  font-size: 18px;
  font-weight: 600;
  color: #22293C;
  margin-bottom: 8px;
}
._description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}
._button {
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #d77126;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
._button:hover {
  background: #b85c1c;
}

/* Swiper Controls */
._swiper_navBtn {
  color: #22293C;
  transition: 0.3s;
}
._swiper_navBtn:hover {
  color: #d77126;
}
._swiper_pagination_bullet {
  background-color: #22293C;
  opacity: 0.6;
}
._swiper_pagination_bullet_active {
  background-color: #d77126;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  ._slide_content {
    margin: 0 10px;
  }
  ._swiper_navBtn {
    display: none;
  }
}

/* === POPULAR COURSES ANIMATION === */

/* Initial hidden state */
._card {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* When visible */
._card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Card image zoom effect */
._card_image img {
  transform: scale(1);
  transition: transform 0.6s ease;
}

._card:hover ._card_image img {
  transform: scale(1.08);
}

/* Title fade-up */
._section_title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

._section_title.show {
  opacity: 1;
  transform: translateY(0);
}

/* Extra glow on hover for premium feel */
._card:hover {
  box-shadow: 0 10px 30px rgba(215, 113, 38, 0.25);
  transform: translateY(-5px);
}

/* ============  Popular Courses end  ============== */

/* ============  National and International start  ============== */

.partners-wrapper {
  font-family: "Poppins", sans-serif;
  background: #f7f7f7;
  padding: 50px 20px;
  text-align: center;
}

.partners-wrapper h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #d77126;
  margin-bottom: 40px;
}

.partners-wrapper .partner-logos {
  width: 90%;
  margin: 0 auto;
}

.partners-wrapper .partner-logos img {
  max-height: 80px;
  max-width: 140px;
  display: block;
  margin: 0 auto;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

.partners-wrapper .partner-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Scoped slick spacing */
.partners-wrapper .slick-slide {
  margin: 0 10px;
}
.partners-wrapper .slick-list {
  margin: 0 -10px;
}

/* Scoped custom arrows */
.partners-wrapper .slick-prev,
.partners-wrapper .slick-next {
  background: #d77126;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1000;
}
.partners-wrapper .slick-prev:before,
.partners-wrapper .slick-next:before {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.slick-prev:focus,
.slick-prev:hover {
  background: #d77126;
  color: white;
}



/* ============  National and International  end ============== */

/* ============  experience_opportunities  start ============== */

.experience_opportunities {
  padding-top: 4rem;
}

/* Section Style */
.video-section {
  position: relative;
  height: 400px;
  width: 100%;
  background: linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url("assets/images/adv.jpg")
      center center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.video-section h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Play button */
.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 0, 0, 1);
}

.play-btn:before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

/* Overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.video-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-overlay iframe {
  width: 90%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 768px) {
  .video-section h2 {
    font-size: 24px;
  }
  .video-overlay iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .video-overlay iframe {
    height: 200px;
  }
}

/* ============  experience_opportunities  end ============== */

/* ============  Our Success Story  start ============== */

.success-section {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, #d8702b, 0%, #d8702b 100%);
  color: #fff;
  text-align: center;
}

.success-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.success-section p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.success-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.success_card {
  background: #fff;
  color: #22293C;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.success_card h3 {
  font-size: 2rem;
  color: #d8702b;
  margin-bottom: 10px;
}

.success_card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .success-section h2 {
    font-size: 2rem;
  }
  .success-section p {
    font-size: 1rem;
  }
}

/* ============  Our Success Story  end ============== */

/* ============  Faculty Profile  Start ============== */

.faculty-section {
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #22293C 100%, #D8702B); */
  color: #fff;
  text-align: center;
}

.faculty-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #22293C;
}

.faculty-slider {
  max-width: 1100px;
  margin: auto;
}

.faculty-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #22293C;
  color: #22293C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faculty-left {
  flex: 1;
  min-width: 280px;
  background: #f3f3f3;
  padding: 20px;
  text-align: center;
}

.faculty-left img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #d8702b;
  margin-bottom: 15px;
}

.faculty-left h3 {
  margin: 10px 0 5px;
  font-size: 1.5rem;
  color: #22293C;
}

.faculty-left p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #d8702b;
}

.faculty-right {
  flex: 2;
  min-width: 280px;
  padding: 30px;
  text-align: left;
}

.faculty-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

/* Swiper custom navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: #d8702b;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #d8702b;
  opacity: 1;
}

/* ============  Faculty Profile  End ============== */

/* ============  Industry Testimonials  Start ============== */

.testimonial-section {
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #22293C, #D8702B); */
  color: #fff;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #d8702b;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  /* background: #fff; */
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
  color: #22293C;
  display: flex;
  flex-direction: column;
}

.testimonial-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial-content {
  padding: 20px;
  text-align: left;
}

.testimonial-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #d8702b;
}

.testimonial-content p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #555;
}

/* ============  Industry Testimonials  End ============== */

/* ============  Footer Start ============== */

footer {
  background: #22293C;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: #d8702b;
  font-size: 1.3rem;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.footer-links ul,
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #d8702b;
  padding-left: 5px;
}

.contact-info ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #ddd;
}

.contact-info ul li i {
  margin-right: 10px;
  color: #d8702b;
  font-size: 1.1rem;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #fff;
  background: #d8702b;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #d8702b;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-column {
    width: 100%;
  }
}

/* ============  Footer End ============== */

/* ============  About Page Start ============== */

/* About */

#about-home h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
  font-weight: bold;
}
/* about-container */
#about-container {
  display: flex;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
}
#about-container .about-img {
  width: 60%;
  padding-right: 60px;
}
#about-container .about-img img {
  width: 100%;
}
#about-container .about-text {
  width: 40%;
}
#about-container .about-text h2 {
  color: #d8702b;
  font-weight: 700;
  padding-bottom: 15px;
}
#about-container .about-text p {
  color: #162d4f;
  font-weight: 300;
}
#about-container .about-text .about-fe {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 30px;
}
#about-container .about-text .about-fe img {
  width: 50px;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
}
#about-container .about-text .about-fe .fe-text {
  width: 90%;
}
#about-container .about-text .about-fe .fe-text h5 {
  font-size: 16px;
  color: #d8702b;
  font-weight: bold;
}
/* Trust */
/* Trust */
#trust {
  text-align: center;
  padding: 8vw;
  background-color: #9fe5fa;
  margin: 10px;
}
#trust .trust-img {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trust-img img {
  height: 180px; /* Set your desired height */
  width: auto; /* Set your desired width */
  object-fit: cover; /* Crop and scale image properly */
  margin-right: 15px; /* Spacing between images */
  border-radius: 5px; /* Optional: rounded corners */
}

.history-section {
  padding: 80px 0;
  /* background: #163E69;  */
  color: #163e69;
}
.history-title {
  color: #d47229; /* Orange accent */
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.history-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}
.history-img img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

@media (max-width: 1020px) {
  #about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
}
#about-container .about-img{
  width: 100%;
}
#about-container .about-text{
  width: 100%;
}
}

/* ============  About Page End ============== */

/* ============  Mission and Vission Start ============== */

/* Color Variables for easy use */
:root {
  --primary-blue: #183c63;
  --secondary-orange: #d3722b;
  --light-gray: #f5f5f5; /* Light background for the overall section */
}

.vessel-vmv {
  padding: 40px 20px;
  background-color: var(--light-gray); /* Overall light background */
  font-family: Arial, sans-serif; /* Example font */
}

/* Container uses Flexbox for side-by-side layout */
.container-vmv {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between the cards */
  max-width: 1200px; /* Max width of the content area */
  margin: 0 auto;
}

/* Individual Card Styling */
.card-vmv {
  flex: 1; /* Makes each card take up equal space */
  max-width: 350px;
  text-align: center;
  padding: 20px;
  /* Simulating the slight 3D/shadow effect from the image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: white;
  border-radius: 8px;
}

/* Icon Container Styling (the circular background) */
.icon-vmv {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: var(--primary-blue); /* Dark blue background */
  border: 3px solid var(--secondary-orange); /* Orange border accent */
  box-shadow: 0 0 0 5px rgba(24, 60, 99, 0.1); /* Subtle ring effect */
}

/* Icon (Font Awesome) Styling */
.icon-vmv i {
  color: white; /* White icon inside the blue circle */
  font-size: 36px;
}

/* Title Styling (VISION, MISSION, VALUES) */
.title-vmv {
  color: var(--primary-blue);
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Placeholder Text Styling */
.text-vmv {
  color: #555; /* A softer color for the body text */
  font-size: 0.95em;
  line-height: 1.6;
}

/* Media Query for Responsiveness: Stack cards on smaller screens */
@media (max-width: 768px) {
  .container-vmv {
    flex-direction: column;
    gap: 20px;
  }
  .card-vmv {
    max-width: 100%;
  }
}

/* ============  Mission and Vission End ============== */

/* ============  Hospitality Start ============== */

:root {
  --primary-blue: #d47229;
  --secondary-blue: #1e3a8a;
  --accent-gold: #D47129;
  --text-dark: #2d3748;
  --text-light: #718096;
  --background-light: #f7fafc;
  --white: #ffffff;
  --border-light: #e2e8f0;
}

header{
  border-bottom: 2px solid #D47129;
}

.container_1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Header */

/* Program Hero */
.program-hero_1 {
  background: linear-gradient(
93deg, #1c2746 32%, #D47229);
  color: var(--white);
  padding: 80px 0 60px;
}

.program-hero_1 .container_1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 1;
}

.hero-content_1 h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature i {
  color: var(--accent-gold);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.hero-image img {
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Program Overview */
.program-overview {
  padding: 80px 0;
  background: var(--background-light);
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.overview-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.key-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item strong {
  min-width: 120px;
  color: var(--text-dark);
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.highlight-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.highlight-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

/* Program Structure */
.program-structure {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.structure-tabs {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tab-headers {
  display: flex;
  background: var(--primary-blue);
}

.tab-header {
  flex: 1;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.tab-header.active {
  background: var(--accent-gold);
}

.tab-content {
  padding: 2rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.semester-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.semester h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.semester ul {
  list-style: none;
}

.semester li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 1.5rem;
}

.semester li:before {
  content: "•";
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Career Opportunities */
.career-opportunities {
  padding: 80px 0;
  background: var(--background-light);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.career-category {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.career-category h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.career-category ul {
  list-style: none;
}

.career-category li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 1.5rem;
}

.career-category li:before {
  content: "✓";
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Why Choose */
.why-choose {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--white);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Admission Process */
.admission-process {
  padding: 80px 0;
  background: var(--background-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.admission-requirements h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.requirement {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.requirement h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.requirement ul {
  list-style: none;
}

.requirement li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 1.5rem;
}

.requirement li:before {
  content: "•";
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Fee Structure */
.fee-structure {
  padding: 80px 0;
}

.fee-table {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

th {
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
}

tr:hover {
  background: var(--background-light);
}

.fee-note {
  text-align: center;
  color: var(--text-light);
}

/* Apply CTA */
.apply-cta {
  background: var(--accent-gold);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #a0aec0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #4a5568;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--primary-blue);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #a0aec0;
}

.contact-info i {
  margin-top: 0.25rem;
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-header .container_1 {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 140px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .program-hero_1 .container_1 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .semester-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tab-headers {
    flex-direction: column;
  }
}

/* ============  Hospitality End ============== */

/* ============  Culinary Arts Start ============== */
.culinary_hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  color: white;
  flex-wrap: wrap;
}

.culinary_list li{
  color: rgb(31, 31, 31);
  font-size: 1.3rem;
}

.culinary_list li::marker{
  color: yellow;
}

.culinary_hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.culinary_hero-content h1 {
  font-size: 3rem;
  color: #d3722b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.culinary_hero-content h1 span {
  color: #d3722b;
}

.culinary_hero-content p {
  font-size: 1.1rem;
  color: #292929;
  margin-bottom: 30px;
  max-width: 500px;
}

.culinary_hero-content button {
  background-color: #d3722b;
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.culinary_hero-content button:hover {
  background-color: #fff;
  color: #d3722b;
}

.culinary_hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.culinary_hero-image img {
  width: 100%;
  max-width: 450px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .culinary_hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 5%;
  }

  .culinary_hero-content {
    padding: 0;
  }

  .culinary_hero-content h1 {
    font-size: 2.2rem;
  }

  .culinary_hero-content p {
    font-size: 1rem;
  }

  .culinary_hero-image img {
    max-width: 350px;
    margin-bottom: 30px;
  }
}

/* ============  Culinary Arts End ============== */


/* ============  Baking and Patisserie Start ============== */

:root {
  --accent: #d3722b;
  --accent-dark: #b05616;
  --bg: #fffdf9;
  --muted: #6b7280;
  --card: #ffffff;
  --radius: 12px;
  --glass: rgba(255, 255, 255, 0.6);
  --shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

.section_2 {
  max-width: 1190px;
  margin: 48px auto;
  padding: 28px;
}
.section-header_2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.section-header_2 h2 {
    font-size: 38px;
    margin: 0;
    letter-spacing: -0.2px;
    font-weight: 600;
}
.section-header_2 p {
  margin: 0;
  color: var(--muted);
}

.grid_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.card_2 {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
.card_2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

.card_2 h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}
.card_2 p.lead_2 {
    margin: 0;
    color: #1e1e20;
    font-size: 18px;
    font-weight: 500;
}

.list_2 {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.list-item_2 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(
    180deg,
    rgba(243, 243, 245, 0.6),
    rgba(255, 255, 255, 0.4)
  );
  padding: 10px;
  border-radius: 10px;
}
.bullet_2 {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--glass);
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.03);
  font-weight: 600;
  color: var(--accent-dark);
  flex-shrink: 0;
  font-size: 2rem;
}
.item-body_2 {
  font-size: 14px;
}
.item-body_2 strong {
  display: block;
  font-size: 1rem;
}
.item-body_2 span {
    color: #48494a;
    font-size: 1rem;
}

.badges_2 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge_2 {
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(19, 38, 63, 0.06);
  color: #133f63;
}

.visual_2 {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.visual_2 img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(19, 38, 63, 0.06);
}
.visual_2 figcaption {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .grid_2 {
    grid-template-columns: 1fr;
  }
  .visual_2 img {
    max-width: 420px;
  }
}

.muted_2 {
  color: var(--muted);
  font-size: 13px;
}
.hr_2 {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 23, 42, 0.06),
    transparent
  );
  margin: 6px 0 2px;
}

.cta_2 {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.btn_2 {
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.btn-primary_2 {
  background: var(--accent);
  color: white;
}
.btn-ghost_2 {
  background: transparent;
  border: 1px solid rgba(19, 38, 63, 0.06);
}


/* ============  Baking and Patisserie End ============== */


/* ============  Nutrition & Food Science Start ============== */

     /* Global Styles */
        :root {
            --NFS_primary-green: #2e7d32;
            --NFS_light-green: #D67127;
            --NFS_accent-orange: #163E68;
            --NFS_light-orange: #ffb74d;
            --NFS_white: #ffffff;
            --NFS_light-gray: #f5f5f5;
            --NFS_dark-gray: #333333;
        }

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } */
/* 
        body {
            color: var(--NFS_dark-gray);
            line-height: 1.6;
        } */

        .NFS_container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .NFS_section {
            padding: 80px 0;
        }
/* 
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--NFS_primary-green);
        }

        p {
            margin-bottom: 15px;
        } */

        .NFS_btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--NFS_accent-orange);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .NFS_btn:hover {
            background-color: var(--NFS_light-orange);
            /* transform: translateY(-3px); */
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .NFS_btn-outline {
            background-color: transparent;
            border: 2px solid var(--NFS_accent-orange);
            color: var(--NFS_accent-orange);
        }

        .NFS_btn-outline:hover {
            background-color: var(--NFS_accent-orange);
            color: white;
        }

        .NFS_section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        /* .NFS_section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--NFS_accent-orange);
            margin: 15px auto 0;
        } */


        /* Introduction Section */
        .NFS_intro {
            background-color: var(--NFS_light-gray);
        }

        .NFS_intro-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .NFS_intro-text {
            flex: 1;
        }

        .NFS_intro-image {
            flex: 1;
            overflow: hidden;
        }

        .NFS_intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Courses Section */
        .NFS_courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .NFS_course-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        /* .NFS_course-card:hover {
            transform: translateY(-10px);
        } */

        .NFS_course-icon {
            background-color: var(--NFS_light-green);
            color: white;
            font-size: 2rem;
            padding: 20px;
            text-align: center;
        }

        .NFS_course-content {
            padding: 25px;
        }

        .NFS_course-content h3 {
            margin-bottom: 10px;
        }

        .NFS_course-duration {
            color: var(--NFS_accent-orange);
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Lab Section */
        .NFS_lab {
            background-color: var(--NFS_light-gray);
        }

        .NFS_lab-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .NFS_lab-images {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .NFS_lab-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .NFS_lab-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .NFS_lab-text {
            flex: 1;
        }

        .NFS_lab-features {
            list-style: none;
            margin-top: 20px;
        }

        .NFS_lab-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .NFS_lab-features i {
            color: var(--NFS_light-green);
            margin-right: 10px;
        }

        /* Faculty Section */
        .NFS_faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .NFS_faculty-card {
            text-align: center;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .NFS_faculty-image {
            height: 250px;
            overflow: hidden;
        }

        .NFS_faculty-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .NFS_faculty-card:hover .NFS_faculty-image img {
            transform: scale(1.1);
        }

        .NFS_faculty-info {
            padding: 20px;
        }

        .NFS_faculty-info h3 {
            margin-bottom: 5px;
        }

        .NFS_faculty-designation {
            color: var(--NFS_accent-orange);
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Careers Section */
        .NFS_careers {
            background-color: var(--NFS_light-gray);
        }

        .NFS_careers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .NFS_career-card {
            background-color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        /* .NFS_career-card:hover {
            transform: translateY(-5px);
        } */

        .NFS_career-icon {
            background-color: var(--NFS_light-green);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }

        /* Research Section */
        .NFS_research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .NFS_research-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .NFS_research-image {
            height: 200px;
            overflow: hidden;
        }

        .NFS_research-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .NFS_research-content {
            padding: 25px;
        }

        /* Contact Section */
        .NFS_contact {
            background-color: var(--NFS_primary-green);
            color: white;
        }

        .NFS_contact .NFS_section-title {
            color: white;
        }

        .NFS_contact .NFS_section-title:after {
            background-color: var(--NFS_accent-orange);
        }

        .NFS_contact-container {
            display: flex;
            gap: 40px;
        }

        .NFS_contact-form {
            flex: 1;
        }

        .NFS_contact-info {
            flex: 1;
        }

        .NFS_form-group {
            margin-bottom: 20px;
        }

        .NFS_form-group label {
            display: block;
            margin-bottom: 8px;
        }

        .NFS_form-control {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .NFS_contact-details {
            list-style: none;
        }

        .NFS_contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .NFS_contact-details i {
            margin-right: 15px;
            color: var(--NFS_accent-orange);
            font-size: 1.2rem;
            width: 20px;
        }


        /* Responsive Styles */
        @media (max-width: 992px) {
            .NFS_intro-content, .NFS_lab-content, .NFS_contact-container {
                flex-direction: column;
            }
            
            .NFS_hero h1 {
                font-size: 2.5rem;
            }
            
            .NFS_hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .NFS_section {
                padding: 60px 0;
            }
            
            .NFS_lab-images {
                grid-template-columns: 1fr;
            }
        }


/* ============  Nutrition & Food Science End ============== */



/* ============  Admission Page Start ============== */


     /* Global Styles */
        :root {
            --Adm_primary-color: #D67127;
            --Adm_secondary-color: #163E68;
            --Adm_light-color: #f8f9fa;
            --Adm_dark-color: #333;
            --Adm_success-color: #28a745;
            --Adm_shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --Adm_transition: all 0.3s ease;
        }

        .Adm_container h2 {
          font-size: 3rem;
          font-weight: 600;
          color: #d77126;
          margin-bottom: 40px;
          text-align: center;
        }


        .Adm_container {
            padding: 3rem 0;
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
        }

        .Adm_btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--Adm_primary-color);
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: var(--Adm_transition);
            border: none;
            cursor: pointer;
        }

        .Adm_btn:hover {
            background-color: #c26120;
            transform: translateY(-2px);
            box-shadow: var(--Adm_shadow);
        }

        .Adm_btn-secondary {
            background-color: var(--Adm_secondary-color);
        }

        .Adm_btn-secondary:hover {
            background-color: #0f2c4d;
        }

        .Adm_btn-outline {
            background-color: transparent;
            border: 2px solid var(--Adm_primary-color);
            color: var(--Adm_primary-color);
        }

        .Adm_btn-outline:hover {
            background-color: var(--Adm_primary-color);
            color: white;
        }

        /* Form Container */
        .Adm_form-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--Adm_shadow);
            overflow: hidden;
            display: flex;
            min-height: 700px;
        }

        .Adm_form-sidebar {
            background: linear-gradient(135deg, var(--Adm_secondary-color), #1e4a7a);
            color: white;
            padding: 40px;
            width: 35%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .Adm_form-content {
            padding: 40px;
            width: 100%;
            overflow-y: auto;
            max-height: auto;
        }

        .Adm_logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
        }

        .Adm_logo span {
            color: var(--Adm_primary-color);
        }

        .Adm_sidebar-features {
            list-style: none;
            margin-top: 30px;
        }

        .Adm_sidebar-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .Adm_sidebar-features i {
            color: var(--Adm_primary-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .Adm_contact-info {
            margin-top: 40px;
        }

        .Adm_contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .Adm_contact-info i {
            margin-right: 10px;
            width: 20px;
            color: var(--Adm_primary-color);
        }

        /* Form Progress */
        .Adm_form-progress {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .Adm_form-progress:before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: #e0e0e0;
            z-index: 1;
        }

        .Adm_progress-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .Adm_step-indicator {
            background-color: #e0e0e0;
            color: var(--Adm_dark-color);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .Adm_progress-step.active .Adm_step-indicator {
            background-color: var(--Adm_primary-color);
            color: white;
        }

        .Adm_progress-step.completed .Adm_step-indicator {
            background-color: var(--Adm_success-color);
            color: white;
        }

        .Adm_step-label {
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* Form Steps */
        .Adm_form-step {
            display: none;
        }

        .Adm_form-step.active {
            display: block;
            animation: Adm_fadeIn 0.5s ease;
        }

        @keyframes Adm_fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .Adm_form-header {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .Adm_form-header h2 {
            margin-bottom: 5px;
            color: var(--Adm_secondary-color);
        }

        .Adm_form-group {
            margin-bottom: 20px;
        }

        .Adm_form-row {
            display: flex;
            gap: 20px;
        }

        .Adm_form-row .Adm_form-group {
            flex: 1;
        }

        .Adm_form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--Adm_secondary-color);
        }

        .Adm_form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--Adm_transition);
        }

        .Adm_form-control:focus {
            border-color: var(--Adm_primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(214, 113, 39, 0.2);
        }

        select.Adm_form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }

        textarea.Adm_form-control {
            min-height: 100px;
            resize: vertical;
        }

        .Adm_form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .Adm_required:after {
            content: ' *';
            color: #e74c3c;
        }

        .Adm_file-upload {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .Adm_file-upload-btn {
            background-color: var(--Adm_light-color);
            border: 1px dashed #ccc;
            color: var(--Adm_dark-color);
            padding: 12px 15px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: normal;
            width: 100%;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .Adm_file-upload-btn i {
            color: var(--Adm_primary-color);
        }

        .Adm_file-upload input[type=file] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .Adm_file-list {
            margin-top: 10px;
            font-size: 0.9rem;
        }

        .Adm_file-item {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            padding: 5px 10px;
            background-color: var(--Adm_light-color);
            border-radius: 4px;
        }

        .Adm_file-item i {
            color: var(--Adm_primary-color);
            margin-right: 8px;
        }

        .Adm_file-item .Adm_file-name {
            flex: 1;
        }

        .Adm_file-item .Adm_file-remove {
            color: #e74c3c;
            cursor: pointer;
        }

        .Adm_checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .Adm_checkbox-group input {
            margin-right: 10px;
            margin-top: 5px;
        }

        .Adm_checkbox-group label {
            margin-bottom: 0;
            font-weight: normal;
        }

        .Adm_form-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        .Adm_review-section {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .Adm_review-section h4 {
            color: var(--Adm_primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .Adm_review-item {
            margin-bottom: 8px;
            display: flex;
        }

        .Adm_review-label {
            font-weight: 500;
            min-width: 150px;
            color: var(--Adm_secondary-color);
        }

        /* Success Message */
        .Adm_success-message {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .Adm_success-icon {
            font-size: 4rem;
            color: var(--Adm_success-color);
            margin-bottom: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .Adm_form-container {
                flex-direction: column;
            }
            
            .Adm_form-sidebar, .Adm_form-content {
                width: 100%;
            }
            
            .Adm_form-sidebar {
                padding: 30px;
            }
            
            .Adm_form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .Adm_form-progress {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .Adm_progress-step {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 480px) {
            .Adm_form-progress {
                flex-direction: column;
                gap: 20px;
            }
            
            .Adm_progress-step {
                flex: 1;
                display: flex;
                align-items: center;
                text-align: left;
            }
            
            .Adm_step-indicator {
                margin: 0 15px 0 0;
            }
            
            .Adm_form-progress:before {
                display: none;
            }
        }


/* ============  Admission Page End ============== */



/* ============  News and Events Page Start ============== */

 /* ====== News Section ====== */
    .news-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      color: #163E68;
      font-size: 2rem;
      border-bottom: 3px solid #D67127;
      display: inline-block;
      padding-bottom: 5px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .news-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .news-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .news-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .news-content {
      padding: 20px;
    }

    .news-content h3 {
      color: #163E68;
      margin-bottom: 10px;
      font-size: 1.25rem;
    }

    .news-content p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 15px;
    }

    .news-content a {
      color: #D67127;
      font-weight: 600;
      transition: color 0.3s;
    }

    .news-content a:hover {
      color: #163E68;
    }


/* ============  News and Events Page End ============== */



/* ============  News and Events Details Page Start ============== */

 /* ====== Event Content Section ====== */
    /* ====== Event Details Section ====== */
.event-details {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.event-details h2 {
  color: #163E68;
  margin-bottom: 15px;
  border-left: 5px solid #D67127;
  padding-left: 10px;
  font-size: 1.8rem;
}

.event-details p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

/* ====== Gallery Section ====== */
.gallery {
  margin-top: 40px;
}

.gallery h3 {
  color: #163E68;
  margin-bottom: 25px;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
}

/*  Pinterest-style Masonry Grid */
.gallery-grid {
  column-count: 3;
  column-gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  display: block;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


/* ====== Responsive ====== */
@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* ====== Back Button ====== */
.back-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 25px;
  background: #D67127;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
}

.back-btn:hover {
  background: #163E68;
}

/* ============  News and Events Details Page End ============== */



/* ============  Contact Us Page Start ============== */

  .con_container {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
      align-items: center;
      justify-content: center;
      padding: 40px;
      gap: 40px;
    }

    .con_left {
      flex: 1;
      max-width: 450px;
    }

    .con_left h5 {
      color: #D67127;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .con_left h1 {
      font-size: 2.2rem;
      margin-bottom: 15px;
      color: #163E68;
    }

    .con_left p {
      color: #555;
      margin-bottom: 25px;
    }

    .con_info {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      background: white;
      padding: 12px 15px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .con_icon {
      width: 40px;
      height: 40px;
      background: #D67127;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-right: 15px;
    }

    .con_social {
      margin-top: 25px;
    }

    .con_social a {
      color: #163E68;
      font-size: 20px;
      margin-right: 15px;
      transition: 0.3s;
    }

    .con_social a:hover {
      color: #D67127;
    }

    .con_right {
      flex: 1;
      max-width: 500px;
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .con_form input, 
    .con_form textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
      font-size: 15px;
      transition: 0.3s;
    }

    .con_form input:focus, 
    .con_form textarea:focus {
      border-color: #D67127;
      box-shadow: 0 0 5px rgba(214,113,39,0.3);
    }

    .con_btn {
      background: #163E68;
      color: white;
      border: none;
      padding: 12px 25px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      width: 100%;
    }

    .con_btn:hover {
      background: #D67127;
    }

    .con_map {
      width: 100%;
      height: 350px;
      margin-top: 40px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    @media(max-width: 900px) {
      .con_container {
        flex-direction: column;
        align-items: stretch;
      }

      .con_left, .con_right {
        max-width: 100%;
      }
    }

/* ============  Contact Us Page End ============== */


@media (max-width: 786px) {
    .grid-container{
      position: static;
    }
}


/* ==================================================   Animation  ============================== */


/* Animation class */
.fade-scale-up {
  animation: fadeScaleUp 1.2s ease-out forwards;
  opacity: 0; /* so it fades in cleanly */
}

/* Optional delays for staggered effect */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }


/* ===== NAVBAR ANIMATION ===== */

/* Navbar container animation */
@keyframes navSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

nav {
  animation: navSlideDown 1s ease-out forwards;
  opacity: 0;
}

/* Animate individual links one-by-one */
@keyframes navLinkFade {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links li {
  opacity: 0;
  animation: navLinkFade 0.7s ease-out forwards;
}

/* Staggered delay for each link */
.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.45s; }
.nav-links li:nth-child(3) { animation-delay: 0.6s; }
.nav-links li:nth-child(4) { animation-delay: 0.75s; }
.nav-links li:nth-child(5) { animation-delay: 0.9s; }

/* Apply slight hover glow to links */
.nav-links a:hover {
  color: #c85a11;
  text-shadow: 0 0 10px rgba(200, 90, 17, 0.5);
  transition: 0.3s ease-in-out;
}
.card-vmv {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

