* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.main {
  display: flex;
  padding: 0.5rem;
  height: 180px;
  
  justify-content: space-between;
}
header .left {
  display: flex;
  align-items: center;
}
header .right img {
  height: 150px;
  width: 150px;
  margin-right: 2rem;
}
nav {
  height: 2.5rem;
  width: 100%;
  background-color: #003366;
  padding: 10px;
  gap: 20px;
}
nav a{
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 12px;
}
nav a:hover{
  background-color: #0e57b7;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* dropDown  */

.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 5px;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown:hover .dropdown-content {display: block;}

/* Slide Image Section  */
.slideshow-container {
  height: 100vh;
  width: 100%;
  position: relative;
  margin: auto;
  object-fit: cover;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Modern fade-slide-zoom animation */
.fade {
  animation: fadeZoom 1.5s ease-in-out;
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05) translateX(20px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02) translateX(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}


/* about */
#about{
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#about .right-container{
  height: 300px;
  width: 50%;
}
#about .right-container p{
  margin-top: 10px;
  font-size: 1.2rem;
}
#about .right-container button{
  margin-top: 40px;
  text-align: center;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 16px;
  background-color: #ca4e07;
  cursor: pointer;
}
#about .right-container button:hover{
  background: transparent;
  border: 1px solid #212121;
  color: #212121;
}
#about .left-container{
  height: 300px;
  width: 40%;
  object-fit: cover;
}
#about .left-container img{
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

  /* Section container */
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background-color: #f8fafc;
  color: #1e293b;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Each block */
.section-block {
  flex: 1 1 45%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Headings */
.section-block h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #3b82f6;
  display: inline-block;
  padding-bottom: 5px;
  color: #0f172a;
}

/* Lists */
.section-block ul {
  list-style-type: disc;
  padding-left: 20px;
}

.section-block ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #334155;
}

/* Paragraph */
.section-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

#news{
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}
/* News Section Styling */
.news-section {
  background-color: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}

.news-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0f172a;
  border-bottom: 2px solid #38bdf8;
  display: inline-block;
  padding-bottom: 5px;
}

/* Grid Layout for News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* News Card Box */
.news-box {
  background-color: #ffffff;
  border-left: 5px solid #38bdf8;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.news-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-date {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.news-box p {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.4;
}



/* Contact Section */
.contact-section {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.contact-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1e293b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #38bdf8;
  display: inline-block;
  padding-bottom: 5px;
  color: #ffffff;
}

.contact-box p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #cbd5e1;
}

/* Footer */
footer{
  height: 100px;
  position: relative;
  bottom: 0;
  background-color: #00000093;
}
footer p {
  color: #fff;
  text-align: center;
  padding-top: 50px;

}
