/* Primary Font (Headings and Titles) */
/* Default styles for headings */
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;
  }
}

/*------------------ footer -------------------*/
.footer_resize {
  margin: auto;
  padding: 10px 0;
  width: 100vw;
}

.footer p {
  margin: 0;
  padding: 4px 0;
  width: auto;
  line-height: 1.5em;
  color: rgb(255, 255, 255);
}

@media screen and (max-width: 750px) {
  .footer p {
  color: rgb(255, 255, 255);
  font-size: 11px;
}

}

.bgfooter {
  background-color: #d1d1d1;
  padding-top: 50px;

}

.social-icon {
  margin: 20px;
  font-size: 50px;
}

.social-links a {
  display: inline-block;
  transition: 0.3s;
}

.social-links a:hover {
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
}

.quick-link a {
  text-decoration: none;
  color: #000000;
}

.quick-link a:hover {
  color: #ffffff;
}

.footerul ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.footerul ul li {
  padding: 5px 0;
  display: flex;
}

.footerul ul i {
  font-size: 20px;
  margin-top: 5px;
  margin-right: 10px;
}


/*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:62px;
  height:62px;
  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: #f24c4c; /* Set a background 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:62px;
  height:62px;
}  
#myBtn:hover{
  background-color: #fc0000;
}

/*header*/
.navbar{
  background-color: #201e1f;
  z-index: 1;
}
.navbar .navbar-brand h2{
    font-family: 'Libre Franklin', sans-serif;


}
.navbar .navbar-toggler{
    background-color: #595959;
    padding:5px 8px;
}

.navbar-expand-lg .navbar-collapse{
    justify-content: flex-end;
}
.navbar-expand-lg .navbar-collapse ul li{
    margin: auto 5px;
}
.navbar .container-fluid ul li a{
    color:white;
    font-size: 20px;
    font-weight: bold;
}
.navbar .container-fluid ul li a:hover{
    animation: zoom 0.4s linear;
    animation-fill-mode: forwards;
    color: #f24c4c;
}
.navbar-nav .dropdown-menu{
  background-color: #464646;
  padding: 0;
} 

@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1); /* Increase the scale for the zoom effect */
    }
}
@media (max-width:680px){
    .navbar .container-fluid h2{
        display: none;    
    }
    .navbar .container-fluid .navbar-brand img{
      text-align: center;    
  }

}

