/* about.html (403)

 */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER with Background Image */
header {
  background-image: url('istockphoto-173761967-612x612.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
}

/* Optional banner text */
.header-banner {
  text-align: center;
  padding: 120px 20px 60px;
  color: white;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.logo span {
  color: #000;
  background: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 5px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 5px 10px;
  transition: 0.3s ease;
  border-radius: 5px;
}

.nav-links a:hover,
.nav-links .active {
  background-color: white;
  color: #ff4b2b;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  position: relative;
  z-index: 15;
}

.hamburger .open,
.hamburger .close {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked + .hamburger .open {
  display: none;
}

#menu-toggle:checked + .hamburger .close {
  display: block;
}

#menu-toggle:not(:checked) + .hamburger .open {
  display: block;
}

#menu-toggle:not(:checked) + .hamburger .close {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ff4b2b;
    flex-direction: column;
    display: none;
    padding: 10px 0;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }
}

.email-button {
  display: inline-block;
  background-color: #ff4b2b;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.email-button:hover {
  background-color: #ff416c;
}


/* overview section home.html */
.overview-section {
  padding: 60px 20px;
  background: #fefefe;
}

.overview-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.overview-text {
  flex: 1 1 450px;
}

.overview-text h2 {
  font-size: 32px;
  color: #ff4b2b;
  margin-bottom: 15px;
}

.overview-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.btn-learn-more {
  display: inline-block;
  background-color: #ff4b2b;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #e03e24;
}

.overview-image {
  flex: 1 1 450px;
}

.overview-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }

  .overview-text,
  .overview-image {
    flex: 1 1 100%;
  }

  .overview-text h2 {
    font-size: 28px;
  }
}

/* why choose us */

.why-choose-us {
  background-color: #fff8e1;
  color: #222;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  background: #ffffff;
  padding: 20px;
  border-left: 5px solid #fbc02d;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  margin-top: 0;
  color: #f57f17;
}


/* over programs home.html */

.programs {
  padding: 60px 20px;
  background: linear-gradient(to right, #ffe0d2, #fce4ec); /* soft peach-pink bg */
  text-align: center;
}

.programs-container {
  max-width: 800px;
  margin: auto;
}

.programs h2 {
  font-size: 32px;
  color: #ff4b2b;
  margin-bottom: 20px;
}

.programs p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.programs ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.programs ul li {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  color: #555;
}

.cta-button {
  display: inline-block;
  background-color: #ff4b2b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e8431d;
}


.testimonials {
  padding: 60px 20px;
  background: linear-gradient(to right, #f3f4f6, #ffffff);
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ff4b2b;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.testimonial {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial strong {
  display: block;
  margin-top: 15px;
  color: #333;
  font-weight: bold;
}

/* Responsive */
@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .testimonial {
    flex: 1;
    margin: 0 10px;
  }
}

/* admission section home.html*/
.admission {
  background-color: #fff8e1;
  color: #333;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.admission h2 {
  text-align: center;
  font-size: 2em;
  color: #f57f17;
  margin-bottom: 30px;
}

.admission-info {
  background-color: #ffffff;
  padding: 20px;
  border-left: 5px solid #fbc02d;
}

.admission-info p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.admission-info ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.admission-info ul li {
 padding-top: 10px;
 }
 
.visit-note {
  background-color: #fff3e0;
  padding: 15px;
  border-left: 5px solid #f57f17;
}

.visit-note h3 {
  margin: 0;
  color: #d84315;
}

/* contact section home.html */ 
.contact-info {
  background-color: #ffe7e0;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.contact-info li {
  margin: 8px 0;
  font-size: 16px;
}

.cta-button {
  background-color: #ff4b2b;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #e03e1f;
}

/* footer home.html*/
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links, .footer-social, .footer-address {
  margin: 10px 0;
}

.footer-links ul, .footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-social li {
  margin: 5px 0;
}

.footer-links a, .footer-social a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover, .footer-social a:hover {
  color: #ff4b2b;
}

.footer-address a {
  color: #ff4b2b;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}


/* about section about.html */
 .about-section {
    background: url('modern-classroom-school-600nw-2492778895.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
  }

  .about-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    z-index: 1;
  }

  .about-section h1,
  .mission-vision h2,
  .mission-vision p {
    position: relative;
    z-index: 2;
  }

  .about-section h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
  }

  .mission-vision h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #ffd5c0;
  }

  .mission-vision p {
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto;
    color: #eee;
  }
  
  /* history about.html */
  .school-history {
    background-color: #fff3ed;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
  }

  .school-history h2 {
    font-size: 28px;
    color: #ff4b2b;
    margin-bottom: 15px;
  }

  .school-history p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  
  /* Core Values Section Styling */
.core-values {
    background-color: #f4f4f4;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.core-values h2 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.core-values p {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.values-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.value-item {
    background-color: #ffffff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 1px 1px 10px black;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item h3 {
    font-size: 22px;
    color: #006400; /* Dark Green */
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

/* admission about.html */

.admission {
  background-color: #f9fbe7;
  color: #333;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.admission h2 {
  text-align: center;
  font-size: 2em;
  color: #f57f17;
  margin-bottom: 30px;
}

.admission-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.procedure, .requirements {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #fbc02d;
  width: 48%;
}

.procedure h3, .requirements h3 {
  color: #f57f17;
  margin-top: 0;
}

.admission-details ol, .admission-details ul {
  padding-left: 20px;
}

.admission-details ol, .admission-details ul li {
  padding-top: 10px;
}

.admission-details ol, .admission-details ol li {
  padding-top: 10px;
}

/* Message from Principal Section Styling */
/* Message from Principal Section Styling */
.message-principal {
    background-color: #fff8e1; /* Light Orange Background */
    padding: 40px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.message-principal h2 {
    font-size: 32px;
    color: #FF5722; /* Bold Orange Color */
    text-align: center;
    margin-bottom: 20px;
}

.message-principal .intro {
    font-size: 18px;
    color: #000; /* Lighter Orange-Red */
    text-align: center;
    margin-bottom: 30px;
}

.message-principal .message {
  /*  background-color: #FF5722;*/  /*White background for message block */
    padding: 30px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.message-principal blockquote {
    font-size: 20px;
    font-style: italic;
    color: #000; /* Bold Orange for the quote */
    margin-bottom: 15px;
    line-height: 1.6;
}

.message-principal .principal-name {
    font-size: 22px;
    font-weight: bold;
    color: #FF7043; /* Light Orange-Red for Name */
    margin-top: 15px;
}

.message-principal .principal-title {
    font-size: 18px;
    color: #FF5722; /* Matching Orange for Title */
}

/* blog section about.html*/

.blog-container {
  max-width: 800px;
  margin: auto;
  background-color: #fff5f0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #004d40;
}

.blog-meta {
  font-size: 0.9rem;
  color: #ff9472;
  margin-bottom: 1.5rem;
}

.blog-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: #5e4b43;
  font-size: 1.05rem;
}