body {
  background: linear-gradient(135deg, #e2eeff, #dde2e7);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #1f1f1f;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  transition: background 0.3s, color 0.3s;
  will-change: background, color;
  font-family: "Oxygen", serif;
  font-style: normal;
  scroll-behavior: smooth;
  background-size: cover;
}
h1,
h2,
h3 {
  font-family: "Merienda", serif;
}
body.dark-mode {
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  color: #ffffff;
  -webkit-backdrop-filter: brightness(0.3);
  backdrop-filter: brightness(0.3);
  font-family: "Oxygen", serif;
}
body.dark-mode .main-head-container {
  background-color: #1f1f1f;
}
body.dark-mode a,
body.dark-mode p,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
  color: whitesmoke;
}
body.dark-mode .service-collection {
  background: #000000; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #434343,
    #000000
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #434343, #000000);
  border: none;
}
body.dark-mode .service-number {
  color: whitesmoke;
}
body.dark-mode .services-tag h2 {
  color: crimson;
}
body.dark-mode .service-description h3 {
  color: crimson;
}

.main-head-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-position: right;
  background-color: #8cb8f1b6;
  border-radius: 15px;
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.main-head-description {
  margin-left: 5rem;
  margin-top: 5rem;
  width: 50rem;
}
.main-head-image {
  margin-top: 5rem;
  margin-right: 5rem;
  margin-left: 3rem;
}
.main-head-image img {
  border-radius: 15px;
  width: 500px;
  height: 400px;
  object-fit: cover;
}
.main-head-description h2 {
  font-size: 3rem;
  font-weight: bolder;
  background: linear-gradient(45deg, #ff6f61, #4a90e2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.main-head-description p {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.services-tag {
  gap: 5rem;
  color: #4a90e2;
  margin-top: 2rem;
}

.services-tag h2 {
  font-size: 3rem;
  font-weight: bolder;
  text-align: center;
}

.service-collection {
  margin-top: 3rem;
  flex-wrap: wrap;
}
.service-image img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  margin-top: 3rem;
  margin-left: 2rem;
}
.service-number {
  font-size: 2rem;
  font-weight: bolder;
  margin-left: 4rem;
  margin-top: 5rem;
}
.service-description {
  margin-left: 3rem;
  width: 75vw;
  font-size: large;
  text-align: justify;
}
.service-collection {
  background: #c8ddf9;
  color: #222;
  border: 1px solid cadetblue;
  border-radius: 15px;
  transform: translateX(-100%);
  display: flex;
  flex-wrap: wrap;
  margin: 3rem auto 1rem auto;
  transition: all 1s;
}
.service-collection:hover {
  transform: scale(1.5);
}
.see-more {
  color: crimson;
  font-size: 1.2rem;
  margin-left: 5px;
  cursor: pointer;
}
.see-more:hover {
  color: rgb(156, 39, 62);
}
#dark-mode {
  margin: 20rem;
}
.hide {
  display: none;
}
.hide2 img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-left: 1rem;
  object-fit: cover;
}

.hide2 .leader {
  margin-left: 1rem;
  margin-top: 0.75rem;
}
.service-description h3 {
  font-size: 2rem;
  margin: 1rem auto;
  font-weight: bolder;
  color: #4a90e2;
}
.hide2 {
  display: none;
}
.service-collection:hover .hide2 {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
  margin-top: 1rem;
}
.close-button {
  display: none;
}
.floating {
  position: fixed;
  top: 80%;
  left: 95%;
  transform: translate(-50%, -50%);
}
.floating svg {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0.5rem 0.5rem 0.5rem 0.5rem #211e1e;
  animation: floating 2s infinite;
}
.floating svg:hover {
  animation: none;
  scale: 1.2;
  box-shadow: none;
}

