/* Primary Font (Headings and Titles) */
/* Default styles for headings */
.banner-heading h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  /* Make headings bold */
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

/* Default styles for paragraphs */
p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}


/* Responsive adjustments for headings and paragraphs - Small screens */
@media screen and (max-width: 576px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }
}

/* Responsive adjustments for headings and paragraphs - Medium screens */
@media screen and (min-width: 577px) and (max-width: 992px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }
}

:root {
  --color-dark: #030303;
  --color-primary: #91d7fd;
  --color-secondary: #dee9ff;
}

/*-- Banner --*/
.banner-area {
  position: relative;
  min-height: 60vh;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.banner-area .container {
  position: relative;
  padding-top: 96px;
}

.banner-title {
  color: #fff;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.banner-heading {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-height: inherit;
}

.breadcrumb {
  left: 45%;
  top: 55%;
  padding: 0;
  background: none;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb li:not(:last-child):after {
  content: "/";
  margin: 0 5px;
}

.breadcrumb a {
  color: #fff;
}

/* banner responsive*/
.banner-area {
  min-height: 300px;
}

.banner-heading {
  min-height: 300px;
  padding: 0px;
}
/*Whatsapp btn*/
#whatsapp{
  display: flex;
  justify-content: center;
  position: fixed; /* Fixed/sticky position */
  bottom: 120px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #25D366; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 50%; /* Rounded corners */
  font-size: 45px; /* Increase font size */
  width:70px;
  height:70px;
  text-decoration: none;
}
#whatsapp i{
  display: flex;
  align-items: center;
}

/*Back-to-Top*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 40px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #78bbe6; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 50%; /* Rounded corners */
  font-size: 37px; /* Increase font size */
  width:70px;
  height:70px;
}

#myBtn:hover {
  background-color: #2a45f8; /* Add a dark-grey background on hover */
}

/*banner*/
#wrapper{
  padding-top:95px;
} 
  
/*home page*/
/*index wrapper*/
img.frame{
  width:100%;
  max-height: 450px;

}
.about{
  display:flex;
  justify-content:center;
  align-items: center;
  flex-direction:row;
}

