body,html{
    width: 100%;
    margin: 20;
    padding:0;
}
/* ===== General Page Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
}

/* ===== Slider Section ===== */
#slider {
  background: url("../images/DC\ image.jpg");
  text-align: center;
  padding: 120px 20px;
  position: relative;
  margin-top: 40px;
  padding-top:  80px;
  top: 0;

}

#slider h1 {
  font-size: 2.5em;
   color: #ffffff;
}

#slider .btn {
  margin-top: 20px;
  background-color: #004080;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

#slider .btn:hover {
  background-color: #0066cc;
}

/* ===== About Section ===== */
#more {
  text-align: center;
  padding: 60px 30px;
  background-color: #ffffff;
}

#more h1 {
  color: #004080;
  margin-bottom: 15px;
}

#more p {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Horizontal layout for About section */
.tworows {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}
.tworows img{
  width: 400px;
  height: 400px;
}
#more button{
background-color: #0066cc;
font-size: larger;
color: #ffffff;
 border-radius: 8px;
}
#more button:hover{
  background-color:rgb(24, 24, 171);
}
#mission{
  display: flex;
}
#mission img{
  width: 300px;
  height: 300px;
  padding: 30px;
}
#mission.desc .box{
  padding-bottom: 100px;
}
.box {
  background-color: #fff;
  width: 45%;
  min-width: 300px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
footer{
  background-color:skyblue;
  font-size: large;
  text-align: center;
}