* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-image: url(images/10.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
}

.logo{
  font-size: 50px;
  font-weight: bold;
  color: white;
  font-style: oblique;
  text-decoration: none;

}
.logo img{
  height: 70px;
  width: auto;
  margin-left: 10px;
  border-radius: 50px;
  padding-top: 20px;
}


ul{
  list-style: none;
  background:white;
  border-radius: 30px;
}
ul li{
  display: inline-block;
  position: relative;
}
ul li a{
  display: block;
  padding: 20px 25px;
  color: black;
  text-decoration:none ;
  text-align: center;
  font-size: 20px;
}
ul li  ul.dropdown li{
  display: block;
}
ul li ul.dropdown {
  width: 100%;
  background: white;
  position: absolute;
  z-index: 999;
  display: none;
}
ul li a:hover{
  background:  #023e3a;
  }
  ul li:hover ul.dropdown{
      display: block;
  }
  header {
    position: sticky;
    top: 0;              
    background: #026969;
    padding: 20px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;       
}


.fa{
  margin-right: 6px;
  vertical-align: middle;
  font-size: 30px;
  color: black;
}



.cont {
  color: #4b0082;
  margin-left: 30px;
  margin-top: 100px;
  font-size: 2.5rem;
  font-weight: bold;
}

.cont h1 {
  line-height: 1.2;
}

.in {
  display: flex;
  gap: 20px;
  margin: 30px;
}

.in p {
  font-size: 1.4rem;
  font-weight: bold;
  flex: 1;
}

.did-you-know {
  background: #0A728F;
  color: white;
  border-radius: 10px;
  text-align: center;
  height: 250px;
  width: 350px;
  padding-top: 15px;
  box-shadow: 8px 8px black;
}

.did-you-know h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.slider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  font-size: 20px;
}

.slide.active {
  opacity: 1;
}

.services {
  padding: 50px 20px;
  text-align: center;
}

.services h2{
  font-size: 2rem;
  padding: 10px;
  margin-bottom: 5px;
}

.service-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-box {
  background: #ffffff;
  padding: 20px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 0 10px;
  text-align: center;
}

.service-box h3 {
  margin-bottom: 10px;
  color: #0a91dd;
}

.service-box p {
  font-size: 0.95rem;
  color: #333;
}

.first {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
  margin: 10px;
  box-shadow: 0 0 15px;
  background-color: white;
}

.first-content h2 {
  font-size: 2.5rem;
}

.first-content p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.first-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  background: #0a91dd;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #023e3a;
}


.records {
  padding: 60px 20px;
  text-align: center;
  background: #eef6fa;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px;
}

.records h2 {
  font-size: 2rem;
}

.records p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}


footer {
  background-color: #023e3a;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