/*logo slider*/
@keyframes slide{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}
.logos{
  overflow:hidden;
  padding: 30px 30px;
  background: #dbdede;
  white-space:nowrap;
  position: relative;
  margin: auto;
  width:95%;
  height: 165px;
}
.logos:before, .logos:after{
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
.logos:before{
  left: 0;
  background: linear-gradient(to left,rgba(255,255,255,0), white);
}
.logos:after{
  right: 0;
  background: linear-gradient(to right,rgba(255,255,255,0), white);
}
.logos-slide{
  display:inline-block;
  animation: 40s slide infinite linear;
}
.logos-slide img{
  height:50px;
  margin: 0 20px;
}

  
/*card 1*/
.card1 .container{
  width: auto;
  display: flex;
  justify-content: center;
  font-family: consolas;
}
.card1 .card{

  cursor: pointer;
  border: none;
  margin:10px;
}
.card1 .container .card .face{
  width: 300px;
  height: 200px;
  transition: 0.5s;
}
.card1 .container .card .face.face1{
  position: relative;
  background: #CFFBFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}
.card1 .container .card:hover .face.face1{
  background: #b5d6f7;
  transform: translateY(0);
}
.card1 .container .card .face.face1 .content{
  opacity: 0.2;
  transition: 0.5s;
}
.card1 .container .card:hover .face.face1 .content{
  opacity: 1;
}
.card1 .container .card .face.face1 .content img{
  max-width: 100px;
}
.card1 .container .card .face.face1 .content h3{
  margin: 10px 0 0;
  padding: 0;
  color: black;
  text-align: center;
  font-size: 1.5em;
}
.container .card .face.face2{
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-100px);
}
.container .card:hover .face.face2{
  transform: translateY(0);
}
.container .card .face.face2 .content p{
  margin: 0;
  padding: 0;
  width:100%;
}
.container .card .face.face2 .content a{
  display:  inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
}
.container .card .face.face2 .content a:hover{
  background: #333;
  color: #fff;
}

@media (max-width: 992px) {
  .container .card .face.face2 .content p{
    font-size: 14px;
  }
  .container .card .face.face2,.container .card .face.face1{
    width:200px;
  }

}

@media (max-width: 768px) {
  /* Making the cards stack vertically on smaller screens */
  .card1 .container {
    flex-wrap: wrap;
  }
  .card1 .container .card{
    height:300px
  }
  .container .card .face.face2,.container .card .face.face1,.container .card:hover .face.face1,.container .card .face{
    width:400px;
  }
  .container .card .face.face2 .content p{
    font-size: 17px;
  }
  /* Resetting the transform and background color */
  .container .card .face.face1 {
    transform: translateY(50);
    background: #CFFBFF;
    height:150px;
  }
  .container .card:hover .face.face1 {
    background: #CFFBFF; /* Keep the original color on hover */
  }
  .container .card .face.face2 {
    transform: translateY(-50px);
    height:150px;
  }
}

@media (max-width: 400px) {
  .container .card .face.face2,.container .card .face.face1,.container .card:hover .face.face1,.container .card .face{
    width:90%;
    margin-left: 15px;
  }
  .container .card .face.face2 .content p{
    font-size: 15px;
  }
}

/*card 2*/
.card2{
  background: #f2f5f3;
}
.cf1{
  padding: 20px 0 0 80px;
}
.cf2{
  display: flex;
  justify-content:right;
  margin-right:80px;
}
.cf3{
  padding: 0 0 20px 80px;
}
.card-ourcompany, .card-qualityservice ,.card-ourproduct{
  width: 650px;
  height: 400px;
  perspective: 1000px;
  margin:20px;
}
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}
.card-ourcompany:hover .card-inner ,.card-qualityservice:hover .card-inner,.card-ourproduct:hover .card-inner {
  transform: rotateY(180deg);
}
.card-front,.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
} 
.cf1 .card-front{
  background: url("images/card1.jpg");
  background-size: cover;
}
.cf1 .card-front p,.cf2 .card-front p,.cf3 .card-front p{
  font-family: 'Anton', sans-serif;
}
.cf2 .card-front{
  background: url("images/card2.jpg");
  background-size: cover;
  font-family: 'Anton', sans-serif;
}
.cf3 .card-front{
  background: url("images/card3.jpg");
  background-size: cover;
  font-family: 'Anton', sans-serif;
}
.card-front {
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  font-size: 50px;
  transform: rotateY(0deg);
}
.card2 .card-front p{
  font-size: 40px;
}
.card-back {
  background-color: #cffbff;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 10px solid #cffbff;
  border-radius: 10px;
  justify-content: center;
  font-size: 16px;
  text-align:justify;
  transform: rotateY(180deg);
 }
.card-back a{
  margin: 15px 0 0;
  display:  inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
}
.card-back a:hover{
  background: #333;
  color: #fff;
}

@media (max-width:768px){

  .card-ourcompany,.card-ourproduct{
    margin:0;
  }
  .card-ourcompany,.card-qualityservice,.card-ourproduct{
    height:400px;
    width:516px;
    margin:15px 0 0 0 ;
  }
  .card2 .container{
    display:block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cf2{
    margin:0;
    display:flex;
    justify-content: center;
  }
  .cf1,.cf3{
    padding:0;
    justify-content: center;
  }

}

@media(max-width:576px){
  .card-ourcompany,.card-qualityservice,.card-ourproduct{
    height:400px;
    width:400px;
    margin:10px 0 0 0;
  }
}

@media(max-width:400px){
  .card-ourcompany,.card-qualityservice,.card-ourproduct{
    height:300px;
    width:366px;
    margin:10px 0 0 0;
  }
  .card-back{
    font-size:13px;
  }
}

@media(max-width:380px){
  .card-ourcompany,.card-qualityservice,.card-ourproduct{
    height:300px;
    width:351px;
    margin:10px 0 0 0;
  }
  .card-back{
    font-size:13px;
  }
}


/*Contact Us Page*/
.contactus{margin:50px 90px;}
.contactus{padding-left: 40px;}

/*map*/
#map{
  border-radius: 4%;
  width: 100%;
  height:100%;
}

/*details*/
#s1{
  font-size:25px;
}

