/* Global Styles & Google Font */
body, h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(78, 46, 28, 0.7); /* Dark Brown overlay */
  padding: 2.5rem 4rem;
  border-radius: 8px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #FFD700; /* Gold */
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.5rem;
  color: #fff;
}

/* Section Base */
.section {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Admission Process Section */
.admission-process {
  background: linear-gradient(135deg, #FFD700, #4E2E1C);
  color: #fff; /* White text against dark background */
}

.admission-process h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
}

.process-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.process-image,
.process-content {
  flex: 1;
  min-width: 320px;
}

.process-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.process-image img:hover {
  transform: scale(1.03);
}

.process-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Online Application Section */
.application-form {
  background: #FFF; /* White section for contrast */
  color: #4E2E1C;   /* Dark brown text */
}

.application-form h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #4E2E1C;
  text-transform: uppercase;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.form-content,
.form-image {
  flex: 1;
  min-width: 320px;
}

.form-content {
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: left;
}

.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  background: #FFD700; /* Gold */
  color: #4E2E1C;      /* Dark Brown */
  padding: 0.9rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #FFC107;
  transform: scale(1.02);
}

.form-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.form-image img:hover {
  transform: scale(1.03);
}

/* Fees Structure Section */
.fees-structure {
  background: linear-gradient(135deg, #4E2E1C, #FFD700);
  color: #fff;
}

.fees-structure h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fees-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.fees-card:hover {
  transform: translateY(-5px);
}

.fees-card h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #FFD700; /* Gold heading on tinted white card */
}

.fees-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff; /* White text for contrast */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-wrapper, .form-wrapper {
    flex-direction: column;
  }

  .process-content, .form-content {
    text-align: center;
  }

  .fees-card h3 {
    font-size: 1.4rem;
  }
}
