* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

/* TOP BAR */
.top-bar {
  background: #0b5fa5;
  color: #fff;
  padding: 6px 40px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

/* HEADER */
.header {
  background: #fff;
  padding: 15px 40px;
  border-bottom: 3px solid #0b5fa5;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  height: 70px;
}

.logo-area h1 {
  font-size: 26px;
}

.logo-area p {
  font-size: 13px;
  color: #555;
}

/* NAVBAR */
.main-nav {
  background: #8fc15a;
}

.nav-menu {
  list-style: none;
  display: flex;
  padding-left: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.nav-menu a:hover {
  background: #6ea93f;
  color: #fff;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  border: 1px solid #ccc;
  z-index: 99;
}

.dropdown-menu li a {
  padding: 10px 14px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* HERO + NOTICE */
.hero-notice {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 20px;
  padding: 20px 40px;
  background: #fff;
}

/* SLIDER */
.slider {
  position: relative;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.prev,.next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: #0b5fa5;
}

/* NOTICE BOARD */
.notice-board {
  border: 1px solid #ccc;
  background: #f9f9f9;
}

.notice-board h3 {
  background: #0b5fa5;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.notice-board ul {
  list-style: none;
  padding: 15px;
  max-height: 220px;
  overflow: hidden;
}

.notice-board li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.new {
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 6px;
}

.notice-board button {
  width: 100%;
  padding: 10px;
  background: #0b5fa5;
  color: #fff;
  border: none;
}

/* QUICK TILES */
.quick-tiles {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 15px;
  padding: 30px 40px;
  background: #fff;
}

.tile {
  padding: 30px 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.tile.red { background: #c94b3a; }
.tile.yellow { background: #f2c44f; color:#000; }
.tile.green { background: #9ccc65; color:#000; }
.tile.orange { background: #ef7c4a; }
.tile.darkred { background: #c62828; }

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  background: #f5f5f5;
}

.two-col h2 {
  color: #0b5fa5;
  margin-bottom: 10px;
}

/* INSIDE SCHOOL */
.inside-school {
  background: #fff;
  padding: 40px;
  text-align: center;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* BIRTHDAY */
.birthday {
  background: linear-gradient(to right,#38bdf8,#8bc34a);
  padding: 30px;
}

.birthday-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

/* GALLERY */
.gallery {
  padding: 40px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* FOOTER */
.footer {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  background: linear-gradient(to right,#3aa6b9,#8bc34a);
  color: #fff;
  padding: 40px;
}

.footer iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-notice,.two-col,.footer{
    grid-template-columns:1fr;
  }
  .quick-tiles{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .nav-menu{
    flex-direction:column;
  }
}
/* ================= REGISTRATION PAGE STYLING ================= */

.registration-page{
  background:#f2f6fb;
  padding:50px 20px;
}

.registration-card{
  max-width:1100px;
  margin:auto;
  background:#ffffff;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-radius:8px;
}

.registration-card h1{
  text-align:center;
  color:#0b5fa5;
  font-size:28px;
  margin-bottom:8px;
}

.title-line{
  width:80px;
  height:4px;
  background:#8fc15a;
  margin:10px auto 20px;
  border-radius:2px;
}

.registration-text{
  text-align:center;
  font-size:15px;
  color:#444;
  max-width:700px;
  margin:0 auto 25px;
  line-height:1.6;
}

/* BUTTON */
.open-form-btn{
  display:block;
  width:max-content;
  margin:0 auto 25px;
  background:#0b5fa5;
  color:#fff;
  padding:12px 22px;
  text-decoration:none;
  font-size:14px;
  border-radius:4px;
  transition:0.3s ease;
}

.open-form-btn:hover{
  background:#094b82;
}

/* GOOGLE FORM WRAPPER */
.form-wrapper{
  border:1px solid #ddd;
  padding:12px;
  border-radius:6px;
  background:#fafafa;
}

.form-wrapper iframe{
  width:100%;
  height:2800px;
  border:none;
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){
  .registration-card{
    padding:25px;
  }

  .registration-card h1{
    font-size:22px;
  }

  .form-wrapper iframe{
    height:3300px;
  }
}
/* ================= ADMISSION PROCESS FINAL ================= */

.admission-process-final{
  background:#f2f6fb;
  padding:50px 20px;
}

.admission-process-card{
  max-width:1100px;
  margin:auto;
  background:#ffffff;
  padding:40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.process-content h2{
  color:#0b5fa5;
  margin-bottom:10px;
}

.process-content p{
  font-size:14px;
  color:#444;
  margin-bottom:20px;
  line-height:1.6;
}

.process-steps-final{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}

.process-steps-final li{
  font-size:15px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
}

.process-steps-final span{
  display:inline-block;
  background:#8fc15a;
  width:32px;
  height:32px;
  line-height:32px;
  text-align:center;
  border-radius:50%;
  margin-right:12px;
  font-weight:600;
}

/* APPLY NOW BUTTON */
.apply-now-btn{
  display:inline-block;
  background:#0b5fa5;
  color:#fff;
  padding:12px 26px;
  text-decoration:none;
  border-radius:4px;
  font-size:14px;
  transition:0.3s ease;
}

.apply-now-btn:hover{
  background:#094b82;
}

.process-image img{
  width:100%;
  border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .admission-process-card{
    grid-template-columns:1fr;
  }

  .process-image{
    text-align:center;
  }
}