/*index*/
.home{
    background: url('../images/home.jpg');
    background-size: cover;
    background-position: center;
    min-height: 710px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home h1, .home h3 ,.home p, .home a{
    color:rgb(255, 255, 255);
    text-align: center;
}

.home h3{
  padding-top: 100px;
}
.home a{
  border-color: white;
  margin-top: 10px;
  font-size: 20px;
}
.home a:hover{
  color: #f24c4c;
  border-color: #f24c4c;

}

.home p{
  margin: 0 350px;
}
@media (max-width:1360px){
  .home p{
    margin: 0 300px;
  }
}
@media (max-width:1255px){
  .home p{
    margin: 0 250px;
  }
}
@media (max-width:1155px){
  .home p{
    margin: 0 200px;
  }
}
@media (max-width:1055px){
  .home p{
    margin: 0 150px;
  }
}
@media (max-width:830px){
  .home p{
    margin: 0 50px;
  }
}

/*vision,mission,quality*/
.bg{
  background-color: #f1efef56;
}

.c1{
  padding: 50px 0;
}

@media (max-width:768px){
  .c1 .cards{
    display: flex;
    flex-direction: column;
  }

  .card__content{
    min-height: 180px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cards__item {
  height: 400px;
}

.container .cards .card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(40deg,  #e91e63, #ef9440);
  min-height: 200px;
}

.card__frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn1{
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(#000000, 0.2);
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
  color:#000000;
}

.card__frame h2{
  font-family: 'Oswald', sans-serif;
  margin-top: 10px;
}

.card__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-image: linear-gradient(45deg, #e91e63, #ef9440);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(#000000, 0.2);
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
  color:#000000;
  font-weight: 600;
}

.solution{
  background: url('images/bg.jpg');
  background-position: bottom; 
  background-size: cover;
  padding: 100px 0;
}
.solution .container .row .col-md-6 img{
  min-height: 320px;
  padding: 20px;
}
.solution .container .row .solution-det{
  margin: 10px 0;
  padding: 5px   0;
  background: rgba(228, 228, 228, 0.7);
  border-radius: 10px;
}
.solution .container .row .solution-det h2{
  text-align: center;
  margin: 5px;
}
.border-bottom{
  --bs-bottom-width: 2px;
  --bs-border-color: #9d9d9d;
}
.solution .container .row .solution-det a{
  border-color: #454545;
  border-width: 1px;
  margin-left: 40px;
  border-width: 2px;
  font-weight: bold;
}
.solution .container .row .solution-det a:hover{
  border-color: #f24c4c;
  color:#f24c4c;
}

/*our client*/
.ourclient{
  background-color: #f1efef56;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
}
.ourclient h1{
  margin-top: 40px;
  font-family: 'Oswald', sans-serif;
}
.ourclient p{
  font-family: 'Reem Kufi Fun', sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 50px;
  color: #848484;
  border-bottom: 3px solid #ffa6a2;
}

.carousel-item{
  text-align: center;
  padding-bottom: 10px;
}
.carousel-item img{
  padding: 10px 10px 10px 10px;
  width:20%;
}
@media(max-width:768px){
  .carousel-item img{
    padding: 5px 5px 10px 5px;
    width:22%;
  }
  .carousel-control-prev-icon{
    margin-right:50px;
  }
  .carousel-control-next-icon{
    margin-left:50px;
  }
}
@media(max-width:680px){
  .carousel-item img{
    padding: 2px 2px 10px 2px;
    width:23%;
  }
}
@media(max-width:500px){
  .carousel-item img{
    padding: 0 0 10px 0;
    width:23%;
  }
  .ourclient p{
    font-size: 22px;
  }
}
@media(max-width:450px){
  .ourclient p{
    font-size: 18px;
  }
}

.carousel-item img:hover{
  cursor: pointer;
  animation: zoom .5s ease forwards;}
@keyframes zoom {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(1.05); /* Increase the scale for the zoom effect */
  }
}
.carousel-control-prev-icon{
  background-color: rgba(201, 201, 201, 0.8);
  border-radius: 50%;
}
.carousel-control-next-icon{
  background-color: rgba(201, 201, 201, 0.8);
  border-radius: 50%;
}


/*contact us*/
.banner{
  padding-top: 80px;
}
.banner .container-fluid{
  max-height: 300px;
  min-height:250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner .container-fluid h1{
  color: #fff;
  font-size: 50px;
}

.breadcrumb {
  left: 45%;
  top: 55%;
  padding: 0;
  background: none;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.breadcrumb li:not(:last-child):after {
  content: "/";
  margin: 0 5px;
}
.breadcrumb a {
  color: #fff;
}

.contact-heading{
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}
.contact-heading .line{
  background-image: linear-gradient(90deg, red,blue);
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: left bottom;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  padding-top: 30px;
  padding-bottom: 5px;
}

.contact{
  padding-bottom: 50px;
}
.contact .container .row{
  justify-content: flex;
  justify-content: center;
}
.contact .container .row .col-md-5{
  background: rgba(255, 255, 255, 0.8);  
  height: 420px;
  box-shadow: 0 0 8px;
  padding:40px 25px;
}

@media (max-width:768px){
  .contact .container .row .col-md-5{
    height:350px;
  }
}
@media (max-width:580px){ 
  .contact .container{
    width:90%;
  }
}

.details{
  line-height: 2;
}
.contact .container .row .contact-details .btn{
  background-color: #f24c4c;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
}
.contact .container .row .contact-details .btn:hover{
  background-color: #ff0000;
}

/*contact-form*/
.modal{
  margin-top: 100px;
}
#contact_input{
  margin:10px 0;
}
.modal-header h1{
  font-family: 'Roboto', sans-serif;
}


/*product*/
.side-menu{
  display: flex;
  flex-direction: column;
  padding-left: 0;
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem
}
#btn{
  text-align: start;
}
.side-menu .btn{
  color: #000000;
  font-weight: bold;
}
.side-menu .btn:hover,.side-menu .btn-active{
  background-color: #cd2a2b;
  color: #fff;
  animation: zoom .5s ease forwards;
}
#p-0{
  padding-left: 0;
  padding-right: 0;
}
.side-menu .active{
  background-color: #cd2a2b;
}


.collapse-menu .container-fluid{
  padding: 0;
}
.collapse-menu .container-fluid button{
  display: none;
  width:100%;
  border: none;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
}
.collapse-menu .container-fluid .collapse ul{
  display: none;
}
.collapse-menu .container-fluid .collapse ul li{
  cursor: pointer;
  width:100%;
  transition: background-color 0.3s ease;
  background-color: #e4e4e4;
  padding-left: 20px;
}
.collapse-menu .container-fluid .collapse ul li:hover{
  background-color: #cd2a2b;
}
.collapse-menu .container-fluid .collapse ul li a{
  color:black;
}
.collapse-menu .container-fluid .collapse ul li a:hover{
  color:white;
}

@media (max-width:768px){
  .side-menu{
    display: none;
  }
  .collapse-menu .container-fluid button{
    display: block;
  }
  .menu{
    padding-top: 0;
  }
  .collapse-menu .container-fluid .collapse ul{
    display: block;
  }
}

/*product1*/
.product1 .row .col-md-6 .container-left{
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;

}
.product1 .row .col-md-6 .container-right{
  height:100%;
  display: flex;
  flex-direction: column;
}
.product1 .row .col-md-6 .container-left .product_pic{
  width:30%;
  box-shadow: 0 0 3px;
  height: auto;
  margin:8px;
}

/*product2*/
.product2 .row .col-md-6 .container-left{
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.product2 .row .col-md-6 .container-right{
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product2 .row .col-md-6 .container-left .product_pic{
  width:80%;
  box-shadow: 0 0 3px;
  height: auto;
  margin:8px;
}

/*product3*/
/*product3*/
.product3 .row{
  padding-top: 10px;
}
.product3 .card{
  box-shadow: 0 0 5px;
  min-height: 425px;
  margin-bottom: 20px;
}
.product3 .card-img-top{
  width: 100%;
  height: 300px;
}
.product3 .row .col-lg-3 .card .card-header{
  width:100%;
}
.product3 .row .col-lg-3 .card .card-body{
  display: flex;
  justify-content: center;
  align-items: center;
}
.product3 .row .col-lg-3 .card .card-body p{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  text-align: center;
}

/*product4*/
.product-grid{
  font-family: 'Poppins', sans-serif;
  text-align: center;
  box-shadow: 0 0 3px;
  margin:7px 0;
}
.product-grid .product-image{
  overflow: hidden;
  position: center;
}

.product-grid .product-image img{
  transition: all 0.5s ease 0s;
}
.product-grid:hover .product-image img{ transform: scale(1.1); }
.product-grid .product-content{ padding: 15px; }

.product-grid .title{
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 12px;
}

/*product5*/
.product5 .row .col-md-6 .container-left{
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;

}
.product5 .row .col-md-6 .container-right{
  height:100%;
  display: flex;
  flex-direction: column;
}
.product5 .row .col-md-6 .container-left .product_pic{
  width:30%;
  box-shadow: 0 0 3px;
  height: auto;
  margin:8px;
}

/*product6*/
.product6 .row{
  padding-top: 10px;
}
.product6 .card{
  box-shadow: 0 0 5px;
  min-height: 400px;
  margin-bottom: 20px;
}
.product6 .card-img-top{
  width: 100%;
  height: 300px;
}
.product6 .row .col-md-3 .card .card-header{
  width:100%;
}
.product6 .row .col-md-3 .card .card-body{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.product6 .row .col-md-3 .card .card-body p{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  text-align: center;
}