*{
  margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Halvetica, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
    list-style: none;
}
.header-pppp{
   background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../1.jpg);
  height: 100vh;
  background-size: cover;
  background-position: center;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #3c424f;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  padding:0px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
z-index: 1000;
}
header .logo{
 float: left;
  width: 200px;
  height: 100px;
}
header .navbar ul{
list-style: none;
}
header .navbar ul li{
  position: relative;
  float: left;
}
header .navbar ul li a{
color: #fff;
font-weight: bold;
font-size: 17px;
padding: 20px;
display: block;
}
header .navbar ul li a:hover{
  background: #a4a5a6;
  color: #333;
  transition: 0.3s ease;
}
header .navbar ul li ul{
  position: absolute;
  left: 0;
  width: 200px;
  background: #3c424f;
  display: none;
}
header .navbar ul li.active a{
  background: #a4a5b7;
  color: #333;
  border: 1px solid white;
}
header .navbar ul li ul li{
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
  display: initial;
  transition: 0.3s ease;
}

#manu-bar{
  display: none;
}
header label{
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
}

@media(max-width: 991px){

  header{
    padding: 20px;
  }

  header label{
    display: initial;
    color: white;
  }
  header .navbar{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #3c424f;
    border-top: 1px solid rgba(0, 0, 0, .1); 
    display: none;
    color: white;   
  }
  header .navbar ul li{
    width: 100%;
  }
  header .navbar ul li ul{
    position: relative;
    width: 100%;
  }
    header .navbar ul li ul li{
      background: #2b313e;
    }
    #manu-bar:checked ~ .navbar{
      display: initial;

    }
}

html {
  scroll-behavior: smooth;
}


.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.title h4 {
  color: #fff;
  font-size: 45px;
}

.button {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn {
  border: 1px solid #fff;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.6s ease;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}
/*------preloader-----*/
#preloader {
  background: #000 url(../loader.gif) no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}
/*------action----*/
.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 25px 15px;
}
.floating-container:hover {
  height: 300px;
}
.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
  transform: translatey(5px);
  transition: all 0.3s;
}
.floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #2cb3f0;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  color: #fff;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px 0;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 0;
  opacity: 0;
  cursor: pointer;
}

.float-element:nth-child(1) {
  background: #42a5f5;
  box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.float-element:nth-child(2) {
  background: #f5bc42;
  box-shadow: 0 20px 20px -10px rgba(248, 207, 93, 0.719);
}
.float-element:nth-child(3) {
  background: #59f36d;
  box-shadow: 0 20px 20px -10px rgba(139, 238, 119, 0.719);
}
@-webkit-keyframes come-in {
  0% {
    opacity: 0;
  }
  30% {
    transform: translateX(-50px) scale(0.4);
  }
  70% {
    transform: translateX(0px) scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.floating-container:hover .element-container .float-element:nth-child(1) {
  animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  animation: come-in 0.4s forwards 0.6s;
}
/*----- We-Offer -----*/
.we-offer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0;
    text-align: center;
}


.We-Offer {
  flex-basis: 32%;
  background: #f5d15c;
  border-radius: 10px;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
  margin-bottom: 0;
}
h1 {
  font-size: 36px;
  font-weight: 600;
}
#super-btn a h3 {
  background-color: #7a5015;
  border: #7a5015 5px solid;
  border-radius: 4px;
  width: 250px;
  margin-left: 20px;
}
#super-btn a {
  text-decoration: none;
  color: white;
}
p {
  font-size: 15px;
  line-height: 22px;
  padding: 10px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  margin-top: 20px;
}
h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.We-Offer:hover {
  box-shadow: 0 0 20px 0px rgba(48, 45, 45, 0.678);
}
@media (max-width:700px){

    .we-offer .row{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .we-offer .We-Offer{
        width: 32%;
        flex: 0 0 32%;
        padding: 10px;
    }

    .we-offer h1{
        font-size: 30px;
    }

    .we-offer p{
        font-size: 12px;
    }

    #super-btn a h3{
        width: 100%;
        margin: 0;
        padding: 8px;
        font-size: 14px;
    }

}

