@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    text-decoration: none !important;
}

@font-face {
    font-family: "Monument";
    src: url(../fonts/MonumentExtended-Ultrabold.otf);
}

h1{
    font-family: "Monument";
    font-size: 4rem;
    font-weight: 900;
    color: #f9f9f9;
}
h5{
    font-weight: 600;
}

:root{
    --primary-color: #d4af37;
    --secondary-color: #222233;
    --white : #fff;
}

body{
    background-color: #252525 !important;
}

span{
    color: var(--primary-color);
    font-family: inherit;
}
.primary-button{
    padding: 15px 40px;
    background-color: var(--primary-color);
    border-radius: 40px;
    border: 0;
    color: var(--secondary-color);
}
.border-text{
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 2px 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    border-radius: 40px;
    border: 1px var(--white) solid;
    font-size: 14px;
    i{
        color: var(--primary-color);
        font-size: 15px;
    }
}

.header{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg.jpg');
    background-attachment: fixed;
   
    .hero-content{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90%;
    }
    

}
.navbar{
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.01));
    backdrop-filter: blur(3px);
    a{
        color: var(--white);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        &:hover{
            color: var(--primary-color);
        }
    }
    .active{
        color: var(--primary-color) !important;
    }
}
/* .banner{
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.677)), url('../images/services-bg.jpg');
    background-attachment: fixed;
    background-position: center center;
} */

.services{
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.677)), url('../images/services-bg.jpg');
    background-attachment: fixed;
    padding: 50px;
    background-position: center center;
}
.service-card{
    background-color: rgba(0, 0, 0, 0.234);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    padding: 20px;
    cursor: pointer;
    .icon-box{
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        i{
            color: var(--secondary-color);
            font-size: 25px;
        }
    }
    &:hover{
        background-color: rgba(0, 0, 0, 0.696);
    }
}

.contact{
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.677)), url('../images/services-bg.jpg');
    background-attachment: fixed;
    background-position: center center;
}
input, textarea, select{
    background-color: rgba(0, 0, 0, 0.234) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    padding: 10px;
    color: var(--white);
    margin-bottom: 20px;
    accent-color: var(--primary-color);
    width: 100%;
    &::placeholder{
        color: var(--white);
    }
}
option{
    accent-color: var(--primary-color);
    color: #d4af37;
    background-color: var(--secondary-color);
}
input:focus, textarea:focus{
    outline: 1px solid var(--primary-color) !important;
    box-shadow: none !important;
}
.icon:hover{
    color: var(--primary-color);
    cursor: pointer;
}
.footer li{
    list-style: none;
    padding-bottom: 10px;
}
.footer a{
    color: var(--white);
}
.footer a:hover{
    color: var(--primary-color);
}
.copyright
{
    background-color: #222;
}
.copyright a{
    color: var(--primary-color);
}

@media screen and (max-width: 722px) {
   h1{
font-size: 40px;
   }
  }

  ::selection {
    background-color: var(--primary-color);
    color: var(--secondary-color)
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--white);
    border: 1px solid #ddd
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color)
}

/* loader */

/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.loader {
    width: 100px;
    aspect-ratio: 1;
    padding: 10px;
    box-sizing: border-box;
    display: grid;
    background: #fff;
    filter: blur(3px) contrast(7) hue-rotate(290deg);
    mix-blend-mode: darken;
  }
  .loader:before{
    content: "";
    margin: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ff0000;
    background: currentColor;
    box-shadow: -30px 0,30px 0,0 30px, 0 -30px;
    animation: l6 1s infinite alternate;
  }
  @keyframes l6{
    90%,100% {box-shadow: -10px 0,10px 0,0 10px, 0 -10px;transform: rotate(180deg)}
  }

  #preloader{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

  }

  .icon{
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    i{
        color: var(--primary-color);
    }
    &:hover{
        background-color: var(--primary-color);
        i{
            color: var(--secondary-color);
        }
    }
  }

  h1 {
	-webkit-animation: focus-in-contract 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: focus-in-contract 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

 @-webkit-keyframes focus-in-contract {
    0% {
      letter-spacing: 1em;
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes focus-in-contract {
    0% {
      letter-spacing: 1em;
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }