* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  list-style: none;
}
body {
  background: #fff;
}
/* Start of Navigation Section */
.flex-nav {
  z-index: 999999;
  position: fixed;
  width: 100%;
}
.nav-header {
  width: 100%;
  background: rgb(231, 231, 231);
  display: flex;
  align-items: center;
  padding: 5px;
  position: relative;
}
.logo-name {
  align-items: center;
  display: flex;
  width: 250px;
}
.logo-name .company-name-nav {
  font-size: 1.2em;
  padding-left: 5px;
}
.company-name-nav span {
  color: rgb(245, 159, 0);
}
.nav-header .nav-toggle {
  position: absolute;
  right: 8px;
  font-size: 1.9em;
  padding: 2px;
  border-radius: 6px;
  border: none;
  outline: none;
  color: rgb(245, 159, 0);
  transition: all 0.5s;
  cursor: pointer;
  overflow: hidden;
}
.nav-header .nav-toggle:hover {
  background: rgb(245, 159, 0);
  color: #008080;
}
.logo-name img {
  border-radius: 8px;
  width: 70px;
  height: 70px;
}
.nav-links {
  width: 200px;
  height: 0;
  overflow: hidden;
  background: rgb(231, 231, 231);
  transition: all 0.5s ease-in-out;
  border-bottom-right-radius: 15px;
}
.nav-links.show {
  height: 400px;
}
.navigation-links {
  display: block;
}
.navigation-links li {
  margin: 10px 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.navigation-links li a {
  display: flex;
  color: #008080;
  align-items: center;
  font-size: 1.3em;
  width: 100%;
  padding: 10px 20px;
  text-decoration: none;
  position: relative;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
.navigation-links li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  background-color: rgb(245, 159, 0);
  bottom: 0;
  transition: all 0.6s;
}
.navigation-links li a:hover::after {
  width: 100%;
}
.navigation-links li.on-page a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgb(235, 136, 23);
}
.navigation-links li.on-page a {
  color: rgb(0, 0, 78);
}
.navigation-links li a:hover {
  color: rgb(0, 0, 78);
}
.navigation-links li a i {
  padding-right: 10px;
}
@media only screen and (max-width: 899px) {
  .nav-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-links {
    padding-left: 20px;
    width: 250px;
  }
  .navigation-links {
    flex-direction: column;
  }
  .navigation-links li {
    margin: 10px 0;
  }
  .navigation-links li a {
    padding: 10px;
    text-align: center;
  }
}
@media only screen and (min-width: 900px) {
  .navigation-links li {
    margin: 0 10px;
  }
  .navigation-links li a i {
    display: none;
  }
  .nav-toggle {
    display: none;
  }
  .nav-links {
    z-index: 400;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    height: 80px;
    width: 600px;
    border-radius: 0;
  }
  .navigation-links {
    display: flex;
  }
}
/* End of Navigation Section */