/*----- would to be select design -----*/

.design {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}
.design-col {
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.design-col img {
  width: 100%;
  display: block;
}
.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.layer:hover {
  background: rgba(226, 0, 0, 0.7);
}
.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/*----- facilities ------*/

.facilities {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.facilities-col {
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}
.facilities-col img {
  width: 100%;
  border-radius: 10px;
}
.facilities-col p {
  padding: 0;
}
.facilities-col h3 {
  margin-top: 16px;
  margin-bottom: 15px;
  text-align: left;
}

/*----- textimonials -----*/

/*=========================
   TESTIMONIAL SECTION
=========================*/

.testimonials{
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 80px 0;
}

.testimonials .row{
    display: flex;
    justify-content: center;
    gap: 15px;          /* Small gap between cards */
    flex-wrap: nowrap;
}

.testimonial-col{
    flex-basis: 48%;
    display: flex;
    background: #fff176;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
}

.testimonial-col img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-col h3 {
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 20px;
  text-align: left;
}

.testimonial-col p{
    line-height: 1.6;
    margin: 0;
}

.testimonial-col .fa{
    color: #f44336;
}

.testimonial-col:hover {
  box-shadow: 0 0 20px 0px rgba(119, 119, 119, 0.2);
}
@media(max-width:700px){

    .testimonials .row{
        flex-direction: row;
        gap: 10px;
    }

    .testimonial-col{
        flex-basis: 48%;
        padding: 12px;
    }

    .testimonial-col img{
        width: 40px;
        height: 40px;
    }

}
/*-----call to action-----*/

.cta {
  margin: 100px auto;
  width: 80%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(back.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}
.cta h1 {
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}


/*------------ about us page ------------*/

.sub-header {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../back.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.sub-header h4 {
  margin-top: 1px;
  padding-bottom: 300px;
}

.about-us {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-col {
  flex-basis: 48%;
  padding: 30px 2px;
}
.about-col img {
  width: 100%;
}

.about-col h1 {
  padding-top: 0;
}
.about-col p {
  padding: 15px 0 25px;
}
.bt {
  border: 1px solid #707070;
  padding: 10px 30px;
  color: #000000;
  text-decoration: none;
  transition: 0.6s ease;
}

.bt:hover {
  background-color: #0c0000;
  color: #fdf6f6;
}


.about2{
  width: 100%;
  padding: 78px 0px;
}
.about2 img{
  height: auto;
  width: 420px;
}
.about2-text{
  width: 550px;
  margin-left: 15px;
}
.mainer{
  width: 1130px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about2-text h1{
  font-size: 67px;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-left: 10px;
}
.about2-text h5{
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 25px;
  letter-spacing: 1px;
    margin-left: 15px;
}
.about2 span{
  color: #f9004d;
}
.about2-text p{
  color: #000;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 16px;
  margin: 3px;
  font-weight: bold;
}
.about2 button{
  background: #f9004d;
  color: white;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 30px;
}
.about2 button a{
  color: white;
}
.about2 button:hover{
  transition: 2s ease;
  transform: rotateX(360deg);
}
footer{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  padding: 50px;
  color: #E8BEAC;
  background-color: #3c424f;

}

/*------- Web Design -------*/

.sub-header2 {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(../web2.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header2 h4 {
  margin-top: 1px;
  padding-bottom: 300px;
}
/*-------Our Services------*/
.sub-header3 {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(../back3.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header3 h4 {
  margin-top: 1px;
  padding-bottom: 300px;
  text-align: center;
}
.modify {
  box-sizing: border-box;
}
.cust {
  background-color: #000;
  color: #fff;
}
.paracust {
  color: #fff;
}
.service {
  padding: 100px 0;
  font-family: "poppins", sans-serif;
}
.max-width {
  max-width: 1300px;
  padding: 0 45px;
  margin: auto;
}
.max-width h1 {
  text-align: center;
  position: relative;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
.max-width h1::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.content {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}
.card {
  padding: 50px 25px;
  width: calc(26% - 20px);
  border-radius: 6px;
  background: #222;
  text-align: center;
  user-select: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid#fff;
}
.card:hover {
  background-color: #dc143c;
}
.box {
  transition: all 0.3s ease;
}
.card:hover .box {
  transform: scale(1.05);
}
.box i {
  font-size: 50px;
}
.card:hover .box i {
  color: #fff;
}
.box h2 {
  font-size: 20px;
  padding: 10px 0 7px;
}

/*------Contact-------*/
.sub-header4 {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(../social.jpg);
  background-position: bottom;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header4 h4 {
  margin-top: 1px;
  padding-bottom: 300px;
}
.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe {
  width: 100%;
}
.contact-us {
  width: 80%;
  margin: auto;
}
.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}
.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}
.contact-col div p {
  padding: 0;
}
.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #080000;
}
.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
}
/*-------Social-gallery-------*/
.sub-header5 {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(../instagram.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header5 h4 {
  margin-top: 1px;
  padding-bottom: 300px;
  text-align: center;
}
a {
  text-decoration: none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
.scroltotop {
  animation-name: appear;
  animation-timeline: scroll(y);
}

@keyframes appear {
  0% {
    opacity: 0;
    display: none;
    position: fixed;
  }
  3% {
    opacity: 0;
    display: none;
  }
  3.5% {
    opacity: 1;
    display: block;
  }
  100% {
    opacity: 1;
    display: block;
    position: fixed;
  }
}
.dropdown {
  display: none;
}
ul li:hover .dropdown {
  display: block;
  position: absolute;
  background-color: #f84040;
  margin-left: -0.29cm;
  margin-top: 0.27cm;
}
.dropdown ul {
  margin: 0;
  padding: 0;
}
.dropdown ul li {
  display: block;
}
.sub-header6 {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(../facebook.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header6 h4 {
  margin-top: 1px;
  padding-bottom: 300px;
  text-align: center;
}
.sub-header7 {
  height: 50vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(../google.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header7 h4 {
  margin-top: 1px;
  padding-bottom: 300px;
  text-align: center;
}
footer{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  padding: 50px;
  color: #E8BEAC;
  background-color: #3c424f;

}

.footer > *{
  flex: 1 100%;
}
.footer-left{
  margin-right: 1.25em;
  margin-bottom: 2em;
}
.footer-left img{
  width: 50%;
}
h2{
  font-weight: 600;
  font-size: 17px;
}
.footer ul{
  list-style: none;
  padding-left: 0;
}
.footer li{
  line-height: 2em;
}
.footer a{
  text-decoration: none;
}
.animate:hover{
  text-decoration: underline;
  transition: 0.3 ease;
}
.footer-right{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}
.footer-right *{
  flex: 1 50%;
  margin-right: 1.25em;
}
.box{
  list-style: none;
  line-height: 2em;
}
.box a{
  color: #999;
}
.footer-bottom{
  text-align: center;
  color: #999;
  padding-top: 50px;
}
.footer-left p{
  padding-right: 20%;
  color: #999;
}
.social a{
  background: #364a62;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}
.social a i{
  color: #e7f2f4;
  padding: 10px 12px;
  font-size: 20px;
}
.styling{
  line-height: 1.2em;
}
@media screen and (min-width: 600px){
  .footer-right > *{
    flex: 1;
  }
  .footer-left{
    flex: 1 0px;
  }
  .footer-right{
    flex: 2 0px;
  }
}
#insta:hover{
    background-color: orange;
    color: blue;
}
#face:hover{
  background-color: blue;
  color: white;
}
#whats:hover{ 
background-color: green;
color: white;
 }
#gog:hover{
  background-color: white;
  color: blue;

}