* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #f7f9fc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 55px;
  height: 48px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d1d1f;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #5f6472;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #e8f0ff;
  color: #3b82f6;
}

.nav-links a.active {
  background-color: #e8f0ff;
  color: #3b82f6;
}

.apply-button {
  background-color: #ff7b1d;
  color: white;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background-color: #ff924a;
}

/* HERO SECTION */
.hero {
  background: url('../Images/school-image7.jpg') center center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(to right, #2b80ff, #60b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.5rem;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-buttons .btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-btn {
  background-color: #1da1ff;
  color: #fff;
}

.apply-btn:hover {
  background-color: #121c85;
}

.learn-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.learn-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 20px;
  width: 200px;
  backdrop-filter: blur(6px);
}

.stat .icon {
  font-size: 28px;
  color: #1d68ff;
  margin-bottom: 10px;
}

.stat h3 {
  color: #fff;
  font-size: 1.3rem;
}

.stat p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Bottom Announcement Bar */
.announcement-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #1d4ed8;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.95rem;
  text-align: center;
}

/* WHY CHOOSE SECTION */
.why-choose {
  padding: 60px 30px;
  background-color: #f9fafc;
  text-align: center;
}

.why-choose-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

.why-choose-header h2 span {
  color: #3b82f6;
}

.why-choose-header p {
  max-width: 700px;
  margin: 12px auto 30px;
  font-size: 1rem;
  color: #6b7280;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 5000px;
  margin: auto;
}

.feature-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 200%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  text-align: left;
  padding: 20px;
}

.feature-content .icon {
  font-size: 20px;
  color: #3b82f6;
  margin-bottom: 10px;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.feature-content p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* FOOTER */
.footer {
  background-color: #0f1a2c;
  color: #c9d1e0;
  padding: 50px 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #c9d1e0;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-section.contact i {
  margin-right: 8px;
  color: #3b82f6;
}

.social-icons a {
  color: #d1d5db;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3b82f6;
}

.footer-bottom {
  border-top: 1px solid #24344f;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom a {
  color: #a1b2cd;
  margin: 0 5px;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Latest News */
.latest-news {
  background-color: #f9fafb;
  padding: 80px 20px;
}

.news-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.news-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

.news-intro h2 span {
  color: #3b82f6;
}

.news-intro p {
  margin: 16px 0;
  color: #6b7280;
}

.btn-blue {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #3b82f6;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-blue:hover {
  background-color: #2563eb;
}

.news-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.news-date {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.news-date i {
  margin-right: 6px;
  color: #3b82f6;
}

.news-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.news-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

.tag {
  background-color: #e0f2fe;
  color: #0284c7;
  padding: 3px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  margin-left: 10px;
}

.tag.blue {
  background-color: #dbeafe;
  color: #3b82f6;
}

.tag.gray {
  background-color: #f3f4f6;
  color: #6b7280;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(to right, #0077ff, #0088ff);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #fefefe;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-orange {
  background-color: #052e5a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-orange:hover {
  background-color: #020247;
}

.btn-outline {
  border: 2px solid #f3f4f6;
  background-color: transparent;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

