@charset "utf-8";
/* CSS Document */

  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

  .admission-btn {
    padding: 12px;
    background: linear-gradient(135deg, #ff512f, #f09819);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .admission-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  }

  .admission-btn:active {
    transform: scale(0.98);
  }

  @media (max-width: 600px) {
    .admission-btn {
      padding: 12px;
      font-size: 14px;
    }
  }

.hero {
  background: linear-gradient(180deg, #FFF, #CCC);
  color: #000;
  text-align: center;
  padding: 10px;
  display:flex;
  justify-content: center;
}

.hero h1 {
  font-size: 42px;
}

.hero span {
  display: block;
  margin-top: 0px;
  font-weight: bold;
}

.about {
  padding: 20px;
  text-align: center;
  background: #fff;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.highlight {
  background: #0d47a1;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.subject {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.subject-title {
  font-size: 28px;
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 10px;
}

.subject-underline {
  display: block;
  width: 80px;
  height: 3px;
  background: #ff9800;
  margin: 0 auto 40px;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.subject-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.subject-card:hover {
  transform: translateY(-6px);
}

.subject-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.subject-card h3 {
  color: #d32f2f;
  font-size: 18px;
  margin: 15px 15px 10px;
}

.subject-card p {
  font-size: 14px;
  color: #555;
  padding: 0 15px 15px;
  line-height: 1.6;
}

.subject-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 18px;
  background: #d32f2f;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.subject-btn:hover {
  background: #b71c1c;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .subject-title {
    font-size: 22px;
  }

  .subject-card img {
    height: 180px;
  }
}

.subject-faculty {
  background: #8b002d;
  padding: 80px 20px;
}

.subject-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.subject-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 60px 25px 30px;
  text-align: center;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.subject-img {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  padding: 0px;
}

.subject-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.subject-content h3 {
  color: #e53935;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top:28px;
}

.subject-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.subject-content span {
  color: #e53935;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .subject-container {
    gap: 60px;
  }

  .subject-card {
    max-width: 100%;
  }
}

#selection{
  display:flex;
  justify-content: center;
}
	
.exams, .faculty, .centres, .contact {
  padding: 30px 20px;
  background: #fff;
  margin-top: 10px;
}

.exams ul {
  margin-top: 10px;
  padding-left: 20px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
  }
}

