@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;1,200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}
:root {

}
a {
  text-decoration: none;

}
body {
  font-family: "Poppins", sans-serif;
}

section {
    padding: 0 5%;  
    padding-top: 80px;
    margin-bottom: -20px;
  }
header {
  border-bottom: 2px solid #ACD146;
  height: 80px;
  position: fixed;
  padding: 15px 8%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#ffffff;
  z-index: 100;
  transition: 0.3s;
}

header .logo {
  position: relative; 
  font-size: 1.7rem;
  font-weight: 700;
  color: #4691C9;
 
}

header .logo img {
  top: 5px;
  position: relative;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  
}

header span {
  background:#ACD146;
  -webkit-background-clip: text;
  color: transparent;
}
header .navlist {
  display: flex;
}
.navlist li {
  margin: 0 1rem;
}
.navlist li a {
  font-size: 18px;
  display: inline-flex;
  font-weight: 600;
  color:rgb(0, 0, 0);
}
.navlist li a:hover {
  background:#4691C9;
  -webkit-background-clip: text;
  color: transparent;

  
}
.right-header {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: 0.8rem;
  
}
.btn {
  background:#4691C9;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 20PX;
  transition: all 0.3s ease;
  
}
.btn i{
padding-left: 5px;

}

.menu-icon {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
  /* background-color: blue; */
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #4691C9;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-icon.active::after {
  transform: rotate(45deg) translate(-8px, -8px);
}
.menu-icon.active .bar {
  opacity: 0;
}

/* animation in header */

@keyframes move{
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.animat{
  opacity: 0;
  transform: translateX(-300px);
  animation: moveup 0.8s linear forwards;
  }
  @keyframes moveup{
    100%{
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .home-section {
    top: 50px;
    position: relative;
    height: 90vh;
    overflow: hidden;
  }
  
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.1)), url('/img/homebg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8); /* Adjust as needed */
  }
  
  .content {
    top: 20%;
    position: relative;
    z-index: 1;
    text-align: left;
    color: #fff;
    padding: 20px;
  }
  
  .content h1{
    color: #0091ff;
    padding-bottom: 20px;
    font-size: 4rem;
  }
  .content p{
    padding-bottom: 20px;
    font-size: 1.3rem;
  }
  
  .buttons {
    margin-top: 20px;
    text-align: left;
  }
  
  .btn {
    padding: 10px 12px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    background-color:#4691C9;
    color: white;
  }
  

  .btn a{
    color: white;
  }

  /* =========================heading ============= */
  .heading {
    
    text-align: center; /* Center align the heading */
    font-size: 2rem;
    margin: 1px;
  }

  .heading h2 {
    position: relative; 
    display: inline-block; 
    padding-bottom: 2px; 
    

  }

  .heading h2::after {
    content: ''; /* Add pseudo-element for underline */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align it to the left */
    bottom: 0; /* Align it to the bottom */
    width: 100%; /* Make it span the whole width */
    height: 3px; /* Set the height of the underline */
    background-color: #ACD146; /* Set the color of the underline */
  }
  
  /* =======================  Our service =================== */
  .service{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
    margin-bottom: -25px;
    
  }
  .image{
    /* border: 2px solid red; */
     width: 100%;
     border-radius: 20px;
  }
.image img{
  background-repeat: no-repeat;
  background-size: cover;
padding: 50px;
width: 100%;
height: 400px;
border-radius: 100px;

  }
  .information{
    /* border: 2px solid red; */
    width: 100%;
    text-align: center;
  }
  .information h1{
    font-size: 2.3rem;
    position: relative;
    display: inline-block; 
    padding-bottom: 1px; 
  }
  .information h1::after {
    content: ''; /* Add pseudo-element for underline */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align it to the left */
    bottom:0; /* Align it to the bottom */
    width: 100%; /* Make it span the whole width */
    height: 3px; /* Set the height of the underline */
    background-color: #ACD146; /* Set the color of the underline */
  }
  .information p{


font-weight:600 ;

color: rgb(122, 122, 122);
line-height: 29px;
font-size: 18px;

  }
/* ======================== Why we use =============== */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px;
}

.card {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgb(6, 6, 6) 0px 20px 20px -10px;
  text-align: center;
}