/*collapse*/
.collapse_btn{
  display:flex;
  align-items:center;
  justify-content: center;
  padding-bottom: 40px;
}
.collapse_site{
  background: url("images/collapse.jpg");
  display:flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 650px;
}
.contact_form{
  width: 500px;
  height:550px;
  border-radius: 6%;
  background: rgba(255,255,255,0.8);
}
.form_box{
  padding: 30px 30px 30px 30px;
}
textarea {
  resize:none;
}
.form-group .btn{
  margin-top: 30px;
  background: #CFFBFF;
  border: 10%;
}
#btn{
  display:flex;
  justify-content: center;
  align-items: center;
}
.control-label{
  padding-left:13px;
}

@media (max-width:720px){
  #map{
    padding-bottom: 15px;
    height:300px;
  }
  .contactus .row .col-md-6{
    display:flex;
    flex-direction:column;
  }
}

/*Careers Page*/
/*Description*/
.container_careers{
  display: flex; flex-direction: column; justify-content: center;align-items: center;background:rgb(238, 238, 238);;
}
.container_careers .contents{height:auto;width:50%;display: flex;align-items:center; text-align:center; flex-direction:column;margin:30px 0 10px 0;}
.container_careers .contents p{text-align:justify;}

/*Job Card*/
.job_card{
  width: 350px;
  float: left; 
  margin: 20px 30px;
  box-shadow: 0 0 10px;
}
.job_card .card-header{
  display:flex;
  justify-content:center;
  align-items:center;
  background: #CFFBFF; 
}
.job_card .card-content{
  margin-top: 20px;
  height: 100px;
  display:block;
}
.job_card .card-content p{
  margin:5px 30px;
  font-size: 16px;
  display: flex;  
  justify-content:left;
  align-items:center;
}

.job_card .card-footer{
  background: #CFFBFF;
}
.job_card .card-footer a{
  font-family: 'Noto Serif Vithkuqi', serif;
  font-size: 22px;
}
.job_card .card-footer:hover{
  background: #2cbcf4;
}
.job-card-site{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.job-card-header h3{
  display:flex;
  justify-content:center;
}
@media (max-width:450px){
  .container_careers .contents{
    width:80%;
  }
  .job_card .card-header img{
    width:50px;
    height:auto;
  }
}
@media (max-width:768px){
  .container_careers .contents{
    width:70%;
  }
}
@media (max-width:992px){
  .container_careers .contents{
    width:60%;
  }
}

/*Careerdetails page*/
.container_careers{
  display: flex; flex-direction: column; justify-content: center;align-items: center;
}
.container_careers .content{height:200px;width:60%;text-align:center;}
.container_careers .content h3{float:top;}
.container_careers .content p{text-align:center;}

.marg{
  margin-top:40px;
  margin-bottom: 100px;
}

.marg .content-header h5{
  margin: 0 0 30px 0; 
}



/*Our Brand*/
/*Tab*/
.wain{
  width:80%;
  height:600px;
  margin: 20px 0;
}

#mcc-tab, #wain-tab{
  font-size: 26px;
  font-family: 'Abril Fatface', cursive;
} 

/*Product Card*/
.product_card{
  width: 300px;
  float: left; 
  margin: 20px 30px;
  background: white;
  box-shadow:0 0 8px;
}
@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1); /* Increase the scale for the zoom effect */
    }
}
.product_card:hover{
  animation: zoom 0.8s ease;
  animation-fill-mode: forwards;
}
.product_card .card-header{
  display:flex;
  justify-content:center;
  align-items:center;
  background: white;
}
.product_card .card-content{
  height:100px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.product_card .card-content p{
  margin:0 30px;
}
.product_card .card-footer{
  background: #CFFBFF;
}
.product-card-site{
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  margin: auto 35px;
}

@media (max-width:450px){
  .container-banner .product_banner p{
    text-align: center;
  }
  
  .product_card{
    width: 145px;
    margin: 10px 7px;
  }
  .card-header img{
    width:80px;
    height:100px;
  }
  .product_card .card-content{
    font-size:12px;
    height:130px;
  }

  .product_card .card-content p{
    margin:5px;
    text-align: center;
  }

  #mcc-tab, #wain-tab, #flender-tab{
    font-size: 22px;
    font-family: 'Abril Fatface', cursive;
  } 
}

@media (max-width:450px){
  .container-banner .product_banner p{
    text-align: center;
  }
  
  .product_card{
    width: 135px;
    margin: 10px 7px;
  }
  .card-header img{
    width:75px;
    height:100px;
  }
  .product_card .card-content{
    height:130px;
  }

  .product_card .card-content p{
    margin:5px;
    text-align: center;
    font-size:12px;
  }
}

/*Other Brand Page*/
/*Features Brand*/
.container_brand{
  display: flex; flex-direction: column; justify-content: center;align-items: center;
}
.container_brand h2{font-family: 'Carter One', cursive;font-size:40px;padding-top: 15px;}
.container_brand .content{width:70%; display: flex;align-items:center; text-align:center; flex-direction: row; flex-wrap: wrap;justify-content: center;}
.container_brand .content p{text-align:center;}
.fbrand_card {
  max-width: 23ch;
  text-align: center;
  background:  #f7f7f8;
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: .3s cubic-bezier(.6,.4,0,1),transform .15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width:200px;
  height:150px;
  margin:10px;
}

.fbrand_card_body {
  color: #464853;
  line-height: 1.5em;
  font-size: 1em;
}

.fbrand_card strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -.035em;
}

.fbrand_card span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 100%;
  transition: all .3s cubic-bezier(.6,.4,0,1);
}

.fbrand_card:hover span {
  top: 0;
  font-size: 1.2em;
}

.fbrand_card:hover span i{
  background-color: rgba(255,255,255,0.5);
  width:50px; 
  height:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius: 50%;
}

.fbrand_card:hover span a{
  text-decoration:none;
}
.fbrand_card:hover {
  background: #CFFBFF;
  cursor: pointer;
}

.fbrand_card:hover div,.fbrand_card:hover strong {
  opacity: 0;
}

/*brand_card*/
.brand_card{
  width: 300px;
  float: left; 
  margin: 20px 30px;
  background: white;
  box-shadow:0 0 8px;
}
@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1); /* Increase the scale for the zoom effect */
    }
}
.brand_card:hover{
  animation: zoom 0.8s ease;
  animation-fill-mode: forwards;
}
.brand_card .card-header{
  display:flex;
  justify-content:center;
  align-items:center;
  background: white;
  height:220px;
}
.brand_card .card-content{
  height:80px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.brand_card .card-content p{
  margin:0 30px;
}
.brand_card .card-footer{
  background: #CFFBFF;
}
.brand-card-site{
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  margin: auto 35px;
}

@media (max-width:790px){

  .brand-card-site{
    margin:auto 50px;
  }
  .brand_card{
    width: 300px;
    height: auto;
    margin: 10px 7px;
  }
  .brand_card .card-header img{
    width:160px;
    height:auto;
  }
  @keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05); /* Increase the scale for the zoom effect */
    }
  }
}
@media (max-width:730px){

  .brand-card-site{
    margin:auto 50px;
  }
  .brand_card{
    width: 290px;
    height: auto;
    margin: 10px 7px;
  }
  .brand_card .card-header img{
    width:160px;
    height:auto;
  }
}

@media (max-width:700px){
  .fbrand_card{
    width:140px;
    height:90px;
  }

  .container_brand .content{
    width:auto;
  }
  .fbrand_card_body img{
    height:auto;
    width: 130px;
  }
  .brand-card-site{
    margin:auto 20px;
  }
  .brand_card{
    width: 180px;
    height: auto;
    margin: 10px 7px;
  }
  .brand_card .card-header{
    height:150px;
  }
  .brand_card .card-header img{
    width:120px;
    height:auto;
  }
}

@media (max-width:450px){
  .fbrand_card{
    width:140px;
    height:90px;
  }

  .container_brand .content{
    width:auto;
  }
  .fbrand_card_body img{
    height:auto;
    width: 130px;
  }
  .brand-card-site{
    margin:auto 20px;
  }
  .brand_card{
    width: 160px;
    height: auto;
    margin: 10px 7px;
  }
  .brand_card .card-header{
    height:150px;
  }
  .brand_card .card-header img{
    width:120px;
    height:auto;
  }
  .brand_card .card-content p{
    margin:0 15px;
  }
 
}

@media (max-width:390px){
  .brand-card-site{
    margin:auto 17px;
  }
  .brand_card{
    width: 155px;
    height: auto;
    margin: 10px 7px;
  }
}