/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Font and background */
  body {
    font-family: 'Georgia', serif;
    background-color: #fff;
    color: #333;
  }
  
  /* Header Styles */
  header {
    text-align: center;
    padding: 20px;
    background-color: #8B0000; /* deep red */
    color: white;
  }
  
  .logo {
    width: 100px;
    margin-bottom: 10px;
  }
  
  .tagline {
    font-style: italic;
    font-size: 1.1em;
    color: #FFD700; /* golden */
  }
  
  /* Navigation Styles */
  nav {
    background-color: #9E1B1B; /* rich maroon/red */
    padding: 10px 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #FFD700; /* golden on hover */
  }
/* About Us Section */
.about-us {
    padding: 50px 20px;
    background-color: #fff9f4; /* soft golden cream background */
    text-align: center;
  }
  
  .about-us h2 {
    color: #8B0000; /* deep red */
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
  }
  
  .about-us .intro {
    font-size: 1.1em;
    color: #444;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  
  .about-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .box {
    background-color: #fff;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .box h3 {
    color: #9E1B1B;
    margin-bottom: 15px;
    font-size: 1.3em;
  }
  
  .box p {
    color: #333;
    font-size: 1em;
    line-height: 1.5;
  }
/* Admission Section */
.admission {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .admission h2 {
    color: #8B0000;
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .admission-intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #444;
    line-height: 1.6;
  }
  
  .steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .step {
    background-color: #fff9f4;
    border-left: 4px solid #FFD700;
    padding: 20px;
    width: 250px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  }
  
  .step-number {
    font-weight: bold;
    font-size: 1.5em;
    color: #9E1B1B;
  }
  
  .apply-btn {
    background-color: #9E1B1B;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .apply-btn:hover {
    background-color: #FFD700;
    color: #9E1B1B;
  }
      /* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #fff9f4;
    text-align: center;
  }
  
  .contact h2 {
    color: #8B0000;
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
    color: #333;
  }
  
  .contact-info a {
    color: #9E1B1B;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  .contact-form form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Georgia', serif;
  }
  
  .contact-form button {
    background-color: #9E1B1B;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #FFD700;
    color: #9E1B1B;
  }
  
  .map {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  html {
    scroll-behavior: smooth;
  }
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .about-boxes,
    .steps {
      flex-direction: column;
      align-items: center;
    }
  
    .box,
    .step {
      width: 90%;
    }
  }
  #topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #8B0000;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    display: none;
    transition: 0.3s ease-in-out;
  }
  
  #topBtn:hover {
    background-color: #b30000;
  }
  section h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #8B0000;
    position: relative;
    display: inline-block;
  }
  
  section h2::after {
    content: "";
    display: block;
    height: 4px;
    width: 60px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
    /* Hover Effect on Boxes */
.box:hover,
.step:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .contact-form form {
      width: 90%;
    }
  
    .map iframe {
      height: 250px;
    }
  }
  a {
    transition: all 0.3s ease-in-out;
  }
  .what-we-offer {
    background-color: #fffaf0;
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    color: #b35d00;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .offer-card {
    background-color: #ffffff;
    border: 1px solid #f5deb3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
  }
  
  .offer-card:hover {
    transform: translateY(-6px);
  }
  
  .offer-card h3 {
    color: #cc6600;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .offer-card p,
  .offer-card ul {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    padding-left: 10px;
  }
  
  .offer-card ul {
    list-style-type: disc;
  }
  /* AOS animation override (optional, if needed) */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s;
    transition-timing-function: ease;
  }

  




  /* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/banner.jpg') center/cover no-repeat;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero .btn:hover {
  background-color: #ffd700;
  color: black;
}

/* Section Headings */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background: #ffd700;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About Us */
.about-us .content {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

/* Features / Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-card ul {
  text-align: left;
  padding-left: 0;
}

.feature-card li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Contact Section */
.contact {
  background-color: #222;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact p {
  margin-bottom: 10px;
}

.contact a {
  color: #ffd700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
.gallery-section {
    padding: 40px 20px;
    background-color: #f9f9ff;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 32px;
    color: #444;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
  }
  
  .gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .gallery-img {
    flex: 1 1 300px;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
  }
  
  .gallery-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .gallery-img:hover {
    transform: scale(1.03);
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .contact-form button {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #2e59d9;
  }
    