/* @import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap'); */

*{
  font-family: 'Kalam';
  padding: 0; margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
}

html{
  overflow-x: hidden;
  font-size: 62.5%;
}

.heading{
  color:#333;
  font-size: 3.5rem;
  padding: 1rem;
  padding-top: 4rem;
  text-align: center;
  letter-spacing: .2rem;
}

.heading span{
  color:#0098a1;
}

header{
  width: 100%;
  background:rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top:0; 
  left:50%;
  transform: translateX(-50%);
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
  padding:20px;
  transition: .2s linear;
  z-index: 1000;
}

.header-active{
  background:rgba(0,0,0,.9);
  top:0;
  width:100%;
  border-radius: 0;
  padding: 20px;
}

header .logo{
  color:#fff;
  font-size: 3rem;
}

header .logo span{
  color:#0098a1;
}

header .tel{
  color: #FFF;
  font-size: 2rem;
}

header .navbar ul{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin:0; padding:0;
}

header .navbar ul li{
  margin:0 1rem;
}

header .navbar ul li a{
  font-size: 2rem;
  color:#fff;
  transition: .2s linear;
}


header .navbar ul li .active,
header .navbar ul li a:hover{
  color: #0098a1;
}

header .fa-bars{
  font-size: 3rem;
  color:#0098a1;
  cursor: pointer;
  display: none;
}

.home{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding:2rem 10rem;
}

.home .video img{
  position: absolute;
  top:0; left:0;
  height:100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.home .content{
  margin-top: 7rem;
}

.home .content h1{
  display: none;
  font-size: 6.1vw;
  color:#fff;
  text-shadow: 0 .3rem .5rem #000;
}

.home .content p{
  font-size: 1.5vw;
  color:#eee;
  text-shadow: 0 .3rem .5rem #000;
  padding-left: 2rem;
  border-left: .3rem solid #ddd;
}

.home .form-container form{
  margin-top: 8rem;
  padding:2rem;
  width:40rem;
  background-color: rgba(0,0,0,.3);
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.9);
  border-radius: .5rem;
}

.home .form-container form h3{
  color:#FFF;
  font-size: 3rem;
  text-align: center;
}

.home .form-container form span{
  color:#FFF;
  font-size: 2.5rem;
  margin:.5rem 0;
  display: block;
}

.home .form-container form input,select{
  width: 100%;
  padding:0 1rem;
  height:4rem;
  font-size: 1.5rem;
  background:#eee;
  border:none;
  outline: none;
  color:#333;
  box-shadow: 0 .1rem .3rem rgba(0,0,0,.3) inset;
  border-radius: .5rem;
}

.home .form-container form textarea{
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  max-height: 100px;
  width: 100%;
  padding:0 1rem;
  height:4rem;
  font-size: 1.5rem;
  background:#eee;
  border:none;
  outline: none;
  color:#333;
  box-shadow: 0 .1rem .3rem rgba(0,0,0,.3) inset;
  border-radius: .5rem;
}

.home .form-container form input[type="submit"]{
  width:10rem;
  color:#fff;
  background:#0098a1;
  cursor: pointer;
  font-size: 2rem;
  margin-top: 2rem;
  transition: .2s linear;
}

.home .form-container form input[type="submit"]:hover{
  border:.2rem solid #0098a1;
  color:#0098a1;
  background: none;
}

.feature{
  min-height:100vh;
  background:#f9f9f9;
}

.feature .card-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.feature .card-container .card{
  width:30rem;
  margin:2rem;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
  overflow: hidden;
  position: relative;
}

.feature .card-container .card img{
  height:25rem;
  width: 100%;
  object-fit: cover;
}

.feature .card-container .content{
  padding-bottom: 2rem;
  text-align: center;
}

.feature .card-container .content .title{
  color:#0098a1;
  font-size: 3rem;
}

.feature .card-container .content p{
  color:#333;
  font-size: 1.3rem;
  padding:1rem;
}

.feature .card-container .content .stars i{
  padding:0 .2rem;
  font-size: 2rem;
  color:gold;
}

.feature .card-container .content .btn{
  font-size: 1.7rem;
  margin-top: 1.4rem;
  height:3.5rem;
  width:12rem;
  border-radius: .5rem;
  outline: none;
  border:none;
  background: #0098a1;
  color:#fff;
  cursor: pointer;
  transition: .2s linear;
}