footer {
  background: #c8ddf9;
  color: #222;
  border: 1px solid cadetblue;
  padding: 2rem;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-section {
  margin: 1rem;
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: rgb(67, 66, 66);
}
.footer-section a {
  color: rgb(67, 66, 66);
}
.footer-section p {
  font-size: 1rem;
  color: rgb(67, 66, 66);
  text-decoration: none;
}

.footer-section a:hover {
  color: rgb(169, 91, 91);
}

.social-media a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: rgb(67, 66, 66);
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid gray;
  padding-top: 1rem;
}
.menu-button {
  display: none; /* Hide the menu button on larger screens */
}
footer.dark-mode {
  background-color: rgba(67, 66, 66, 0.17);
  color: whitesmoke;
  border: none;
}
footer.dark-mode .footer-section a {
  font-size: 1.2rem;
  color: whitesmoke;
  text-decoration: none;
}
footer.dark-mode .footer-section a:hover {
  color: rgb(169, 91, 91);
}
footer.dark-mode .footer-section h3,
footer.dark-mode .footer-section p {
  color: whitesmoke;
}
.menu-button {
  display: none;
}
@keyframes slidingdiv {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(30%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes reveal {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@media screen and (max-width: 1430px) {
  .service-number {
    margin-left: 40vw;
    margin-top: 5rem;
    margin-bottom: 0;
    margin-right: 0;
  }
  .service-description p{
    width: 85vw;
    margin-left: 1rem;
  }
  .menu-button {
    margin-left: 6rem;
    margin-top: 1rem;
    font-size: xx-large;
  }
  .service-image img {
    width: 8rem;
    height: 8rem;
  }
  .service-description h3 {
    text-align: center;
    margin-left: 25vw;
  }
  .hide2 img {
    margin-left: 30vw;
  }
  .main-head-description h2 {
    text-align: center;
  }
  .main-head-description p {
    text-align: center;
    font-size: larger;
  }
  .main-head-image img {
    margin-left: 15vw;
    margin-bottom: 2rem;
  }
}
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media screen and (max-width:1025px)  {
  .service-description h3 {
    margin-right: 10vw;

  }
  h3.seo-heading{
    margin-right: 7vw;
  }
}
@media screen and (max-width: 768px) {
  body p {
    font-size: 0.9rem;
  }
  .main-head-description h2 {
    font-size: 2rem;
  }
  .main-head-description p {
    font-size: 1.1rem;
    width: 85vw;
  }
  .service-description h3{
    margin-left:20vw;
  }
h3.seo-heading{
  margin-left: 25vw;
}
}
  @media screen and (max-width: 426px) {
    body p {
      font-size: 0.8rem;
    }
    .see-more {
      font-size: 0.8rem;
    }
    .service-description p {
      width: 80vw;
    }
    .main-head-description p {
      width: 90vw;
      font-size: small;
      margin-left: 1rem;
      text-align: start;
    }
    .main-head-description {
      margin-left: 1rem;
    }
    .main-head-image img {
      margin-left: 0;
      height: 20rem;
    }
    .main-head-image {
      margin-right: 0;
      margin-left: 0;
    }
    .service-description{
      margin-left: 1rem;
    }
    .service-description h3 {
      font-size: 1.5rem;
      text-align: center;
      margin-left: 25vw;
    }
    .service-number {
      margin-left: 25vw;
    }
    .hide2 img {
      margin-left: 10vw;
    }
    h3.seo-heading{
margin-left: 35vw;
    }
  }
  @media screen and (max-width: 376px) {
    .service-collection {
      flex-direction: column;
    }
    .service-number {
      margin-left: 45vw;
      width: fit-content;
    }
    .service-image img {
      margin-left: 30vw;
    }
    .service-description h3 {
      margin-left: 25vw;
    }
    h3.seo-heading {
      margin-left: 20vw;
    }
    .services-tag h2 {
      font-size: 2rem;
    }
  }
  @media screen and (max-width: 320px) {
    .service-number {
      margin-top: 0;
      margin-left: 45vw;
    }
    .service-description h3 {
      margin-left: 23vw;
      font-size: 1.2rem;
      margin-top: 0;
    }
    .service-image img {
      margin-left: 30vw;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .service-description p {
      width: 90vw;
      font-size: x-small;
      margin-left: 1rem;
    }
    .service-description {
      margin-left: 0;
    }
    h3.seo-heading {
      margin-left: 40vw;
    }
  }
  @media (min-width: 769px) {
    .menu-button {
      display: none; /* Hide the menu button on larger screens */
    }
  }
