@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Montserrat", sans-serif; */
}

/*Root variables*/

:root {
  --primary-color: #0a7269;
  --secondary-color: #046459;
  --text-color: white;
}

body {
  font-family: "Playfair", serif;
  background-color: rgb(241, 241, 241);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*Navbar Logo*/
.navbar .logo1 {
  /* width: 130px; */
  height: 65px;
}

/*Banner section*/

.main-banner {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0.244)),
    url("../imgs/banner2.png");
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center center; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 640px;
  text-align: center;
}

.main-banner1 .title1 {
  font-weight: 600;
  color: white;
}

.main-banner .subheading {
  display: inline-block;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1.2px solid #dde1f2;
  border-radius: 0px;
  transition: all ease-in-out 0.3s;
  line-height: 1.2;
  height: auto;
  vertical-align: middle;
}

.main-banner .content {
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.about_section .btn_box .btn {
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 0px;
  font-weight: 500;

  &:hover {
    transition: all ease-in-out 0.3s;
    background-color: var(--secondary-color);
  }
}

.about_section span {
  color: var(--primary-color);
  font-weight: bold;
}

.about_section b {
  color: var(--primary-color);
}

.about_section .img_box img {
  height: 350px;
  border-radius: 50%;
  /* box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.158); */
}

.why_choose_section .card {
  background: var(--text-color);
  border: 1px solid rgba(235, 235, 235, 0.91);
  /* padding: 40px 30px; */
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  &:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0px 1px rgba(0, 0, 0, 0.3);
  }
}

.why_choose_section .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}

.why_choose_section .card:hover::after {
  width: 100%;
}

.why_choose_section .card .card-body .circle {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}


.counter_section{
  background-color: var(--primary-color);
}

.counter_section .card{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:transparent;
  border: none;
  text-align: center;
  color: var(--text-color);
}

.counter_section .card .title1{
  font-size: 25px;
  font-weight: bold;
}


.contact_section{
  background-image: url('../imgs/banner2.png');
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  height: 650px;
  display: flex;
  color: var(--text-color);
  align-items: center;
  justify-content: center;

}

.contact_section .card{
  background-color:rgba(0, 0, 0, 0.141);
}

.contact_section .form label{
  margin-bottom: 3%;
  color: var(--text-color);
}

.contact_section .form input{
  height: 45px;
  color: var(--text-color);
  background: transparent;
  border-radius: 50px;

  &::placeholder{
    color: var(--text-color);
    text-indent: 55px;
  }
}

.contact_section .form textarea{
    color: var(--text-color);
  background: transparent;
  border-radius: 5px;
  &::placeholder{
    color: var(--text-color);
    text-indent: 55px !important;
  }
}

.contact_section .form select{
  height: 45px;
  color: var(--text-color);
  background: transparent;
  border-radius: 50px;
}

.contact_section .form select option{
  color: black;
  background-color: rgba(0, 0, 0, 0.066);
}

.contact_section .form .btn{
  background-color: var(--primary-color);
  border-radius: 50px;
  color: var(--text-color);
}

.footer_section{
  background-color:rgba(0, 0, 0, 0.885);
  color: var(--text-color);
}

.footer_section h5{
  color:var(--text-color);
}



.breadcrumb{
  /* background-image: linear-gradient(40deg, rgba(0,0,0,0.232), rgba(0,0,0,0.21)),url('../imgs/bredcrumb2.jpg'); */
  background-image: linear-gradient(40deg, rgba(0, 0, 0, 0.21), rgba(0, 0, 0, 0.58)),url('../imgs/bredcrumb3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  height: 250px;
  opacity: 0.9;
  background-position: center center;
  width: 100%;
}

.breadcrumb p{
  padding: 12px 40px;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1.2px solid #dde1f2;
  border-radius: 50px;
  transition: all ease-in-out 0.3s;
  line-height: 1.2;
  height: auto;
  vertical-align: middle;
}

.breadcrumb p a{
  color: white;
}

.mission_section .card{
  font-family: sans-serif !important;
}

.card{
  height: 100% !important;
}

.detail_section .card {
  background: var(--text-color);
  border: 1px solid rgba(235, 235, 235, 0.91);
  /* padding: 40px 30px; */
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
  &:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0px 1px rgba(0, 0, 0, 0.3);
  }
}

.detail_section .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}

.detail_section .card:hover::after {
  width: 100%;
}

.detail_section .card .title{
  text-align: center;
  font-size: 20px;
  color: var(--primary-color);
  font-weight:550;
}

.map_section iframe{
  height: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.141);
}






.product_section .card {
  background: var(--text-color);
  border: 1px solid rgba(235, 235, 235, 0.91);
  /* padding: 40px 30px; */
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  /* text-align: center; */
  overflow: hidden;
  &:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0px 1px rgba(0, 0, 0, 0.3);
  }
}

.product_section .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}

.product_section .card:hover::after {
  width: 100%;
}

.product_section .card .prod_img{
  height: 250px;
  width: auto;
  background-size: cover;
  background-repeat: no-repeat;
}

.product_section .card .title{
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Limits text to 2 lines */
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.product_section .card span i{
  color: gold;

}

.product_section .card .btn-section .btn{
  background-color: var(--primary-color);
  width: 100%;
  border-radius: 50px;
  padding: 7px 7px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 18px;

  &:hover{
    transition: all ease-in-out 0.3s;
    color: var(--text-color);
    background-color: var(--secondary-color);
  }
}

.product_section .card p{
  padding: 8px 20px;
  display: inline-block;
  font-weight: 550;
  position: absolute;
  font-size: 15px;
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1.2px solid #687aca;
  border-radius: 50px;
  transition: all ease-in-out 0.3s;
  line-height: 1.2;
  height: auto;
  vertical-align: middle;
}


@media(max-width:600px){
  .main-banner{
    height: 250px;
  }
  .about_section .img_box img{
    height: 300px;
  }
}

@media(min-width:768px){
  .product_section .card .prod_img{
    min-height: 200px !important;
  }
  .main-banner{
    min-height: 550px;
  }
  .about_section .img_box img{
    height: 250px;
  }
}