* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  /* font-weight: bol; */
}
body {
  overflow: hidden;
  height: 100%;
}
nav {
  width: 100%;
  height: 70px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 35px;
  border-bottom: 1px solid rgb(214, 214, 214);
  animation: fade 5s;
}
.nav-icon {
  display: flex;
}
.icc {
  padding: 0 20px;
}
.nav-img {
  border-radius: 50%;
}
.search {
  width: 250px;
  padding: 5px 10px;
  border-radius: 50px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid rgb(214, 214, 214);
}
.nav-logo {
  font-size: 20px;
  font-weight: bold;
  color: rgb(6, 133, 245);
  font-family: sans-serif;
}
main {
  width: 100%;
  height: 91.5vh;
  display: flex;
}
.side1 {
  width: 20%;
  border-right: 1px solid rgb(214, 214, 214);
  overflow-y: scroll;
  cursor: pointer;
  background-color: white;
  padding-bottom: 70px;
}
.cat {
  padding: 20px;
}
.side2 {
  width: 80%;
  overflow-y: scroll;
}
.shift {
  padding: 10px;
}
.over {
  background-color: rgba(2, 84, 155, 0.11);
  padding: 10px;
  border-radius: 7px;
  margin-bottom: 5px;
  color: rgb(0, 0, 0);
}
.over:hover {
  background-color: rgba(2, 84, 155, 0.2);
}

span {
  padding-right: 110px;
  padding-left: 10px;
}
#home {
  display: block;
  animation: fadei .5s;
  padding: 0px 30px;
  background-color: white;
}
#contact {
  display: none;
  animation: fadei 3s;
  padding: 0px 30px;
  background-color: white;
}
.home-holder {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.home-h1 {
  font-weight: bold;
  color: rgb(0, 136, 255);
}
.home-h2 {
  height: 30px;
}
.home-about {
  text-align: justify;
}
.butn {
  padding: 15px 25px;
  background-color: rgb(0, 136, 255);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: bolder;
  box-shadow: 0px 0px 20px rgb(164, 212, 255);
}
.butn:hover {
  background-color: white;
  color: rgb(0, 136, 255);
  border: 1px solid rgb(0, 136, 255);
  transition: 0.5s;
}

.image-holder {
  text-align: center;
  margin-bottom: 20px;
}

.profile-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid #0088ff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.322);
  object-fit: cover;
}


@keyframes fadei {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#overview {
  display: none;
  background-color: blue;
  animation: fadei 2s;
}
.dn {
  display: none;
  box-shadow: 0px 0px 20px #cac9c9;
  animation: inc infinite 1s;
  font-size: large;
  font-weight: bolder;
}

.dnn {
  display: none;
}

@keyframes inc {
  0% {
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
  }
  50% {
    transform: scale(1);
    transition: 0.5s ease-in-out;
  }
  100% {
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
  }
}

.expi {
  display: flex;
  width: 100%;
  height: 70px;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  align-items: center;
}

.expi-hold {
  width: 50%;
  text-align: center;
}

.ffa {
  font-size: larger;
  box-shadow: 0px 0px 20px rgba(128, 128, 128, 0.459);
}

.space {
  padding: 50px;
}
.icon {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  height: 40px;
  align-items: center;
}
/*  */

/* Service Page Styling */
.service-page {
  padding: 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.service-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0088ff;
}

.service-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
}

/* .service-card:hover {
  transform: scale(1.1);
  transform: translateY(-10px);
} */

.service-icon {
  font-size: 40px;
  color: #0088ff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #666;
}

.body2 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.body2-div {
  width: 200px;
  margin: 0 auto;
  background-color: #0088ff;
  text-align: center;
  padding: 10px 0;
  border-radius: 7px;
  color: white;
  font-size: 18px;
  font-weight: bolder;
  animation: inc infinite 2s;
}

.body1 {
  display: none;
}
.clock-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Arial", sans-serif;
}
.clock {
  font-size: 18px;
  color: #0088ff;
  font-weight: bold;
}

