*,html{
  scroll-behavior: smooth;
  }
  *, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
  :root{
  scrollbar-color: rgb(210,210,210) rgb(46,54,69) !important;
  scrollbar-width: thin !important;
  --white:#fff;
  --black:#1e1e1e;
  /* --pink:#e30846; */
  --pink:#00b894;
  --secondary:#202124;
  --gray:#b8bca7;
  --blue:#061221;
  }
  ::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: #000;
  }
  ::-webkit-scrollbar-thumb {
  background: gray;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
  }
  ::-webkit-scrollbar-corner {
  background: #000;
  }
  
  
  
/* ============================================================================== */
  /*===============================DEFAULT==============================*/
  body{
  margin:0;
  overflow-x:hidden !important;
 font-family: 'Poppins', sans-serif;
  }
  
  a{
  text-decoration:none;
  color:var(--white);
  }
  
  a,button{
  transition:0.5s;
  }
  
  p{
  line-height:1.8em;
  letter-spacing:0.06em;
  }
  
  fieldset{
  border:0;
  }
  
  a, button, select{
  outline:none !important;
  }
  
  img{
  width:99%;
  }
  
  .title{
  font-family: 'Playfair Display', serif;
  }

.cursive {
font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
  margin: 5rem 1rem;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #1e1e1e;
  display: inline-block;
}

.cursive em {
  font-family: 'Great Vibes', cursive;
  font-size: 1.2em;
  color: #00b894;        
  font-style: normal;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.cursive:hover em {
  transform: rotate(0deg) scale(1.2);
  color: #01976b;
}

@media (max-width: 1120px) { .cursive { font-size: 3rem; } }
@media (max-width: 820px) { .cursive { font-size: 2.2rem; } }
@media (max-width: 480px) { 
  .cursive { font-size: 1.8rem; letter-spacing: 1px; }
  .cursive em { font-size: 1em; padding: 0 2px; }
}

  p{
  line-height:1.6em;
  letter-spacing:0.06em;
   color: #010416;
  }
  
  .title{
  font-family: 'Playfair Display', serif;
  }
  
  .title_header{
  width:60%;
  text-align:center;
  margin:auto;
  }
  
  .title_header h1{
  font-size:2em;
  }
  
  .title_header h3{
  font-size:1.2em;
  font-weight:400;
  color:rgba(1,1,1,0.7);
  }
  
  .btn1{
  padding:20px;
  text-align:center;
  display:inline-block;
  width:200px;
  background-color:var(--pink);
  border-radius:40px;
  font-weight:600;
  }
  
  .btn1:hover{
  background-color:var(--secondary);
  }
  
  .btn2{
  padding:20px;
  text-align:center;
  display:inline-block;
  width:250px;
  border-radius:40px;
  font-weight:600;
  }
  
  .btn1:hover{
  background-color:var(--secondary);
  }
  
  .border-shape {
  background: var(--secondary) none repeat scroll 0 0;
  color: #fff;
  display: block;
  height: 3px;
  left: 0;
  margin: 20px auto;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 80px;
  }
  
  .border-shape::before {
  background: var(--pink) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 80px;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 100%;
  }
  
  .border-shape::after {
  background: var(--pink) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  margin: 0 auto;
  position: absolute;
  right: 80px;
  text-align: center;
  top: 1px;
  width: 100%;
  }
  
  @media (max-width:820px){
  .btn1,.btn2{
  padding:10px 15px;
  width:150px;
  }
  .title_header{
  width:100%;
  }
  .title_header h1{
  font-size:1.5em;
  }
  
  .title_header h3{
  font-size:1em;
  }
  }
  
  /*ANIMATION*/
  @keyframes arrows {
  0%,
  100% {
  color: black;
  transform: translateY(0);
  }
  50% {
  color: #3AB493;
  transform: translateY(20px);
  }
  }
  
  .animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
  }
  
  @keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
  }
  
  /*========================*********HEADER************************==========================*/
  .header{
  width:100%;
  position:relative;
  display:flex;
  align-items:center;
  background-color:var(--pink);
  padding:1rem 0;
  padding-bottom:3rem;
  }
  
  .header section{
  width:100%;
  text-align:center;
  padding:1rem 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  }
  
  .header section span{
  margin:0 20px;
  }
  
  .header section span a{
  color:var(--white);
  white-space:nowrap;
  }
  
  .header section span a:hover{
  color:var(--dark);
  }
  
  @media (max-width:820px){
  .header section:nth-child(1){
  display:none;
  }
  }
  
  /************===========TOP NAVIGATION=========*************/
  #header{
  position:fixed;
  top:5rem;
  width:100%;
  z-index:99999;
  transition:0.5s;
  }

  .topnav {
  overflow: hidden;
  background-color: var(--blue);
  width:80%;
  margin:auto; 
  box-shadow:0px 6px 16px -6px rgba(1,1,1,0.7);
  transition:0.5s;
  }
  
  .topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 16px 16px;
  margin:auto 1rem;
  text-decoration: none;
  font-size: 17px;
  position:relative;
  top:10px;
  }
  
  #logo{
  width:80px;
  position:relative;
  top:-10px;
  height: 60px;
  }
  
  #icon{
  float:right;
  }
  
  #active{
  display:flex;
  }
  
  #active img{
  width:130px;
  }
  
  #active:hover{
  color:#fff;
  }
  
  .topnav .icon {
  display: none;
  }
  
 
  .topnav a:hover {
  color: #00b894;
  }

  
  @media screen and (max-width: 1120px) {
  .logo{
  width:20px;
  position:static;
  }

  .topnav a:not(:first-child) {
  display: none;
  }
  .topnav a.icon {
  float: right;
  display: block;
  }
  #active{
  display:none;
  }
  }
  
  @media screen and (max-width: 1120px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
  position: absolute;
  right: 0;
  top: 0;
  }
  .topnav.responsive a {
  float: none;
  display: block;
  text-align: left;
  padding: 14px 16px;
  }
  }
  

  /******************================BANNER====================***********************/
  .banner {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(1,1,1,.7), rgba(1,1,1,.7)), url("building/equpt.avif") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
 font-family: 'Poppins', sans-serif;
  overflow: hidden;
}


