* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fc;
  color: #333;
}

/* Navbar */
header {
  background: #002b5b;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
    display: flex;
    color: #fff ;
    align-items: center;
}
.logo img {
    max-width: 100px;
    height: auto;
}
.logo h6 {
  color: #ffd700;
  font-size: 1.5rem;
}
.landingSection {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.5),
      rgba(0,0,0,0.5)),
    url("assets/college-banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 55px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 25px;
}

.btn {
  background: #ffd700;
  color: #002b5b;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: white;
}

/* Sections */
section {
  padding: 80px 10%;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #002b5b;
  font-size: 36px;
}

/* About */
.about p {
  text-align: center;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 18px;
}

/* Courses */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* Facilities */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.facility-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.facility-card h3 {
  margin-bottom: 15px;
  color: #002b5b;
}

/* Contact */
.contact form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact button {
  background: #002b5b;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.contact button:hover {
  background: #ffd700;
  color: #002b5b;
}

/* Footer */
footer {
  background: #002b5b;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media(max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }
}