*{

    margin: 0;
    padding: 0;
    font-family:'Poppins',sans-serif;
    box-sizing: border-box;    


}

html{
    scroll-behavior: smooth;
}

body {
background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


    color: white;
    touch-action: pan-y;
    overflow-x: hidden; /* Disable horizontal scrolling */
    overflow-y: scroll; /* Enable vertical scrolling */
}



.element-to-blur {
      width: 200px;
      height: 200px;
      background-color: lightblue;
      margin: 20px;
      transition: filter 0.5s ease; 
    }

    
    .blurred {
      filter: blur(5px);
    }


.container {

   padding: 0px 10%;
    

}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: none;
  background-color: rgba(27, 26, 26, 0); 
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;

  transition: backdrop-filter 0.5s ease, background-color 0.5s ease;
}

nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  backdrop-filter: none; 
  z-index: -1;
}

nav.unblur {
  backdrop-filter: blur(10px);
  background-color: rgb(35, 40, 55, 0.4); 
  border-radius: 0px 0px 40px 40px;
}




.logo{

    width: 150px;
    height: auto; 
    margin-right: auto;
}

nav ul li{

    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    
}

nav ul li a{
font-size: 18px;
text-decoration: none;
color: #fff;
position: relative;
transition: 0.2s;
}

nav ul li a::after{

    content: '';
    width: 0;
    height: 5px;
    background: #FFCC73;
    position: absolute;
    left: 0;
    border-radius: 20px;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
    font-size: 30px;

}

nav ul li a:hover{
    font-size: 20px;

}





.hirebutton {
    align-items: center;
    background: linear-gradient(144deg, #FFE879, #FFE5A4);
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:800;
    border-radius: 38px;
    box-shadow: #191D28 0 25px 20px -5px;
    box-sizing: border-box;
    color: #232837;
    font-size: 16px;
    justify-content: center;
    line-height: 1em;
    width:120px;
    padding: 11px 0px;
    position: relative;
    width:170px;
    overflow: hidden;
    text-align: center;
    transition: transform 2s ease;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:800;
    
  }



 .hire {
    align-items: center;
    background: linear-gradient(144deg, #FFE879, #FFE5A4);
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:800;
    border-radius: 38px;
    box-shadow: #191D28 0 25px 20px -5px;
    box-sizing: border-box;
    color: #232837;
    font-size: 16px;
    justify-content: center;
    line-height: 1em;
    width:150px;
    padding: 11px 0px;
    position: relative;
    width:200px;
    overflow: hidden;
    text-align: center;
    transition: transform 2s ease;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:800;
    
  }
  
  
  .hire:hover {
  transform: scale(1.1);
}
  
  .shine {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: skew(30deg) translateX(-120%);
    background-color: rgba(242, 242, 242, 0.7);
    animation: shine 2s ease infinite;
}

  
  @keyframes shine {
    0% {
      transform: skew(30deg) translateX(-120%);
    }
    30% {
      transform: skew(30deg) translateX(120%);
    }
    100% {
      transform: skew(30deg) translateX(120%);
    }
  }


 div {
      /*border: 1px solid white;*/
      
    }



.header-text {
    margin-top: 130px;
    font-size: 27px;
    display: flex;
    justify-content: space-between;
}

.text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-container {
    margin-left: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    align-self: flex-end; /* Align the image to the right side */
}

.myPic {
    
    width: 450px; height: auto;
    transition: all ease 0.5s;
}


.header-text h1{

    font-size: 60px;
    margin-top: -10px;
}

.livetext{

   font-weight: lighter;
   margin-bottom: 33px;
}

#bbname {
    color: #ffffff;
}

.phone-call {
    width: 50px;
    height: 50px;
    left: 20px;
    bottom: 20px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.phone-call:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}



 /* my service section starterd */


 .subti{

    font-size: 50px;
    
 }
 
 
 #about{
    
    padding:80px 0;
    color:#ababab;
    
    
}

.row{
    
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis:35%;
}

.about-col-1 img {
    
    width:100%;
    border-radius:5px;
}

.about-col-2{
    flex-basis:60%;
}

.sub-title{
    font-size:55px;
    font-weight:600;
    color: #fff;
}

.tab-titles{
    
    display:flex;
    margin: 20px 0 40px;
}

.tab-links{
    
    margin-right:50px;
    font-size: 22px;
    font-weight:500;
    cursor:pointer;
    position:relative;
}

.tab-links::after{
    content:'';
    width:0;
    height:3px;
    background:#FFE879;
    position:absolute;
    left:0;
    bottom:-8px;
    transition:0.5s;
}



.tab-links.active-link::after{
    width:50%;
    
}

.tab-contents ul li{
    list-style:none;
    margin: 10px 0;
    
    
}

.tab-contents ul li span{
    color: #FFE879;
    font-size:17px;
}

.tab-contents{
    display:none;
}

.tab-contents.active-tab{
    display:block;
}




 #Services{

    padding: 20px 0px;

 }

 .services-list{

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 30px;

 }

