* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b1320;
  color: white;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  color: whitesmoke;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo span {
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #ced1d4;   /* grey text */
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffffff;   /* blue on hover */
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url("campus.jpg") center/cover no-repeat;
  position: relative;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 150px 60px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

h1 {
  font-size: 60px;
  line-height: 1.1;
}

h1 span {
  color: #fbbf24; /* yellow */
}

p {
  margin: 20px 0;
  line-height: 1.6;
  color: #ddd;
}

.btn {
  padding: 12px 20px;
  background: rgba(237, 235, 235, 0.807);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-size: 14px;
}
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
  }

  .section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
  }

  .card {
    background: linear-gradient(135deg, #2f4a86, #3e5f9e);
    color: white;
    max-width: 1100px;
    width: 100%;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
  }
.card::before,
  .card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }

  .card::before {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
  }

  .card::after {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -60px;
  }
  .content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .icon-box {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .icon-box span {
    font-size: 28px;
  }
 .badge {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #f4a100;
    color: #f4a100;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .text h2 {
    margin: 0 0 15px;
    font-size: 36px;
    font-weight: 700;
  }

  .text p {
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
    color: #e0e6f5;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      gap: 20px;
    }

    .text h2 {
      font-size: 28px;
    }
  }
 

  .why-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
  }

  .why-section h2 {
    font-size: 48px;
    color: #0f2747;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .why-section p {
    font-size: 18px;
    color: #5a6f85;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .why-section p:first-of-type {
    font-size: 20px;
    color: #4a627a;
  }

  /* Optional: slight animation */
  .why-section {
    animation: fadeIn 1s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .why-section h2 {
      font-size: 34px;
    }

    .why-section p {
      font-size: 16px;
    }
  }
.navbar {
  display: flex;
  justify-content: space-between; /* pushes left & right apart */
  align-items: center;            /* vertically centers everything */
  padding: 10px 40px;

}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

.logo-section img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px; /* spacing between menu items */
}

.nav-links a {
  text-decoration: none;
  color: #f0f1f3d4;
  font-size: 18px;
}
.visit-btn {
  text-decoration: none; /* Removes the underline */
  color: #ffffff;        /* Forces text to white */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* This prevents the color from changing to purple after clicking */
.visit-btn:visited {
  color: #ffffff;
}

/* Optional: Slight glow on hover */
.visit-btn:hover {
  background: rgba(15, 1, 1, 0.701);
  color: #ffffff;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .card {
    padding: 15px;
  }
}@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .programs h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .card {
    padding: 15px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .programs h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .card {
    padding: 15px;
  }
}