.feature .card-container .content .btn:hover{
  background: none;
  border:.2rem solid #0098a1;
  color:#0098a1;
}

.feature .card-container .card .discount{
  position: absolute;
  top:1rem; left: 1rem;
  display: block;
  height:3.5rem;
  width:6rem;
  background: #ff3300;
  color:#fff;
  line-height: 4rem;
  text-align: center;
  font-size: 2rem;
}


/* ===== IMPROVED ABOUT SECTION ===== */

.about {
  padding: 2rem 2rem;
  background: #f7f9fb;
}

.about .row {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 90%;
  margin: auto;
}

.about .row .image img {
  width: 45vw;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 .5rem 2rem rgba(0,0,0,.15);
  object-fit: cover;
}

.about .row .content h3 {
  font-size: 3.2rem;
  color: #0098a1;
  margin-bottom: 1.5rem;
}

.about .row .content h4 {
  font-size: 2.4rem;
  margin-top: 2rem;
  color: #222;
}

.about .row .content p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  color: #333;
}

.about .row .content ul {
  padding-left: 1rem;
  margin: 1rem 0;
}

.about .row .content ul li {
  font-size: 1.8rem;
  margin: .8rem 0;
  color: #444;
  list-style: none;
  position: relative;
}

.about .row .content ul li::before {
  content: "✓";
  position: absolute;
  left: -2rem;
  color: #0098a1;
  font-size: 2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 991px){
  .about .row { flex-direction: column; text-align: center; }
  .about .row .image img { width: 90vw; }
  .about .row .content ul li::before { left: -1.2rem; }
}

.footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem;
  background:#222;
}

.footer .credit{
  font-size: 2rem;
  color:#eee;
}

.footer .credit span{
  color:#0098a1;
}

.footer .icons a{
  font-size: 2rem;
  margin:0 .5rem;
  height:4rem;
  width:4rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 50%;
  color:#fff;
  border:.2rem solid #fff;
  transition: .2s linear;
}

.footer .icons a:hover{
  background:#0098a1;
}


/* media queries  */

@media (max-width:991px){

  .home{
    flex-flow: column;
    padding:1.5rem;
  }

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

  .home .content h1{
    font-size: 5.5rem;
  }

  .home .content p{
    font-size: 1.8rem;
    padding:0; 
    border:none;
  }

}

@media (max-width:768px){

  html{
    font-size: 55%;
  }

  header .tel{
    display: none;
  }
  header .fa-bars{
    display: block;
  }

  header .navbar{
    position: fixed;
    top:-100rem; left:50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: rgba(0,0,0,.8);
    border-radius: .5rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
    z-index: 1000;
    transition: .2s linear;
    opacity: 0;
  }

  header .navbar ul{
    flex-flow: column;
  }

  header .navbar ul li{
    margin:1rem 0;
    width: 100%;
    text-align: center;
  }

  header .navbar ul li a{
    display: block;
    font-size: 3rem;
  }

  header .nav-toggle{
    top:11.5rem;
    opacity: 1;
  }

  .about .row{
    flex-flow: column;
  }

  .about .row .image img{
    width: 90vw;
  }

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

  .about .row .content .btn1{
    margin-right: 0;
  }

  .contact .row{
    flex-flow: column;
    align-items: flex-start;
  }

  .contact .row .contact-form-container{
    width:90%; 
    margin:0 auto;
  }

  .footer{
    flex-flow: column;
  }

  .footer .credit{
    text-align: center;
    padding-bottom: 3rem;
  }

}

@media (max-width:500px){

  .home .content h1{
    position: absolute;
    display: block;
    top: 150px;
    left: 15px;
    font-size: 6rem;
    color:#fff;
    text-shadow: 0 .3rem .5rem #000;
    z-index: 1;
  }
  .home .form-container{
    width: 100%;
  }

  .home .form-container form{
    width: 100%;
    margin:3rem 0;
  }

  .home .form-container form input[type="submit"]{
    width: 100%;
  }

  .contact .row .contact-form-container form input{
    margin:1rem 0;
    width:100%;
  }

  .contact .row .contact-form-container form input[type="submit"]{
    width:100%;
  }

}