.banner::after {
  content: "";
  background-image: url("https://i.ibb.co/8zB1N3z/wave.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
}


.banner section {
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}


.banner .cursive {
  font-size: 4.5em;
  font-weight: 800;
  text-transform: capitalize;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
}

.banner .cursive em {
  color: #00b894;
  font-style: normal;
}


.banner section h2 {
  font-weight: 300;
  font-size: 1.6em;
  color: #f1f1f1;
  margin-top: 10px;
}


.banner-buttons {
  margin-top: 2rem;
}

.banner .btn1 {
  display: inline-block;
  background-color: #00b894;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.banner .btn1:hover {
  background-color: #01976b;
  transform: scale(1.05);
}

.banner .btn1.dark {
  background-color: #e30846d5;
}

.banner .btn1.dark:hover {
  background-color: #63013a;
}


@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


@media (max-width: 820px) {
  .banner {
    height: 90vh;
    padding: 1rem;
  }

  .banner section {
    width: 100%;
    padding: 1rem;
  }

  .banner .cursive {
    font-size: 2.2em;
    line-height: 1.2;
    font-weight: 900;
  }

  .banner section h2 {
    font-size: 1.1em;
  }

  .banner-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner .btn1 {
    margin: 10px 0;
    width: 80%;
    font-size: 1em;
  }
}


  /******************================About section====================***********************/
  .about-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 40%, #e8f5f1);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.about-images img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.about-content {
  flex: 2;
  text-align: center;
  padding: 1rem;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.about-title em {
  color: #007b5e;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #444;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.about-card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.about-card h3 {
  color: #007b5e;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: #555;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-images img {
    width: 45%;
    height: 180px;
  }

  .about-content {
    text-align: center;
  }

  .about-title {
    font-size: 2.2rem;
  }
}


.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contact-btn i {
  font-size: 1.2rem;
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.contact-btn.phone {
  background: #01236d;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.contact-btn.phone:hover {
  background: #1eb255;
}

.contact-btn.email {
  background: #0566e4;
  box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
}

.contact-btn.email:hover {
  background: #145dbf;
}

.contact-btn.website {
  background: #039137; 
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.contact-btn.website:hover {
  background: #1eb255;
}

@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 80%;
    justify-content: center;
  }
}


    /******************================ Product section===================***********************/
.services-section {
  padding: 4rem 2rem;
  background: #f3f7f6;
   font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}

