/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Complete Header Start*/


.header {
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff; /* White background */
    color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .logo img {
      width: 350px; /* Smaller logo for mobile */
  }
}

/* Further reduce for extra small screens */
@media (max-width: 480px) {
  .logo img {
      width: 210px; /* Even smaller logo for very small screens */
  }
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style-type: none;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #c75c4a; /* Green background on hover */
    color: white; /* White text on hover */
    border-radius: 5px;
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.nav-links.active {
  display: block;
  position: absolute;
  top: 90px;
  right: 0;
  background-color: #ffffff; /* Same as header background */
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  

}

.nav-links li {
  text-align: center;
  margin: 15px auto;
}

.nav-links li a {
  font-size: 18px;
}

/* Media Queries for Mobile */
@media screen and (max-width: 1138px) {
  .nav-links {
      display: none;
      flex-direction: column;
  }

  .hamburger-menu {
      display: flex;
  }
}
@media (max-width: 768px){
  .nav-links.active {
    top: 80px;
}
}
@media (max-width: 480px) {
  .nav-links.active {
    top: 60px;
}
}


/* Complete Header End */
/* Start Hero Section */

.slider{
  width: 100%;
  max-width: 100vw;
  height: 740px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.slider .list{
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: 1s;
}
.slider .list img{
  width: 1600px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
}
.slider .buttons{
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.slider .buttons button{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.333);
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}
.slider .dots{
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slider .dots li{
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.5s;
}
.slider .dots li.active{
  width: 30px;
}
@media screen and (max-width: 768px){
  .slider{
      height: 400px;
      
  }
}


/* End Hero Section */

/* Start About us Section */

/* Why Choose Us Section Styling */
.why-choose-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.why-choose-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  align-items: center;
  gap: 40px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

/* Placeholder Image Styling */
.why-choose-image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.why-choose-content {
  max-width: 600px;
}

.why-choose-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.why-choose-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button Styling */
.why-choose-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #c75c4a;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.why-choose-button:hover {
  background-color: #cc432b;
  transform: translateY(-3px);
}

/* Animation for fadeIn effect */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-container {
      flex-direction: column;
      text-align: center;
  }
  .why-choose-image img {
      width: 100%;
      height: auto;
  }
}

/* End About us Section */

/* Start Schools Section */
/* Schools Section Styling */
.schools-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.schools-header{
  margin-top: 500px;
  padding-top: 100px;
  margin: auto;
  text-align: center;
  
}
.s_h{
  width: 100%;
  color: #ffe5e5;
}
.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-in-out;
}

/* Schools Container Styling */
.schools-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.school-box {
  width: 300px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.school-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.school-box h3 {
  font-size: 1.5rem;
  color: #cc432b;
  margin: 10px 0;
}

.school-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

/* Button Styling */
.know-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c75c4a;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.know-more-btn:hover {
  background-color: #cc432b;
}

/* Hover Effect */
.school-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Animation for Fade-In */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .schools-container {
      flex-direction: column;
      align-items: center;
  }
}

/* End Schools Section */
/* Start Key points Section */

/* Key Points Section */
.key-points-section {
  background-color: #c75c4a;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 50px;
}

.key-points-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.key-point {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  color: #333;
}

.circle {
  background-color: #ffffff;
  border: 3px solid #cc432b;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #cc432b;
  animation: fadeIn 1s ease;
}

.counter {
  font-weight: bold;
}

.key-point p {
  margin-top: 13px;
  font-size: 1.2em;
  color: #333;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .key-points-container {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 15px;
  }
  .key-point {
      width: 40%;
  }
}

@media (max-width: 480px) {
  .key-points-container {
    flex-direction: row;
    flex-wrap: wrap;
}
.key-point {
    width: 40%;
}
}

/* Fade-in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}


/* End Key points Section */

/* start footer Section */

/* General Footer Styling */
.footer {
  background-color: #ffffff;
  color: #333;
  padding: 2em 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about, .footer-links, .footer-address, .footer-social {
  flex: 1;
  padding: 1.5em;
  box-sizing: border-box;
}

.footer-logo {
  max-width: 300px;
  margin-bottom: 1em;
}

.footer h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #333;
}

