* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* 🔸 Top Bar */
.top-bar {
  background: #e84c0d;
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
.top-bar .left span {
  margin-right: 15px;
}


/* 🔸 Header */
header {
  background: #fff;
  border-bottom: 3px solid #e84c0d;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 60px;
  margin-right: 10px;
}
.logo h1 {
  color: #002147;
  font-size: 22px;
  line-height: 1.2;
}
.logo p {
  color: #555;
  font-size: 12px;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #002147;
  font-weight: 500;
  padding: 5px 10px;
}
nav ul li a.active,
nav ul li a:hover {
  color: #e84c0d;
  border-bottom: 2px solid #e84c0d;
}

/* 🔸 Notice Bar */
.notice-bar {
  background: #c8102e;
  color: #fff;
  font-weight: 500;
  padding: 5px;
  font-size: 15px;
}

/* 🔸 Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  height: 600px;
}
.slider {
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
}
.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}
.content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.content p {
  font-size: 20px;
  color: #ffcc00;
}
.content .desc {
  font-size: 15px;
  margin: 15px 0;
  color: #fff;
}
.buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.apply {
  background: #e84c0d;
  color: #fff;
}
.learn {
  border: 2px solid #fff;
  color: #fff;
}
.prev, .next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 24px;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  nav ul { flex-wrap: wrap; }
  .content h2 { font-size: 28px; }
  .content p { font-size: 16px; }
}


/* ===== Stats Section ===== */
.stats-section {
  background-color: #1d3b8b; /* Dark Blue Background */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.stat-box {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.stat-box .icon {
  background-color: #e84c0d; /* Orange Circle */
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: 30px;
}

.stat-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #d9e3ff;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}


/* 🔸 Departments Section */
.departments {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafb;
}

.departments .section-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.departments .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-content: center;
}

.dept-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.dept-card i {
  font-size: 2.5rem;
  color: #fff;
  background: #000;
  border-radius: 50%;
  padding: 18px;
  margin-bottom: 15px;
}

.dept-card h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

/* 🔹 Color Variants */
.yellow i { background: #f5b942; }
.blue i { background: #3b82f6; }
.green i { background: #22c55e; }
.cyan i { background: #06b6d4; }
.red i { background: #ef4444; }
.orange i { background: #f97316; }
.pink i { background: #ec4899; }
.purple i { background: #a855f7; }
.violet i { background: #6366f1; }
.gold i { background: #facc15; }
.crimson i { background: #dc2626; }

@media (max-width: 600px) {
  .dept-card {
    padding: 25px 15px;
  }
  .dept-card i {
    font-size: 2rem;
  }
}


/* 🔸 Career Section */
.career-section {
  background: linear-gradient(90deg, #0d47a1, #1565c0);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.career-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.career-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.career-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.career-buttons .btn.primary {
  background: #ff6b00;
  color: #fff;
}

.career-buttons .btn.primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
}

.career-buttons .btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.career-buttons .btn.secondary:hover {
  background: #fff;
  color: #0d47a1;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
  .career-content h2 {
    font-size: 1.6rem;
  }
  .career-content p {
    font-size: 0.95rem;
  }
  .career-buttons .btn {
    width: 100%;
    text-align: center;
  }
}


/* ---- About Section Base ---- */
.about-section {
    padding: 70px 0;
    background-color: #ffffff;
    font-family: "Segoe UI", sans-serif;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* ---- Header ---- */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #063cff;
}

.about-header p {
    font-size: 18px;
    color: #555;
}

/* ---- Layout ---- */
.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ---- Text Content ---- */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 17px;
    color: #444;
    line-height: 28px;
}

/* ---- Metrics (New Unique Classes) ---- */
.about-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.metric-card {
    background: rgba(220, 230, 255, 0.65);
    padding: 22px 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.metric-card h2 {
    font-size: 34px;
    color: #063cff;
    margin-bottom: 5px;
    font-weight: 700;
}

.metric-card p {
    color: #444;
    font-size: 15px;
}

/* Highlight Box */
.metric-green {
    background: rgba(205, 255, 205, 0.65);
}

.metric-green h2 {
    color: #047a2d;
}

/* ---- Image ---- */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.12);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-metrics {
        justify-content: center;
    }
}

