*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins, sans-serif';
    box-sizing: border-box;
}
#header{
    width: 100%;
    height: 50px;
    background-color: aliceblue;
}
.header {
    display: flex;
    align-items:center; 
    background-color: #0077be;

}

.header img {
  height: 90px;
  margin-left: 10px;
  
}

.header-text {
  line-height: 1.2;
  color: rgb(255, 255, 255);
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #0077be;
  color: #000;
  text-align: center;
}

h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 30px 0 20px;
  color: gold;
  position: relative;
  display: inline-block;
}

h2::before,
h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 2px;
  background: #999;
}

h2::before {
  right: 100%;
  margin-right: 15px;
}

h2::after {
  left: 100%;
  margin-left: 15px;
}

.header-text h1 {
  margin: 0;
  font-size: 45px;
  font-family: "UnifrakturCook", "Old English Text MT", serif;
  font-weight: 700;
}
.header-text p {
  margin: 0;
  font-size: 18px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #000;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    padding-right: 150px;
    padding-left: 150px;
    height: 100px;
}
nav ul li a::after{
    content:'';
    width: 0;
    height: 3px;
    background: #FFD700;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
/*-----------Message--------*/

.gold-line {
  width: 100%;       /* full width */
  height: 4px;       /* thickness of the line */
  background-color: gold;  /* golden color */
}
/*-- Mission, Vission --*/
/* Container for slideshow + text */
body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #0077be; /* match your theme */
}

/* Section layout: slideshow left, text right */
.sned-section {
  display: flex;
  align-items: center;         /* vertical alignment */
  justify-content: space-between;
  gap: 40px;

  background: #0077be;         /* matches your theme */
  color: white;
}
.tod-section {
  display: flex;
  align-items: center;         /* vertical alignment */
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  background: #0077be;         /* matches your theme */
  color: white;
}

/* Slideshow container */
.slides {
  position: relative;
  width: 800px;     /* smaller slideshow */
  height: 800px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Slides inside */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 32s infinite;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Slide timing (4s apart) */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }
.slide:nth-child(5) { animation-delay: 16s; }
.slide:nth-child(6) { animation-delay: 20s; }
.slide:nth-child(7) { animation-delay: 24s; }
.slide:nth-child(8) { animation-delay: 28s; }

/* Fade animation */
@keyframes fade {
  0% { opacity: 0; }
  5% { opacity: 1; }    /* fade in */
  20% { opacity: 1; }   /* stay visible */
  25% { opacity: 0; }   /* fade out */
  100% { opacity: 0; }
}


/* Right side text */
.right-content {
  flex: 1;
  max-width: 600px;
}

.right-content h2 {
  color: gold;
  margin-bottom: 15px;
  text-align: left;
}

.right-content p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}
.two-images {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 15px;               /* space between pictures */
}

.two-images img {
  width: 500px;   /* each picture takes about half */
  height: auto; /* keep aspect ratio */
  border-radius: 10px; /* optional rounded corners */;
}

/* === Footer Styles === */
footer {
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;

}

.footer img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.footer h6 {
  margin: 10px 0 5px;
  font-weight: normal;
  font-size: 16px;
}

.footer .contact-title {
  color: red;
  font-weight: bold;
  font-size: 18px;
  margin-top: 5px;
}

.footer .contact-info {
  font-size: 16px;
  line-height: 1.6;
  margin: 5px 0;
}

.footer .contact-info span {
  font-weight: bold;
}

.footer .location {
  margin-top: 10px;
}

.footer .location span {
  font-weight: bold;
}