.footer p, .footer ul, .footer li, .footer a {
  font-size: 0.9em;
  color: #555;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.footer a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* Divider Styling */
.divider {
  border-left: 2px solid #ddd;
  height: 100%;
  margin: 0 1em;
  opacity: 0.5;
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer ul li {
  margin: 10px 0;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 1em;
}

.social-icon {
  color: #555;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff6600;
}

.footer-bottom {
  margin-top: 0;
  font-size: 0.8em;
  color: #888;
  text-align: center;
  background-color: #f8f8f8;
  padding: 1em;
}

/* Responsive Styling */
@media (max-width: 768px) {
  /* Center everything for smaller screens */
  .footer-logo {
    max-width: 200px;
    margin-bottom: 1em;
  }
  .footer-container {
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding: 1em;
  }

  /* Remove dividers for small screens */
  .divider {
      display: none;
  }

  /* Social icons centered */
  .footer-social .social-icons {
      justify-content: center;
      margin-top: 1.5em;
  }

  /* Footer content with less padding for mobile */
  .footer-about, .footer-links, .footer-address, .footer-social {
      padding: 1em;
  }

  /* Reduce font size for mobile screens */
  .footer h3 {
      font-size: 1.1em;
  }

  .footer p, .footer ul, .footer li, .footer a {
      font-size: 0.8em;
  }

  /* Footer bottom text adjustment for mobile */
  .footer-bottom {
      font-size: 0.7em;
      padding: 0.5em;
  }
}

/* For very small screens (max-width 480px) */
@media (max-width: 480px) {
  .footer-container {
      padding: 0.5em;
  }

  .footer h3 {
      font-size: 1em;
  }

  .footer p, .footer ul, .footer li, .footer a {
      font-size: 0.75em;
  }

  .footer-logo {
      max-width: 175px;
      margin-bottom: -4px;
  }
}



/*  End footer Section */
/*  Start Aboutus  Section */

/* General Styling */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

/* Section Titles */
.about-title, .vision-title, .mission-title, .values-title, .principal-title, .correspondent-title {
  color: #3E4C59;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Text Styling */
.about-text, .vision-text, .mission-text, .values-text, .principal-text, .correspondent-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 1rem auto;
  text-align: center;
  max-width: 700px;
}

/* Section Layout */
.about-section, .vision-section, .mission-section, .values-section, .principal-section, .correspondent-section {
  margin: 2rem 0;
  padding: 1rem;
  background-color: #F9FAFB;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover Effect */
.about-section:hover, .vision-section:hover, .mission-section:hover, .values-section:hover, .principal-section:hover, .correspondent-section:hover {
  transform: scale(1.02);
}

/* Image Styling */
.principal-image, .correspondent-image {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0.5rem auto;
  border-radius: 20%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
      padding: 1rem;
  }
  .about-title, .vision-title, .mission-title, .values-title, .principal-title, .correspondent-title {
      font-size: 1.5rem;
  }
}
/*  End Aboutus  Section */



/*  Start footer Section */
/* General Footer Copyright Styling */
.footer-copyright {
  background-color: #f0f0f0; /* Light gray background */
  padding: 1.5em;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #666;
}

.school-name {
  font-size: 0.9em;
  margin: 0;
  color: #333;
}

.developer-credit {
  font-size: 0.8em;
  margin: 5px 0 0;
}

.ats-link {
  color: #ff6600; /* Accent color for ATS link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.ats-link:hover {
  color: #cc5200; /* Darker shade for hover effect */
}
/*  End footer Section */

/*  Start Achivements  Section */
/* Achievements Grid */
.achievements-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 15px auto;
  animation: fadeInDown 1s ease-in-out;
  
}

/* Achievement Card */
.achievement {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Preview Image */
.achievement img {
  width: 100%;
  max-width: 360px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.achievement:hover img {
  transform: scale(1.1);
}

/* Achievement Title */
.achievement p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.achievement:hover p {
  color: #4a90e2;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.lightbox-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 90%;
  max-height: 80%;
  overflow-y: auto;
  justify-content: center;
  animation: scaleUp 0.3s ease-in-out;
}

.lightbox-content img {
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.lightbox-content img:hover {
  transform: scale(1.05);
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff6347;
}
.Achivements-title {
  margin-top: 125px;
  margin-bottom: 0px;
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  animation: fadeInDown 0.8s ease-in-out;
  
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .achievements-container {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .achievements-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .achievements-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*  End  Achivements  Section */

/*  Start Gallery Section */


/*  End Gallery  Section */

.facilities-header {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
}

.facilities-header h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.facilities-header p {
  font-size: 1.1em;
  color: #666;
}

.facilities-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 12px 0;
  width: 100%;
}

.facility-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 30%;
  min-width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin: auto ;
}

.facility-card:hover {
  transform: translateY(-10px);
}

.facility-icon img {
  width: 200px;
  height: 150px;
  margin-bottom: 15px;
  border-radius: 12px;
  
}

.facility-card h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.facility-card ul {
  list-style-type: none;
  font-size: 0.95em;
  color: #444;
}

.facility-card ul li {
  margin-bottom: 5px;
}

.facilities-footer {
  text-align: center;
  margin-top: 30px;
  color: #777;
  font-size: 1em;
}

@media (max-width: 768px) {
  .facility-card {
      width: 80%;
  }
}

@media (max-width: 480px) {
  .facilities-header h1 {
      font-size: 2em;
      
  }

  .facilities-header p, .facilities-footer {
      font-size: 1em;
  }
}

.schools-footer {
  text-align: center;
  padding: 20px;
  background-color: #ffe5e5;
  color: #7a1c1c;
  font-size: 1em;
  margin-top: 0px;
}

/* Our Schools Section */
.our-schools {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffe5e5;
  
}

.our-schools h1 {
  font-size: 2.5em;
  color: #7a1c1c;
  margin-bottom: 30px;
}

/* Curriculum Container */
.curriculum-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 2400px;
  margin: 100px auto;
  margin-bottom: -30px;
  
}

/* Curriculum Image */
.curriculum-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 350px;
  transition: transform 0.3s ease-in-out;
}

.curriculum-image img:hover {
  transform: scale(1.05);
}

/* Curriculum Content */
.curriculum-content {
  flex: 1;
  max-width: 1200px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.curriculum-content h2 {
  font-size: 2em;
  color: #a02424;
  margin-bottom: 15px;
}

.course-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.key-points {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.key-points li {
  font-size: 1.1em;
  color: #7a1c1c;
  margin-bottom: 10px;
}

.detailed-description {
  font-size: 1.1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .curriculum-container {
      flex-direction: column;
      align-items: center;
  }

  .curriculum-image img {
      width: 100%;
      max-width: 400px;
  }

  .curriculum-content {
      max-width: 100%;
      margin-top: 20px;
  }
}

.facilities-header2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
}

.facilities-header h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.facilities-header p {
  font-size: 1.1em;
  color: #666;
}

.Know_more_fac-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #c75c4a;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: auto;

}
.b{
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.Know_more_fac-button:hover {
  background-color: #cc432b;
  transform: translateY(-3px);
}

.page4-header {
  text-align: center;
  background-color: #003366;
  color: #ffffff;
  padding: 2rem;
}

.page4-subtitle {
  font-size: 1.2rem;
  color: #cce7ff;
}

.page4-achievements {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  margin-top: -20px;
}

.page4-achievements h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333333;
}

.page4-achievement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.page4-achievement {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 300px;
  transition: transform 0.3s;
}

.page4-achievement:hover {
  transform: translateY(-10px);
}

.page4-achievement-image {
  width: 100%;
  height: auto;
}

.page4-achievement-details {
  padding: 1rem;
}

.page4-achievement-details h3 {
  margin: 0;
  color: #003366;
}

.page4-achievement-details p {
  color: #666666;
}

/* Responsive styling */
@media (max-width: 768px) {
  .page4-achievement-list {
      flex-direction: column;
      align-items: center;
  }
  .facilities-header2 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 80px;
  }
}
@media (max-width: 760px) {
  .facilities-header2 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 110px;
  }
}

.ach-tit {
  margin-top: 125px;
  margin-bottom: 0px;
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  animation: fadeInDown 0.8s ease-in-out;
  
}
.page4-header {
  background-color: #c75c4a;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 100px;
}

.page4-subtitle {
  margin-top: 5px;
  font-size: 1.2em;
  color: #b8c6e5;
}

.page4-contact {
  padding: 20px;
  background-color: #f4f7fc;
}

.page4-contact h2 {
  color: #cc432b;
  margin-bottom: 20px;
}

.page4-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page4-contact-section {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  flex: 1;
  min-width: 280px;
}

.page4-contact-section h3 {
  color: #cc432b;
  margin-bottom: 10px;
}

.page4-contact-section ul {
  list-style-type: none;
  padding: 0;
}

.page4-contact-section li {
  margin-bottom: 5px;
  color: #333;
}

.page4-map {
  padding: 20px;
}

.page4-map h2 {
  color: #cc432b;
  margin-bottom: 15px;
}

iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.fade-in {
       opacity: 0;
     transform: translateY(20px);
     animation: fadeIn 0.6s forwards;
  }
 @keyframes fadeIn {
    to {
       opacity: 1;
           transform: translateY(0);
       }
  }
  