.section-header p {
  color: #010416;
  font-weight: 300;
  margin-top: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.service-card:hover .overlay {
  opacity: 1;
}

.overlay-content {
  padding: 1rem;
  color: #fff;
}

.overlay-content h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.overlay-content p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.3;
}

@media (max-width: 820px) {
  .card-img img {
    height: 200px;
  }
}

.card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #089f8a;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  text-transform: uppercase;
  z-index: 2;
}

.service-card:nth-child(2) .card-label { background-color: #ef4e7b; }
.service-card:nth-child(3) .card-label { background-color: #1098ad; }
.service-card:nth-child(4) .card-label { background-color: #ff9f1c; }



  /*================================CONTACT FORM=======================================*/
  .contact{
  padding:3rem;
  background-color:#f3f7f6;
  background-size:cover;
  display:flex;
  position:relative;
  }
  
  .contact section{
  width:100%;
  margin:auto;
  position:relative;
  }
  
  .contact section form{
  width:80%;
  background-color:var(--white);
  padding:2rem 1rem;
  box-shadow: 0 0 20px 0 #dddddd8c;
  border-radius:30px;
  
  }
  
  .contact section input{
  width:100%;
  padding:1rem;
  background-color:#f3f7f6;
  border:0;
  }
  
  .contact section textarea{
  width:100%;
  padding:1rem;
  resize:none;
  background-color:#f3f7f6;
  border:0;
  }
  
  .contact section button{
  margin:auto;
  border:0;
  display:block;
  color:var(--white);
  }
  
  .contact_info ul{
  display:flex;
  align-items:center;
  width:90%;
  margin:auto;
  }
  
  .contact_info ul li{
  padding:1rem;
  list-style:none;
  line-height:1.8em;
  } 
  
  .contact_info ul li .fa{
  color:var(--secondary);
  padding:15px;
  background-color:var(--white);
  border-radius:10px;
  font-size:2em;
  box-shadow: 0 0 20px 0 #dddddd8c;
  width:60px;
  text-align:Center;
  }
  
  @media (max-width:820px){
  .contact{
  display:block;
  padding:1rem;
  }
  .contact section form{
  width:100%;
  }
  .contact_info ul{
  width:100%;
  }
  }
  
  
  
  footer {
  width: 100%;
  background-color: #000516;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Poppins', sans-serif;
}
 footer p{
  line-height:1.6em;
  letter-spacing:0.06em;
   color: #c0c3d6;
  }

footer a {
  color: #00b894;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  margin: 0 0.5rem;
  color: #f8fcfb;

}

footer i:hover {
  transform: scale(1.2);
  color: #00b894;
}

@media (max-width: 480px) {
  footer {
    font-size: 0.9rem;
  }
}

  
  
  
  
  
  
  /*ADDITIONAL*/
  #roll_back{
  position:fixed;
  bottom:2rem;
  right:2rem;
  background-color:var(--pink);
  border-radius:5px;
  border:2px solid var(--white);
  padding:5px 10px;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
  box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
  color:var(--white);
  font-weight:900;
  }
  









@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.6em;
    font-size: 1rem;

  }

h1 {
    font-size: 1.5rem;
}

p {
    font-size: 0.875rem;
}

h2, h3{
  font-size: 0.875rem;
}

header {
  padding: 2px;
  text-align: center;
  font-size: 20px;
}

.banner{
  height: 90vh;
  font-size: 20px;
}

.title {
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

h2 {
  color: #f6f5f5;
  margin-bottom: 10px;
  font-weight: 400;
}

p {
  color: #eae4e4;
  font-weight: 400;
}

.btn1{
  display: inline-block;
  background-color: #e30846;;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 20px;
}

footer {
    background-color: #061221;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.border-shape {
  border-top: 1px solid #fff;
  margin-bottom: 10px;
}

  .banner section h1 {
    font-size: 30px !important;
    line-height: 1;
    padding: 2px 3px;
  }

  .banner section h2 {
    font-size: 18px;
    line-height: 1.5;
    padding: 10px 0;
  }

  .about-japhet .title {
    font-size: 2.3em;
    line-height: 1.5;
  }

  .about-japhet h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .about-japhet h3 {
    font-size: 16px;
  }

  .about-japhet .btn1 {
    margin: 10px 20px;
    font-size: 14px;
  }
  .section1 .title_header {
    font-size: 20px;
    line-height: 1.5;
  }

  .section1 .card {
    font-size: 16px;
  }
}

  