body { margin:0; font-family:'Poppins', sans-serif; line-height:1.6; }

/* Topbar */
.topbar { background:#004080; color:#fff; padding:5px 20px; display:flex; justify-content:space-between; font-size:14px; }

/* Navbar */
.navbar { background:#004080; position:sticky; top:0; color:#fff; display:flex; flex-direction:column; align-items:center; padding:10px 20px; z-index:10; }
.navbar .nav-title { font-size:20px; font-weight:600; margin:10px 0; }
.navbar ul { list-style:none; display:flex; justify-content:center; margin:0; padding:0; }
.navbar li { margin:0 15px; }
.navbar a { color:#fff; text-decoration:none; transition:color 0.3s; }
.navbar a:hover { color:#ffcc00; }
.navbar a:active { color:#ff6600; }
.hamburger { display:none; background:none; border:none; font-size:24px; color:#fff; cursor:pointer; }

/* Hero Section */
.hero { position:relative; background:url('images/muslimgirls5.jpg') no-repeat center center/cover; color:#fff; text-align:center; padding:100px 20px; }
.hero-overlay { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.5); }
.hero-content { position:relative; z-index:1; }
.hero h1 { font-size:48px; margin-bottom:10px; }
.hero p { font-size:20px; margin-bottom:20px; }
.cta { background:#ffcc00; border:none; padding:12px 24px; font-size:16px; cursor:pointer; transition:background 0.3s; }
.cta:hover { background:#ff9900; }
.cta:active { background:#cc6600; }

/* SECTIONS */
section { padding:60px 20px; }
section:nth-child(even) { background:#f4f4f4; }

/* Sections */
.about {
  position: relative;
  background: url('images/muslimgirls2.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.about-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about p {
  font-size: 18px;
  margin-bottom: 40px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.highlight {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 250px;
  transition: transform 0.3s, background 0.3s;
}

.highlight:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.highlight h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.cta {
  background: #ffcc00;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta:hover { background:#ff9900; }
.cta:active { background:#cc6600; }

/* Responsive */
@media (max-width: 768px) {
  .about { padding: 80px 20px; }
  .about h2 { font-size: 32px; }
  .about p { font-size: 16px; }
  .about-highlights { flex-direction: column; }
}

/* Academics */
.academics {
  position: relative;
  background: url('images/muslimgirls7.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.academics-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
}

.academics-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.academics h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.academics p {
  font-size: 18px;
  margin-bottom: 40px;
}

.academics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.academic-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s, background 0.3s;
}

.academic-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.academic-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.cta {
  background: #ffcc00;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta:hover { background:#ff9900; }
.cta:active { background:#cc6600; }

/* Responsive */
@media (max-width: 768px) {
  .academics { padding: 80px 20px; }
  .academics h2 { font-size: 32px; }
  .academics p { font-size: 16px; }
}

/* Admissions */
.admissions {
  background:#f9f9f9; /* clean neutral background */
  color:#333;
  padding:100px 20px;
  text-align:center;
}

.admissions h2 {
  font-size:42px;
  margin-bottom:20px;
  font-weight:600;
}

.admissions p {
  font-size:18px;
  margin-bottom:40px;
}

.admissions-steps {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
  margin-bottom:40px;
}

.step {
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  transition:transform 0.3s;
}

.step:hover {
  transform:translateY(-5px);
}

.step-image {
  height:150px;
  background-size:cover;
  background-position:center;
}

.step-text {
  padding:20px;
}

.step-text h3 {
  font-size:20px;
  margin-bottom:10px;
  color:#004080;
}

.cta {
  background:#ffcc00;
  border:none;
  padding:14px 28px;
  font-size:18px;
  cursor:pointer;
  transition:background 0.3s;
}

.cta:hover { background:#ff9900; }
.cta:active { background:#cc6600; }

/* Responsive */
@media (max-width:768px) {
  .admissions { padding:60px 20px; }
  .admissions h2 { font-size:32px; }
  .admissions p { font-size:16px; }
}

/* Student Life */
.student-life {
  position: relative;
  background:#f9f9f9;
  color:#333;
  padding: 120px 20px;
  text-align: center;
}

.student-life-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.05);
}

.student-life-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.student-life h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.student-life p {
  font-size: 18px;
  margin-bottom: 40px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.life-card {
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.life-card:hover {
  transform: translateY(-5px);
}

.life-image {
  height:150px;
  background-size:cover;
  background-position:center;
}

.life-card h3 {
  font-size:20px;
  margin:15px 0 10px;
  color:#004080;
}

.life-card p {
  font-size:16px;
  padding:0 15px 20px;
}

.cta {
  background:#ffcc00;
  border:none;
  padding:14px 28px;
  font-size:18px;
  cursor:pointer;
  transition:background 0.3s;
}

.cta:hover { background:#ff9900; }
.cta:active { background:#cc6600; }

/* Responsive */
@media (max-width:768px) {
  .student-life { padding:80px 20px; }
  .student-life h2 { font-size:32px; }
  .student-life p { font-size:16px; }
}

/* News & Events */
/* News & Events */
#news-events {
  background: #f9f9f9;
  color: #333;
  padding: 100px 20px;
  text-align: center;
}

#news-events h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #004080;
}

#news-events p {
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

.news-card h3 {
  font-size: 22px;
  margin: 20px 0 10px;
  color: #004080;
}

.news-card p {
  font-size: 16px;
  padding: 0 20px 20px;
  line-height: 1.5;
}

/* Optional image banner */
.news-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* Call-to-action */
.news-cta {
  display: inline-block;
  background: #ffcc00;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 40px;
  border-radius: 6px;
}

.news-cta:hover { background: #ff9900; }
.news-cta:active { background: #cc6600; }

/* Responsive */
@media (max-width:768px) {
  #news-events { padding: 70px 20px; }
  #news-events h2 { font-size: 32px; }
  #news-events p { font-size: 16px; }
}

/* Footer */
footer { position:relative; background:url('images/muslimgirls10.jpg') no-repeat center center/cover; color:#fff; padding:40px 20px; text-align:center; }
.footer-overlay { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); }
.footer-container { position:relative; display:flex; flex-wrap:wrap; justify-content:center; z-index:1; }
.footer-section { flex:1; min-width:200px; margin:20px; }
.footer-section h4 { margin-bottom:10px; }
.footer-section ul { list-style:none; padding:0; }
.footer-section li { margin-bottom:5px; }
.footer-section a { color:#ffcc00; text-decoration:none; transition:color 0.3s; }
.footer-section a:hover { color:#ff9900; }
.footer-section a:active { color:#cc6600; }
.footer-bottom { position:relative; z-index:1; margin-top:20px; border-top:1px solid #444; padding-top:10px; font-size:14px; }

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger { display:block; }
  .nav-links { display:none; flex-direction:column; width:100%; text-align:center; }
  .nav-links.active { display:flex; }
  .navbar ul { flex-direction:column; }
  .navbar li { margin:10px 0