/* Global Reset and Smooth Scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: #f4f4f4;
  overflow-x: hidden;
}

/* Header Video Background */
.video-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform:none;
    object-fit: cover;
    z-index: 0;
}
.video-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.1); /* slight dark tint */
  z-index: 1;
}
/* Hero section on top of video */
.video-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  padding: 30px;
  max-width: 95%;
}

/* Hero Image */
.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Hero Title */
.hero-title {
  margin-top: 30px;
  font-size: 48px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #eaee0c;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

/* Highlight word */
.hero-title .highlight {
  color: #00ffe5;
  font-style: italic;
  text-shadow: 0 0 50px rgba(0, 10, 9, 0.5);
}

/* Subtitle */
.hero-subtitle {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  color: #e0e0e0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* === Mobile Responsive Adjustments === */
@media (max-width: 768px) {
  .hero-image {
    max-width: 100%;
  }

  .hero-title {
    font-size: 65px;
    margin-top: 20px;
    
  }

  .hero-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

  .video-hero {
    top: 52%;
    transform: translate(-50%, -50%);
    padding: 15px;
  }
    .background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    top: 0;
    left: 0;
    transform: none;
  }
}

/* Base navbar */
.main-navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  z-index: 1001;
  transition: all 0.3s ease;
  height: 7cap;
}

.main-navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}


/* Logo */
.logo img {
  height: 60px;
}

/* Nav links */
.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.nav-links li {
  padding: 0;
  margin: 0;
}

.nav-links li a {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 4px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f1c40f;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}
/* Apply button (desktop default) */
.apply-btn {
  background: #f1c40f;
  color: #000;
  padding: 10px 24px;
  border-radius: 28px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
   margin-left: auto;
}

.apply-btn:hover {
  background: #ffe55e;
  box-shadow: 0 0 20px #f1c40f, 0 0 30px rgba(241, 196, 15, 0.4);
  transform: scale(1.05);
}
/* Apply button (mobile default) */

@media (max-width: 768px) {
  .apply-btn {
    display: block;
    margin: 12px auto 0 auto; /* center horizontally */
    text-align: center;
  }
}
/*========Scroll to Explore========= */

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #f1c40f;
  font-weight: 500;
  animation: pulse 2s infinite;
  z-index: 15;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
  }
  100% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(0);
  }
}


/* Menu toggle button (hidden by default) */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  margin-left: 20px;
}

/* Nav Links Sidebar for Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1000;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
  }

  .menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    right: auto; 
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 25px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
    display: flex;

  }
  .nav-links li {
    margin-bottom: 20px;
  }
  .nav-links li a {
    font-size: 15px;
    color: white;
    width: 100%;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Overlay to close menu on outside click */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}
/* Section Base Styling */
.section {
    padding: 80px 100px;
    background-color: #111;
}

.section:nth-child(even),
.student-work:nth-child(even) {
   background-color: #161616;
}

.section h2,
.student-work h2 {
    font-size: 2.5em;
    color: #f5eded;
    text-align: center;
    position: relative;
}

.section h2::after,
.student-work h2::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #f1c40f, #00ffe5);
    margin: 10px auto;
    border-radius: 10px;
    width: 100px;
    box-shadow: 0 0 12px rgba(0, 255, 229, 0.6);
}

.section p,
.student-work p {
    font-size: 1.2em;
    color: #f1eeee;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6em;
}

/* Course Section */
.course-section .course-grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.course-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.course-box:hover {
  box-shadow: 0 0 25px #f1c40f, 0 0 40px rgba(241, 196, 15, 0.3);
  transform: translateY(-12px) scale(1.03);
}

.course-image {
    width: 100%;
    height: 500px;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: transform 0.3s ease;
}

.course-box:hover img {
    transform: scale(1.05);
}

.course-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    color: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-weight: 400;
    transition: background 0.3s ease;
}

.course-overlay h3 {
  font-size: 1.5em;
  color: #00ffe5;
  text-shadow: 0 0 10px rgba(0, 255, 229, 0.4);
}