.card-icon {
  /* border: 1px solid red; */
  width: 100%;
  margin: 5px;
}
.card-icon img{
  height:300px ;
  width: 100%;
  border-radius: 20px;
  transition: 1s ease;
}
.card-icon img:hover{
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(0.8);
  transition: 1s ease;
  box-shadow: rgb(38, 57, 77) 0px 20px 20px -10px;
}
.card-heading {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-paragraph {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
}

.card-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.card-heading {
  color: #0091ff;
  font-size: 20px;
  margin-bottom: 10px;
}

.card-paragraph {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  .card-icon img{
    height:200px ;
    width: 100%;
    border-radius: 20px;
    transition: 1s ease;
  }
}


/* ==================About Us ====================== */

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
 
  padding:10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainImg {

  width: 55%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
 border-radius: 10px;
}

.text-blk.headingText {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  color: #0091ff;
  padding: 10px;
  margin-bottom: 5px;

}

.allText {
  margin-left: 40px;
  width: 40%;
}

.text-blk.subHeadingText {
  text-align: justify;
  color: rgb(35, 30, 30);
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
 padding: 5px 10px;
  margin-bottom: 15px;
  
}

.text-blk.description {
  text-align: justify;
  font-size: 20px;
  line-height: 34px;
  color: rgb(4, 4, 4);
  margin-bottom: 50px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.explore a {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: rgb(255, 255, 255);
  background-color:#0091ff;
  padding: 10px 50px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.explore a:hover {
  border-radius: 20px;
  background-color: rgb(0, 0, 0);
  color:#84ff01;
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
 padding: 10px;
}

.responsive-container-block.Container.bottomContainer {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  flex-direction: row-reverse;
  margin: 100px auto 50px auto;
}

.allText.aboveText {
  margin: 0 0 0 40px;
}

.allText.bottomText {
  margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .text-blk.description {
    text-align: justify;
    font-size: 18px;
  }

  .allText {
    width: 40%;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
  padding: 10px;
  }

  .text-blk.subHeadingText {
    text-align: justify;
    font-size: 18px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin: 30px 0 0 40px;
  }

  .allText.bottomText {
    margin: 30px 40px 0 0;
  }
}

@media (max-width: 768px) {
  .mainImg {
    width: 90%;
  margin-top: -80px;
  }

  .allText {
   
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 18px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 15px;
  }

  .allText {
    margin-top: 40px;
  }

  .allText.aboveText {
    margin: 40px 0 0 0;
  }

  .responsive-container-block.Container {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 50px auto 50px auto;
  }

  .allText.bottomText {
    margin: 40px 0 0 0;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 18px;
  }

  .text-blk.description {
    font-size: 15px;
  
  }

  .allText {
    width: 100%;
  }
}
  /* ===================footer ==================== */
  footer {
    background: url(/img/foot.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    color: white;
    /* background: rgb(68, 67, 67); */
    padding: 50px 0 30px;
    font-size: 13px;
    line-height: 20px;
  }
  .row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .col {
    flex-basis: 25%;
    padding: 10px;
  }
  .col:nth-child(2),
  .col:nth-child(3) {
    flex-basis: 15%;
  }
  .footer_logo {
    border-radius: 20px;
    width: 300px;

    height: auto;
    position: relative;
    top: -16px;
    left: -50px;
  }
  .footer_logo  img{
    border: 2px solid rgb(255, 0, 0);
  }
  .footer_about {
    position: relative;
    top: -23px;
  }
  .col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
  }
  .footer_email {
    width: fit-content;
    border-bottom: 1px solid white;
    margin: 20px 0;
  }
  .col ul li {
    list-style: none;
    margin-bottom: 12px;
  }
  .col ul li a {
    text-decoration: none;
    /* color: #fff; */
    color: white;
  }
  .col form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 1px solid #fee140; */
    border-bottom: 1px solid white;
    margin-bottom: 50px;
  }
  .col form .icon {
    font-size: 18px;
    margin-right: 10px;
  }
  .col form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
  }
  .col form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
  }
  .col form button .icon_right {
    font-size: 16px;
    color: #ccc;
  }
  /* .col .social_icons .social_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    background: #a27b5c;
    margin-right: 15px;
    padding: 5px;
    cursor: pointer;
  } */
  .social-media {
    display: flex;
    justify-content: space-between;
    width: 220px;
    height: 45px;
  }
  .social-media a {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    color: var(--main-color);
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    z-index: 1;
  }
  
  .social-media #inst {
    color: red;
  }
  .social-media #what {
    color: rgb(76, 242, 76);
  }
  .social-media #fb {
    color: blue;
  }
  .social-media #you {
    color: red;
  }
  .social-media a:hover {
    background:#4691C9;
    color: white;
  }
  
  hr {
    background-image: url('img/giphy.gif');
    background-repeat: no-repeat;
    background-size: cover;
    width: 90%;
    border: 0;
    border-bottom: 1px solid white;
    margin: 0px auto;
  }
  footer .copyright {
    text-align: center;
  }
  .bottom_line {
    width: 100%;
    height: 5px;
    background:  #ACD146;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
  }
  .bottom_line span {
    width: 15px;
    height: 100%;
    /* background: #fee140; */
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moveline 2s linear infinite;
  }
  @keyframes moveline {
    0% {
      left: -20px;
    }
    100% {
      left: 100%;
    }
  }
  
  @media screen and (max-width: 866px) {
    .col {
      flex-basis: 110%;
      padding: 10px;
    }
    .bottom_line ul {
      display: flex;
    }
    .footer_logo {
      top: -67;
      left: 80px;
    }
    .footer_logo {
      left: 20px;
      width: 250px;
    }
  }
  @media screen and (max-width: 786px) {
    .footer_logo {
      left: 20px;
      width: 250px;
    }
  }
  /* @keyframes  MoveText animation  */
  
  @keyframes moveText {
    0%,
    10%,
    100% {
      background-position: -24rem 0;
    }
    65%,
    85% {
      background-position: 0rem 0;
    }
  }
  @keyframes moveCursorText {
    0%,
    10%,
    100% {
      width: 0;
    }
    65%,
    78%,
    85% {
      width: 100%;
      opacity: 1;
    }
    75%,
    85% {
      opacity: 0;
    }
  }
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotateText {
    0% {
      transform: rotate(360deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  
  