.contact-container {
  width: 90%;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #007bff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-group textarea {
  resize: vertical;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
footer {
  background-color: #007bff;
  margin-top: 50px;
  padding: 10px;
  color: white;
}

@media (max-width: 850px) {
  .body2 {
    display: none;
  }

  .body1 {
    display: block;
  }
}

@media (max-width: 850px) {
  .dn {
    display: block;
    position: fixed;
    top: 110px;
    left: 0;
    background-color: rgb(0, 136, 255);
    color: white;
    padding: 10px 15px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  .message {
    position: absolute;
    font-size: 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
    background-color: black;
    color: white;
    top: 80px;
    left: 60px;
    font-family: monospace;
    font-weight: bolder;
    box-shadow: 0px 0px 10px #007bffb6;
    animation: go 10s infinite;
  }
  @keyframes go {
   0%{
    opacity: 1;
    transform: translatex(-20px);
    transition: .5s;
   }
  
   20%{
    opacity: 1;
    transform: translateY(-10px);
    transition: .5s;
   }
   30%{
    opacity: 1;
    transform: translateY(10px);
    transition: .5s;
   }
   40%{
    opacity: 1;
    transform: translateY(-10px);
    transition: .5s;
   }
   50%{
    opacity: 0;
    transform: translateY(10px);
    transition: .5s;
   }
   60%{
     opacity: 0;
     transform: translateY(-10px);
     transition: .5s;
   }
   70%{
    opacity: 0;
   }
   100%{
    opacity: 0;
   }
  }
  .bar {
    width: 25px;
    height: 3px;
    border-radius: 50px;
    margin-bottom: 3px;
    background-color: white;
  }
  .bars {
    width: 25px;
    height: 3px;
    border-radius: 50px;
    /* margin-bottom: 5px; */
    background-color: white;
  }
  .dnn {
    display: block;
  }
  nav {
    padding: 0 20px;
    
  }
  .icc {
    padding: 0 10px;
  }

  .search {
    width: 170px;
    padding: 5px 10px;
    border-radius: 50px;
  }
  .side2 {
    width: 100%;
  }
  .side1 {
    display: none;
    position: absolute;
    background-color: white;
    width: 60%;
    height: 100%;
    overflow-y: scroll;
    animation: 0.5s out;
  }
  @keyframes out {
    0% {
      width: 1%;
      transition: all 5s;
    }
    5% {
      width: 3%;
      transition: all 5s;
    }
    10% {
      width: 5%;
      transition: all 5s;
    }
    15% {
      width: 8%;
      transition: all 5s;
    }
    20% {
      width: 10%;
      transition: all 5s;
    }
    25% {
      width: 13%;
      transition: all 5s;
    }
    30% {
      width: 15%;
      transition: all 5s;
    }
    35% {
      width: 18%;
      transition: all 5s;
    }
    40% {
      width: 20%;
      transition: all 5s;
    }
    45% {
      width: 23%;
      transition: all 5s;
    }
    50% {
      width: 25%;
      transition: all 5s;
    }
    55% {
      width: 28%;
      transition: all 5s;
    }
    60% {
      width: 30%;
      transition: all 5s;
    }
    65% {
      width: 33%;
      transition: all 5s;
    }
    70% {
      width: 35%;
      transition: all 5s;
    }
    75% {
      width: 38%;
      transition: all 5s;
    }
    80% {
      width: 39%;
      transition: all 5s;
    }
    85% {
      width: 42%;
      transition: all 5s;
    }
    90% {
      width: 44%;
      transition: all 5s;
    }
    95% {
      width: 50%;
      transition: all 5s;
    }
    100% {
      width: 55%;
      transition: all 5s;
    }
  }
  .hide {
    animation: faden 1s;
  }
  @keyframes faden {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .nav-logo {
    font-size: 17px;
    font-weight: bold;
    color: rgb(6, 133, 245);
    font-family: sans-serif;
    padding-top: 10px;
  }
}