.course-overlay p {
    font-size: 1em;
    color: #ddd;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Only reveal the paragraph on hover */
.course-box:hover .course-overlay p {
    max-height: 100px;
    opacity: 1;
}
/* Student Work Section */
.student-work {
    padding: 60px 100px;
    background-color: #f9f9f9;
}

/*slideshow Styling*/
.student-work {
   position: relative;
  text-align: center;
  padding: 3rem 1rem;
  background: url('pictures/sbg.jpg') center/cover no-repeat;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1;
}
.student-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 16, 0.85); /* soft white overlay */
  z-index: -1;
}
.slider-box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  padding: 3rem 3rem;
  background:transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
  align-items: center;
}

.slide {
  flex: 0 0 33.333%;
  transform: scale(0.6);
  opacity: 0.2;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slide.active {
  transform: scale(1.4);
  opacity: 1;
  z-index: 2;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffee;
  border: none;
  font-size: 1.8rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  z-index: 3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav:hover {
  background: #f0f0f0;
}

.nav.prev {
  left: 10px;
}

.nav.next {
  right: 10px;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* === Placement Section with Scroll (Max 3 visible) === */
.placement-section {
  background-color: #121212;
  padding: 80px 60px;
  text-align: center;
}

.placement-scroll-wrapper {
  overflow: hidden; /* for slider behavior */
  margin-top: 50px;
  position: relative;
}

.placement-scroll-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
  will-change: transform;
  justify-content: center; 
}

/* Each placement card takes 1/3 of track */
.placement-card {
  flex: 0 0 33.3333%;
  background: #1e1e1e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 255, 229, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  text-align: center;
}

.placement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.25);
}

.placement-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid #333;
  display: block;
}

.placement-details {
  padding: 20px;
  color: #e0e0e0;
}

.placement-details h3 {
  color: #00ffe5;
  font-size: 18px;
  margin-bottom: 10px;
}

.placement-details p {
  font-size: 14px;
  color: #ccc;
  margin: 4px 0;
}
.placement-scroll-wrapper {
  overflow: hidden;
  margin: 50px auto 0 auto;
  max-width: 1000px;
}
.placement-button-wrap {
  margin-top: 30px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  background: #f1c40f;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(241, 196, 15, 0.4);
}

.view-all-btn:hover {
  background: #ffe55e;
  transform: scale(1.05);
  box-shadow: 0 0 20px #f1c40f;
}

/* === Responsive: Show 1 card at a time on small screens === */
@media (max-width: 768px) {
  .placement-card {
    flex: 0 0 100%;
  }

  .placement-scroll-track {
    gap: 20px;
  }

  .placement-section {
    padding: 60px 20px;
  }
}

/* === Achievements === */
.achievements-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.achievement-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 229, 0.1);
  width: 100%;
  height: auto;
}

.achievement-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.achievement-card h3 {
  color: #f1c40f;
  margin-top: 10px;
}

/* === Large Slideshow === */
.achievement-slideshow {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  position: relative;
}

.achievement-slideshow img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(241, 196, 15, 0.15);
}

.slide-caption {
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin-top: 12px;
}

/* Button */
.achievement-button-wrap {
  margin-top: 30px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  background: #f1c40f;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(241, 196, 15, 0.4);
}

.view-all-btn:hover {
  background: #ffe55e;
  transform: scale(1.05);
  box-shadow: 0 0 20px #f1c40f;
}

@media (max-width: 768px) {
  .achievements-container {
    flex-direction: column;
    align-items: center;
  }

  .achievement-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* === FAQ Section === */
.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq-question {
  width: 100%;
  background: #222;
  color: #f4f4f4;
  border: none;
  text-align: left;
  padding: 16px;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 8px;
  border-radius: 8px;
}
.faq-question.active {
  background-color: #333;
}
.faq-answer {
  background: #111;
  color: #ccc;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-radius: 0 0 8px 8px;
}

/* === Footer Section === */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 40px 30px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.logo-column img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #00ffe5;
}