.services-list div {
background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 13px;
    transition: transform 0.5s ease;
}


 .services-list div i{

    font-size: 35px;
    margin-bottom: 12px;
 }
 .services-list div a{

    text-decoration: none;
    color: white;
 }

 .services-list div h2{

    margin-bottom: 7px;
 }

.services-list div:hover {
    background: linear-gradient(144deg, #FFE879, #FFE5A4);
    transform: scale(1.1);
}

.myPic:hover {
   transform: scale(1.1);
    transition: all ease 0.7s;
}
 
 .services-list div:hover h2 {
    color: #232837;
}

 .services-list div:hover p {
    color: #232837;
}

.services-list div:hover img {
   filter: sepia(100%) saturate(0%) brightness(22%);
}

.services-list div:hover i {
    color: #232837;
}


 /* ----------------- Portfolio started ------------- */

 #Portfolio{
    padding: 50px 0;
 }

 .worklist{

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 30px;
 }

 .work{

    border-radius: 12px;
    position: relative;
    overflow: hidden;
 }

 .work img{


    width: 100%;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s;
 }

 .layer{




    width: 100%;
    height: 0;
    background-image: linear-gradient(rgba(126, 107, 11, 0.852),#FFE879);
    border-radius: 12px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: 0.5s;

 }

 .layer h3{

    font-weight: 500;
    margin-bottom: 20px;


 }

 .layer a{
    margin-top: 20px;
    color: #8b7714;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
 }

 .work:hover img{

    transform: scale(1.1);
 }

 .work:hover .layer{

    height: 100%;

 }

 .btn{

    display: block;
    margin: 45px auto;
    width: fit-content;
    border: 1px solid;
    padding: 14px 50px;
    font-size:15px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    transition: backgroud 0.5s;
 }

 .btn:hover{
   background: linear-gradient(144deg, #FFE879, #FFE5A4);
    color: #232837;
    border-color:#232837;
    transform: scale(1.1);
    transition: transform 0.8s ease;
 }

 /* ------------------ contact started here ------------ */

 .row {
    display: flex;
}


 .contact-left{

    
    flex-basis: 35%;

 }

 .contact-right{

    flex-basis: 60%;
    
 }



 .contact-left p{

    margin-top: 30px;
 }
 .contact-left p i{
    color: #cbb54a;
    margin-right: 15px;
    font-size: 25px;
 }

 .social-icons{

    margin-top: 30px;
 }
 .social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color:#cbb54a;
    display: inline-block;
    transition: transform 0.5s;
 }

 .social-icons a:hover{
    color: #cbb54a;
     transform: scale(1.1);
 }

 .btn.btn2{
    display: inline-block;
    background: linear-gradient(144deg, #FFE879, #FFE5A4);
    color: black;

 }
 .contact-right form{
    width: 100%;

 }

 form input, form textarea {

    width: 100%;
    border: 0;
    outline: none;
    background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    padding: 15px;
    margin: 15px 0;
    color: white;
    font-size: 18px;
    border-radius: 10px;
 }

 .copyright{
    width: 100%;
    text-align: center;
    background: #0f121b;
    margin-top: 20px;
    padding: 25px 0;
    font-weight: 300;

 }

 nav .fa-solid {
   display: none;
 }
 
 #msg{
     
     color: #61b752;
     display:block;
     margin-top:5px;
     
 }
 
 
 #loader {
     
  display:none;     
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #cbb54a;
  width: 45px;
  margin-top:15px;
  height: 45px;
 
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 
 
 

.gtco-testimonials {
  position: relative;
  margin-top: 30px;



  .owl-stage-outer {
    padding: 30px 0;
  }

  .owl-nav {
    display: none;
  }

  .owl-dots {
    text-align: center;

    span {
      position: relative;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      display: block;
      background: #fff;
      border: 2px solid #01b0f8;
      margin: 0 5px;
    }

    .active {
      box-shadow: none;

      span {
        background: #01b0f8;
        box-shadow: none;
        height: 12px;
        width: 12px;
        margin-bottom: -1px;
      }
    }
  }

  .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;

    .card-img-top {
      max-width: 100px;
      border-radius: 50%;
      margin: 15px auto 0;
      box-shadow: 0 8px 20px -4px #95abbb;
      width: 100px;
      height: 100px;
    }

    h5 {
      color: #01b0f8;
      font-size: 21px;
      line-height: 1.3;

      span {
        font-size: 18px;
        color: #666666;
      }
    }

    p {
      font-size: 18px;
      color: #555;
      padding-bottom: 15px;
    }
  }

  .active {
    opacity: 0.5;
    transition: all 0.3s;
  }

  .center {
    opacity: 1;

    h5 {
      font-size: 24px;

      span {
        font-size: 20px;
      }
    }

    .card-img-top {
      max-width: 100%;
      height: 120px;
      width: 120px;
    }
  }
}



@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}

.owl-carousel {
  .owl-nav button {
    &.owl-next, &.owl-prev {
      outline: 0;
    }
  }

  button.owl-dot {
    outline: 0;
  }
}


 
 