body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

header {
  background: #002b5c;
  color: white;
  padding: 15px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.hero {
  background: linear-gradient(to right, #004aad, #002b5c);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.btn {
  background: #ff9800;
  padding: 12px 20px;
  color: black;
  text-decoration: none;
  border-radius: 4px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 40px;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 6px;
}

.course-list {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.course {
  background: white;
  padding: 20px;
  border-left: 5px solid #004aad;
}

footer {
  background: #002b5c;
  color: white;
  text-align: center;
  padding: 10px;
}


/* For About Page  */
/* Main content container */
.content {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Section headings */
.content h1,
.content h2,
.content h3 {
  color: #002b5c;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Paragraph text */
.content p {
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 16px;
  text-align: justify;
}

/* Highlighted text (important points) */
.content strong {
  color: #004aad;
}

/* Lists inside content */
.content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Divider line */
.content hr {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 30px 0;
}


.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* For Contact Us Page  */

.contact-details p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.contact-details a {
  color: #004aad;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Form Styling for admission.html */
.enquiry-form {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 6px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.enquiry-form button {
  background: #004aad;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}

.enquiry-form button:hover {
  background: #002b5c;
}