.footer-column p {
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f1c40f;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: #00ffe5;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-social i {
  font-size: 24px;
  color: #fff;
  margin-right: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-bottom {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 40px 20px; /* Reduced padding for small screens */
  }

  .section h2,
  .student-work h2 {
    font-size: 1.8em;     /* Smaller headings */
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
  }

  .section p,
  .student-work p {
    font-size: 15px;      /* Easier reading */
    line-height: 1.6;
    color: #dddddd;
    padding: 0 10px;
    text-align: justify;
    max-width: 100%;
    word-wrap: break-word;
  }

  .section h2::after,
  .student-work h2::after {
    width: 80px;          /* Shorter underlines for mobile view */
    margin-top: 10px;
  }

  .student-work {
    padding: 30px 20px;   /* Slightly reduced for better spacing */
  }
}
@media (max-width: 768px) {
  .course-section {
    padding: 40px 20px;
  }

  .course-section .course-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 30px;
    margin-top: 30px;
  }

  .course-image {
    height: 280px; /* Smaller image height */
  }

  .course-overlay {
    padding: 16px;
    font-size: 14px;
  }

  .course-overlay h3 {
    font-size: 18px;
  }

  .course-overlay p {
    font-size: 13px;
    line-height: 1.5;
    padding-top: 8px;
  }
}
@media (max-width: 768px) {
  .slider {
    gap: 1rem; /* smaller gap */
  }

  .slide {
    flex: 0 0 100%; /* Full width for single item */
    transform: scale(0.9);
    opacity: 0.7;
  }

  .slide.active {
    transform: scale(1.05);
    opacity: 1;
  }

  .slider-box {
    padding: 1rem; /* compact padding for mobile */
  }
}
.recruiters-marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.recruiters-track {
  display: flex;
  gap: 60px;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.recruiters-track img {
  max-height: 90px;
  padding: 10px;
  object-fit: contain;
}

/* Scroll left to right */
.reverse-track {
  animation: scrollRight 30s linear infinite;
}

/* Animations */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.recruiters-marquee:hover .recruiters-track {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .recruiters-track {
    animation-duration: 45s;
  }
}
.about-content.two-column {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  max-width: 900px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .about-content.two-column {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
    margin-top: 20px;
  }
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.5s ease-in-out;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: slideIn 0.5s ease-out;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #f1c40f;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-map-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 300px;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 229, 0.2);
}

.contact-map-column .contact-details p {
  margin-bottom: 10px;
  color: #ccc;
}
/* For wider screens, show contact and map side-by-side */
@media (min-width: 769px) {
  .contact-map-column {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .contact-details {
    flex: 1;
  }

  .map-container {
    flex: 1;
  }

  .map-container iframe {
    height: 200px;
  }
}

/* On mobile, stack them */
@media (max-width: 768px) {
  .contact-map-column {
    flex-direction: column;
  }

  .map-container iframe {
    height: 250px;
    width: 100%;
  }
}
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Popup content box */
.modal-content {
  background-color: #1e1e1e;
  color: white;
  margin: 8% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 2px solid #f5c518;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Form inputs */
.modal-content form input,
.modal-content form select,
.modal-content form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #2c2c2c;
  color: #fff;
}

/* Submit button */
.modal-content form button {
  background-color: #f5c518;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-content form button:hover { 
  background-color: #e0b600;
}

/* Close button */
.close {
  position: absolute;
  right: 20px; top: 15px;
  font-size: 28px;
  color: #f5c518;
  cursor: pointer;
}

/* Animation */
.animate {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

#enquiryForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#enquiryForm input,
#enquiryForm select,
#enquiryForm textarea {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#enquiryForm button {
  background: #007bff;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#enquiryForm button:hover {
  background: #0056b3;
}

#confirmationMessage {
  padding: 1rem;
  color: #28a745;
  font-weight: bold;
}
* Achievements Section */
.achievements-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1c0f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.achievement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.achievement-image {
  flex: 1;
  position: relative;
}

.achievement-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  z-index: 1;
}

.achievement-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievement-content {
  flex: 1;
}

.achievement-content h2 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 2rem;
  position: relative;
}

.achievement-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FFD700;
}

.award-details {
  display: flex;
  gap: 2rem;
}

.award-icon {
  font-size: 3rem;
  color: #FFD700;
  opacity: 0.9;
}

.award-text h3 {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.award-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.award-highlights {
  list-style: none;
  padding: 0;
}

.award-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #e0e0e0;
}

.award-highlights li i {
  color: #FFD700;
  font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .achievement-container {
    flex-direction: column;
    gap: 3rem;
  }

  .achievement-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .achievement-content {
    text-align: center;
  }

  .achievement-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .award-details {
    flex-direction: column;
    align-items: center;
  }

  .award-text {
    text-align: center;
  }

  .award-highlights li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .achievements-section {
    padding: 3rem 1rem;
  }

  .achievement-content h2 {
    font-size: 2rem;
  }

  .award-text h3 {
    font-size: 1.5rem;
  }

  .award-text p {
    font-size: 1rem;
  }
}
