.overview-box-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1b010a;
  padding: 50px 30px;
  border-radius: 20px;
  margin: 60px auto;
  gap: 40px;
  max-width: 1200px;
  position: relative;
  box-shadow: 0 0 45px rgba(241, 196, 15, 0.1);
}

.overview-box-text {
  flex: 1;
  background: linear-gradient(to bottom, #8f0b2f, #5a041e);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.overview-box-text h2 {
  font-size: 32px;
  font-family: "Rubik Dirt", system-ui;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.overview-box-text h4 {
  font-size: 20px;
  font-family: "Rubik Dirt", system-ui;
  font-weight: 500;
  color: #ffe55e;
  margin-bottom: 20px;
}

.overview-box-text p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Knewave', cursive !important;
  color: #fff;
  margin-bottom: 20px;
  text-align: justify;
}

.overview-cta-btn {
  display: inline-block;
  border: 1px solid #ffe55e;
  color: #ffe55e;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.overview-cta-btn:hover {
  background: #ffe55e;
  color: #5a041e;
}

.overview-box-image {
  flex: 1;
  text-align: center;
}

.overview-box-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .overview-box-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .overview-box-image img {
    max-width: 100%;
  }
}
.animation-course-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
  background: linear-gradient(to right, #1b010a, #000000);
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1400px;
  position: relative;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.6s ease-out forwards;
}

.course-left {
  background-color: #8f0b2f;
  padding: 40px;
  text-align: center;
  border-radius: 14px;
  color: white;
  flex: 1;
  max-width: 250px;
}

.course-left .course-number {
  font-size: 64px;
  font-weight: 800;
  color: white;
  border: 3px solid white;
  display: inline-block;
  padding: 0 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.course-left h3 {
  font-size: 22px;
  font-family: "Rubik Dirt", system-ui;
  font-weight: 700;
  letter-spacing: 1px;
}

.course-center {
  flex: 1;
  text-align: center;
}

.course-center img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.course-right {
  flex: 2;
  color: white;
}

.course-right h2 {
  font-size: 36px;
  font-family: "Rubik Dirt", system-ui;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 20px;
}

.course-right p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Knewave', cursive !important;
  color: #ccc;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #ffc107;
  color: #ffc107;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #ffc107;
  color: #000;
}

@media (max-width: 768px) {
  .animation-course-block {
    flex-direction: column;
    padding: 30px 20px;
  }

  .course-left, .course-center, .course-right {
    max-width: 100%;
    text-align: center;
  }

  .course-right h2 {
    font-size: 24px;
  }

  .course-right p {
    font-size: 15px;
  }
}
.career-opportunities-section {
  background: linear-gradient(to right, #0d0d0d, #1a0a0a);
  padding: 60px 30px;
  text-align: center;
  color: #fff;
}

.career-title h2 {
 font-family: "Rubik Dirt", system-ui;
  color: #ffc107;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 800;
}

.career-title p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.career-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.career-card {
  width: 220px;
  text-align: center;
}

.career-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.career-card h4 {
    
  margin-top: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .career-cards {
    flex-direction: column;
    align-items: center;
  }

  .career-card {
    width: 90%;
  }
}
/* AD3D EDGE PLUS Page Styles */
body {
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.video-header {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 20px;
  color: #eee;
}

.ad3d-full-details {
  padding: 60px 30px;
  background: #121212;
  color: #fff;
}

.course-structure-header h2 {
  font-size: 32px;
  color: #ffc107;
  text-align: center;
}

.course-structure-header p {
  text-align: center;
  color: #ccc;
  font-size: 18px;
  margin-bottom: 40px;
}

.semesters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.semester-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 30%;
  box-shadow: 0 0 12px rgba(255,255,255,0.05);
}

.semester-card h3 {
  color: #ffe55e;
  font-size: 20px;
  margin-bottom: 15px;
}

.semester-card ul {
  list-style: none;
  padding: 0;
}

.semester-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
  font-size: 15px;
}

.ad3d-extra {
  margin-top: 50px;
  text-align: center;
}

.ad3d-extra h3 {
  color: #ffc107;
  margin-top: 20px;
  font-size: 22px;
}

.ad3d-extra ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
}

.ad3d-extra ul li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

.ad3d-buttons {
  margin-top: 30px;
}

.read-more-btn, .overview-cta-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px;
  border: 1px solid #ffc107;
  color: #ffc107;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.read-more-btn:hover, .overview-cta-btn:hover {
  background: #ffc107;
  color: #000;
}

@media (max-width: 768px) {
  .semesters-grid {
    flex-direction: column;
  }

  .semester-card {
    flex: 1 1 100%;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add animation delay for sequential appearance */
.animation-course-block:nth-child(2) { animation-delay: 0.2s; }
.animation-course-block:nth-child(3) { animation-delay: 0.4s; }