/* Beggining of Hero Section */
#heroSection {
  padding: 100px 10px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  background: #008080;
}
.home-name {
  padding-top: 30px;
}
.home-name .social-icons {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-icons i {
  color: #130161;
  font-size: 2em;
  margin: 2px 7px;
  border: 1px solid;
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.social-icons i:hover {
  background: rgb(235, 136, 23);
  color: #008080;
}
.home-name .company-name {
  padding: 10px 0 2px;
  font-family: "Raleway", sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-align: center;
}
.home-name .company-slogan {
  color: rgb(2, 2, 131);
  text-align: center;
  font-family: "Agbalumo", sans-serif;
  font-size: 1.3em;
  padding-bottom: 20px;
}

.company-slogan-span {
    color: #39FF14;
    font-family: "Agbalumo", sans-serif;
    /*font-size: 1.3em;*/
    /*padding-bottom: 20px;*/
}

.home-name .intro-phrase {
  text-align: center;
  color: #eee;
  font-size: 1.1em;
  padding-bottom: 15px;
}
.home-name .cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0 25px;
}
.cta-btn .call-us-btn {
  font-family: "Agbalumo", sans-serif;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 3px 15px;
  background: rgb(235, 136, 23);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-size: 1.2em;
  transition: all 0.4s ease-in-out;
}
.cta-btn .call-us-btn:hover {
  color: #fff;
  background: #130161;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
#heroSection .image {
  width: 100%;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.image img {
  max-width: 700px;
  width: 100%;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media only screen and (min-width: 800px) {
  #heroSection {
    display: flex;
    flex-direction: row;
    padding: 100px 20px 50px;
  }
  .home-name {
    width: 50%;
  }
  #heroSection .image {
    height: 100%;
    width: 50%;
  }
  .image img {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
/* Beginning of About us section */
#aboutUs {
  width: 100%;
  background: #f1f1f1;
  padding-bottom: 10px;
}
#aboutUs .intro-title {
  position: relative;
  width: 100%;
  padding: 6px;
}
.section-title {
  padding: 15px 0 20px;
  font-size: 1.6em;
  text-align: center;
  font-family: "Agbalumo", sans-serif;
  color: #130161;
  font-weight: 600;
  letter-spacing: 1px;
}
.section-description {
  padding-left: 20px;
  font-size: 1.4em;
  font-family: "Agbalumo", sans-serif;
}
.intro-title .more-about-us-btn {
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.8em;
  border: none;
  outline: none;
  color: #008080;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid;
}
.more-about-us-btn i {
  font-size: 1.2em;
}
.more-about-us-btn:hover i {
  display: block;
}
.about-content-section {
  width: 100%;
  box-sizing: border-box;
}
.about-content-section .image-div {
  margin-top: 10px;
  width: 100%;
  padding: 5px 10px 2px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.image-div img {
  max-width: 650px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.about-description-div {
  width: 100%;
  padding: 2px 15px;
}
.about-description-div p {
  font-size: 1em;
  padding: 8px 0;
}
.about-description-div p span {
  color: #008080;
  font-weight: bold;
}
#aboutUs .about-button-div {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-button-div .about-div-btn {
  color: #008080;
  font-weight: bold;
  min-width: 200px;
  width: 80%;
  padding: 5px 30px;
  margin: 5px 0;
  font-size: 1em;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  outline: none;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.about-div-btn:nth-child(1) {
  color: #fff;
  background: #008080;
}
.about-div-btn:nth-child(1):hover {
  background: #029999;
}
.about-div-btn:nth-child(2):hover {
  background: #c9c9c9;
}
.about-div-btn:nth-child(1) a {
  color: #f1f1f1;
}
.about-button-div .about-div-btn:hover {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 450px) and (max-width: 799px) {
  #aboutUs .about-button-div {
    display: flex;
    flex-direction: row;
  }
  .about-button-div .about-div-btn {
    margin: 0 10px;
  }
}
@media only screen and (min-width: 800px) {
  .about-content-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* End of about us section */

/* Beginning of why us section */
#whyUsSection {
  padding: 20px 0;
  width: 100%;
  box-sizing: border-box;
}
.why-choose-us-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}
.why-choose-us-div .why-us-card {
  width: 100%;
  min-width: 280px;
  max-width: 400px;
  min-height: 200px;
  margin: 10px;
  border: 1px solid #008080;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.why-us-card .card-header {
  background: #c8e0ca;
  width: 100%;
  display: flex;
  align-items: center;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.card-header img {
  width: 70px;
  height: auto;
  padding: 5px 10px;
}
.card-header .card-title {
  font-family: "Agbalumo", sans-serif;
  color: #130161;
}
.why-us-card .card-description {
  font-size: 1em;
  padding: 5px 6px 8px;
}
@media only screen and (min-width: 619px) {
  .why-choose-us-div .why-us-card {
    max-width: 200px;
    min-height: 230px;
    width: calc((100% - 20px) / 3);
  }
}
/* End of why choose us section */

/* Start of our service section */
#ourServiceSection {
    width: 100%;
}
#ourServiceSection .intro-title {
    padding-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#ourServiceSection .section-descriptions {
    text-align: center;
    padding: 8px;
    font-size: 1.2em;
    font-family: "Agbalumo", sans-serif;
}
.service-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.service-card{
    width: 100%;
    background: #fff;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    background: #ddddddd7;
}
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.service-content{
    padding: 2px 8px;
}
.service-title{
    text-align: center;
    color: #008080;
}
.service-description{
    color: #012a2a;
}
.learn-more{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: none;
    outline: none;
    background: none;
    margin: 2px 0 20px;
    transition: all 0.5s ease;
}
.learn-more:hover{
    gap: 8px;
}
.learn-more a,
.learn-more i{
    color: rgba(235, 136, 23);
    text-decoration: none;
}
.service-btns{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.request-service-btn{
    width: 80%;
    cursor: pointer;
    border: none;
    padding: 6px 0;
    outline: none;
    background: #008080;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.request-service-btn:hover{
    background: #024d4d;
}
@media only screen and (min-width: 500px) {
    .service-container .service-card {
      width: 45%;
    }
}
@media only screen and (min-width: 900px) {
    .service-container .service-card {
      width: 30%;
    }
}
/* End of Our Service Section */

/* Start of Contact Us Section */
#contactUs {
  width: 100%;
  box-sizing: border-box;
  background: #f2f2f2;
  padding-top: 20px;
}
.intro-title .section-desc {
  padding: 5px;
  text-align: center;
}
#contactUs .section-descriptions {
  text-align: center;
  font-size: 1.1em;
}
#contactUs .section-descriptions span a {
  font-family: "Agbalumo", sans-serif;
  color: #130161;
  cursor: pointer;
  font-weight: bold;
  transition: 0.5s;
}
#contactUs .section-descriptions span a:hover {
  text-decoration: underline;
  color: #145858;
}
.view-card-section {
  background: #02bebe;
  width: 100%;
}
.view-card-container {
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.view-card-section .view-card {
  margin: 10px;
  background: #c5c5c5b9;
  width: max-content;
  min-width: 230px;
  min-height: 190px;
  border: 1px solid #cacaca;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  overflow: hidden;
}
.view-card .card-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 10px;
}
.card-content i {
  font-size: 3em;
  color: #130161;
}
.card-content .view-title {
  font-family: "Agbalumo", sans-serif;
  color: #130161;
}
.card-content .view-details {
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.2em;
  letter-spacing: 1.2;
  padding: 2px;
}
.view-card .view-name-div {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  background-color: rgb(235, 136, 23);
  bottom: 0;
}
.view-card-section .social-icons-div {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
}
.social-icons-div .social-title {
  font-family: "Agbalumo", sans-serif;
  color: #130161;
  padding-top: 10px;
  padding-bottom: 15px;
}
/* Form section */
.contact-us-form {
  padding-top: 5px;
  background: #f2f2f2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-us-form .contact-title-sect {
  padding: 15px 10px;
}
.contact-title-sect span {
  font-family: "Raleway", sans-serif;
  color: #008080;
}
.contact-title-sect h3,
.contact-title-sect p {
  text-align: center;
}
.contact-us-form .form-section {
  width: 100%;
  padding: 10px 10px 20px;
}
.form-container {
  max-width: 480px;
}
.form-section .form-div {
  width: 100%;
  margin: 9px 0;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.form-div label {
  font-size: 1em;
  font-weight: bold;
  text-align: left;
}
.form-div label span {
  font-style: italic;
}
.form-div input,
.form-div select {
  width: 100%;
  padding: 5px;
  font-size: 1.1em;
  font-family: "Times New Roman", Times, serif;
  border-radius: 4px;
  border: 1px solid #008080;
}
.form-div textarea {
  width: 100%;
  resize: none;
  height: 150px;
  padding: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2em;
  border-radius: 4px;
}
.form-div-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 5px;
}
.form-div-btn .send-btn {
  font-family: "Agbalumo", sans-serif;
  letter-spacing: 1.3px;
  width: 90%;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  color: #2203ad;
  transition: all 0.3s ease;
  background: #008080;
  padding: 4px 20px;
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}
.form-div-btn .send-btn:hover {
  color: #f1f1f1;
  background: rgba(235, 136, 23, 0.87);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 1092px) {
  .contact-us-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .view-card-section {
    padding-top: 40px;
    padding-bottom: 30px;
    width: 55%;
  }
  .contact-us-form {
    width: 45%;
  }
}
/* End of contact us section */

/* Start of Footer Section */
#footerSection {
  width: 100%;
  background: #008080;
}
.footer-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-container .footer-divs {
  margin: 5px;
  max-width: 300px;
  padding: 5px 10px 30px;
}
.footer-div1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.footer-title {
  font-size: 1.6em;
  color: rgb(236, 159, 70);
  font-family: "Agbalumo", sans-serif;
  letter-spacing: 1.2px;
  padding-bottom: 10px;
}
.footer-mission {
  font-size: 1.2em;
}
#footerSection .social-icons {
  padding-top: 20px;
}
.footer-div2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.quick-links {
  font-size: 1.4em;
  font-family: "Raleway" sans-serif;
  color: #2203ad;
  padding-left: 10px;
}
.footer-div2 .footer-links {
  padding-top: 10px;
  list-style: none;
}
.footer-links .footer-list-element {
  min-width: 200px;
  padding: 3px 15px;
  margin: 1px;
  transition: all 0.4s ease;
}
.footer-links .footer-list-element a {
  color: #130161;
  font-weight: 700;
  transition: all 0.4px;
  cursor: pointer;
  font-size: 1.1em;
}
.footer-links .footer-list-element a:hover {
  padding-left: 8px;
  color: #cacaca;
}
.footer-div3 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer-div3 .footer3-elements {
  padding: 0 10px;
  font-size: 1em;
}
.footer3-elements p:nth-child(odd) {
  font-weight: bold;
  padding-top: 8px;
}
.footer3-elements p:nth-child(even) {
  padding-left: 8px;
}
.copyright-div {
  width: 100%;
  padding: 10px 5px;
}
.copyright-div p {
  text-align: center;
  font-size: 1em;
  line-height: 1.9em;
}
.copyright-div a:hover {
  color: rgb(236, 159, 70);
  text-decoration: underline;
}
@media only screen and (min-width: 930px) and (max-width: 1240px) {
  .footer-container .footer-divs {
    max-width: 450px;
  }
}
