*{
    margin: 0;
    padding: 0;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Red Hat Display", sans-serif!important;
  font-size: 18px;
}


.bg-dark{
  background: #121212 !important;
}
/* Header Css */
header.header-main {
 background: #121212 !important;
 position: relative;
 z-index: 99;
}


.header-main .main-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.header-main .header-logo img {
  max-width: 232px;
}

.header-main .header-logo {
  width: 20%;
}

.header-main .nav-main-menu {
  width: 80%;
}

.header-main .navbar {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-main .logo {
  color: white;
  font-size: 24px;
}

.header-main .nav-links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  margin-right: 80px;
}

.header-main .nav-links li {
  position: relative;
}

.header-main .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.5px;
}

.header-main .nav-links a:hover {
  /* Optional hover effect for main nav links */
}

.header-main .dropdown-menu {
 display: none;
  position: absolute;
  width: 250px;
  top: 67px;
  left: 0;
  background-color: #fff;
  list-style: none;
  border-radius: 0;
}

.header-main .dropdown:hover .dropdown-menu {
  display: none;
  /* No display on hover */
}

.header-main .dropdown.open .dropdown-menu {
  display: block;
  /* Show dropdown when open class is present */
}

.header-main .dropdown-menu li a {
  padding: 15px;
  /* white-space: nowrap; */
  color: #000000;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid #00000021;
  transition:all linear 0.4s;
  font-size: 14px;
}

.header-main .dropdown-menu li a:hover {
  /* background-color: #0F386A; */
  opacity: 0.7;
}
.header-main .dropdown-menu li a:hover {
    margin-left: 4px;
    font-weight: 500;
}
/* Hamburger menu styles */
.header-main .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-main .hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px;
  transition: all 0.3s ease;
}

.header-main .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 14px;
}

.header-main .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header-main .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

.header-main .dropdown>a::after {
  content: '\f107';
  /* Down arrow */
  font-size: 12px;
  font-family: fontAwesome;
  color: white;
  padding-left: 8px;
  display: inline-block;
}

.header-main .dropdown.open>a::after {
  content: '\f106';
  /* Up arrow */
  font-family: fontAwesome;
}








@media (max-width: 1199px) {
  .header-main .header-logo img {
    max-width: 180px;
  }

  .header-main .nav-links a {
    padding: 10px 10px;
    font-size: 12px;
  }
}



@media (max-width: 991px) {
  .header-main .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #0F386A;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    transition: height 0.3s ease;
  }

  .header-main .nav-links li {
    width: 100%;
    position: relative;
  }

  .header-main .nav-links a {
    padding: 18px;
    font-size: 18px;
    width: 100%;
  }

  .header-main .nav-links.show {
    display: flex;
    padding-top: 50px;
  }

  /* For mobile dropdown */
  .header-main .dropdown-menu {
    position: static;
    /* Override absolute positioning for mobile */
    background-color: transparent;
    padding: 0 20px;
    width: 100%;
  }

  .header-main ul.dropdown-menu li {
    border-bottom: 1px solid #ccc;
  }

  .header-main ul.dropdown-menu li:last-child {
    border-bottom: none;
  }

  .header-main .dropdown-menu li a {
    padding: 15px;
    color: #fff;
    text-align: left;
    width: 100%;
  }

  .header-main .dropdown .show-dropdown {
    display: block;
    /* Show dropdown on click in mobile */
  }

  /* Hamburger styles */
  .header-main .hamburger {
    display: flex;
  }

  /* To handle dropdown toggle icon */
  .header-main .dropdown>a::after {
    content: '\f107';
    /* Down arrow */
    font-size: 12px;
    font-family: fontAwesome;
    color: white;
    padding-left: 8px;
    display: inline-block;
  }

  .header-main .dropdown.open>a::after {
    content: '\f106';
    /* Up arrow */
    font-family: fontAwesome;
  }

  .header-main .hamburger-button {
    display: none;
    width: 100%;
    padding: 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .header-main .hamburger-button .button {
    padding: 15px 25px;
    background-color: #07A5C3;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    width: 100%;
  }

  .header-main .nav-links.show+.hamburger-button {
    display: block;
  }

  .header-main .navbar {
    justify-content: right;
  }

  .header-main .header-logo {
    width: 50%;
  }

  .header-main .nav-main-menu {
    width: 50%;
  }
}




nav{
  position: relative;
  z-index: 99;
}
.hero {
      color: white;
      position: relative;     
      text-align: left;
      margin-top: -5%;
      z-index: 9;
      position: relative;
      background: #000;
    }
  .hero:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    background: linear-gradient(90deg, rgb(0 0 0 / 78%) 0%, rgb(237 221 83 / 0%) 100%);
  }
.herotextcontainer{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 55%;
    z-index: 50;
}
.hero h1{
font-family: "Red Hat Display", sans-serif!important;
  font-size: 56px;
  font-weight: 300;
}
.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.bannertext {
    width: 40%;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.5px;
    float: right;
}


 

    .btn-custom {
        margin-right: 10px;
        border-radius: 50px;
        padding: 14px 38px !important;
    }

    .btnblack{
        transition: all linear 0.5s;
        background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(237 221 83 / 0%) 100%)
      }
      .btnblack:hover{          
          -moz-animation: gradient 3s ease-in-out infinite;
          -webkit-animation: gradient 3s ease-in-out infinite;
           animation: gradient 3s ease-in-out infinite;
           color: #fff !important; 
           background-color: #686868;          
      }
      .btnwhite{
        border: none;
        transition: all linear 0.5s;
      }
      .btnwhite:hover{
           background: #212121;
          border: none;
          color: #fff !important;
          box-shadow: 0px -1px 15px 3px rgb(167 173 110 / 47%);
      }







.welcomecontent{
  padding: 100px 0;
 font-size: 18px;
}
.welcomebutton {
    border-radius: 40px;
    position: relative;
    float: right;
    border: #000 1px solid;
    padding: 18px 25px 14px 38px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.welcomebutton i{
  font-size: 13px;
  margin-left: 12px;
  margin-right: 12px;
}

.gallerysection h1{
    font-size: 48px;
    font-weight: 400;
    width: 75%;
    margin: auto;
    line-height: 65px;
    margin-bottom: 80px;
    position: relative;
  }
  .gallerysection h1:after {
     position: absolute;
    content: '';
    width: 180px;
    background: #000;
    height: 1px;
    left: -43%;
}
  .gallerytext{    
     position: sticky;
     margin-top: 150px;
     top: 30%;
     margin-bottom: 50px;
  }
  .gallerytext h6{
    text-transform: uppercase;
    color: #5F6467;
  }
  /* .gallerimgholder {
    margin-bottom: 150px;
    position:relative;
  }
  .hover-animation {
  
}
.hover-animation .image-back{
  position: absolute;
  z-index: 1;
}
.hover-animation .image-front{
  z-index: 9;
  opacity:9;
  position: relative;
  transition: opacity 1s ease-in-out;
}
.hover-animation img.image-front:hover {
  opacity: 0;
  cursor: pointer;
  z-index: 0;
} */

 .gallerimgholder {
    margin-bottom: 150px;
  }
.hover-animation img {
    width: 100%;
}
.hover-animation {
    position: relative;
    width: 100%;
    height: 100%;
}
.image-front,
.image-back {   
    transition: opacity 0.5s ease;
}

.image-back {
    opacity: 0;
    position: absolute;
    top: 0;
    filter: brightness(50%);
}

.hover-animation a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, 50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hover-animation:hover .image-front {
    opacity: 0;
}

.hover-animation:hover .image-back {
    opacity: 1;
}

.image-back::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* adjust opacity here */
}
.hover-animation:hover a {
    opacity: 1;
}














  .servicebtn{
    color: #000;
    text-decoration: none;
  }
.servicebtn i{
  font-size: 14px;
  margin-left: 15px;
}


.testimonialsection{
  background: #121212;
  margin-top: 100px;
  padding: 150px 0;
  position: relative;
    z-index: 99;
}
.testimonialsection h1{
  color: #fff;
  font-size: 48px;
  font-weight: 300;
}
.testimonial_box{
  background: #FFFAF4;
  padding: 72px 95px 60px 89px;
  border-radius: 35px;
  font-size: 18px;
  line-height: 25px;
}
.owl-carousel .item{
  margin: 15px;
}
a.testimoniallink {
    color: #000;
}
a.testimoniallink i{
  font-size: 12px;
  margin-left: 10px;
}
.clientimg img{
     width: 70px !important;
    height: 70px;
    border-radius: 50%;
}
.clientname h5 {
    font-weight: 400;
    margin-left: 15px;
    font-size: 18px;
}
.owl-carousel{
  position: relative;
}
.owl-nav {
    position: absolute;
    top: -20%;
    right: 30px;
}
button.owl-prev,
button.owl-next {
    width: 60px;
    height: 60px;
    border: #fff 1px solid !important;
    border-radius: 50%;
    background: linear-gradient(90deg, rgb(7, 7, 7) 0%, rgb(75 74 74) 100%) !important;
    background-size: 200% 500% !important;
    background-position: left;
    transition: background-position 0.5s ease, border 0.5s ease;
}

/* Hover state with gradient transition */
button.owl-prev:hover,
button.owl-next:hover {
    background-position: right !important;
}

.owl-nav button {
    margin: 0 8px;
}
.owl-nav button i{
  color: #fff;
}




.lets_talksection{
   padding: 150px 0;
}
.lets_talksection h1{
  color: #0c0c0c;
  font-size: 48px;
  font-weight: 400;
}
.letstalk_inner_content{
  width:60%;
  margin: auto;
}
.letstalkform {
    padding: 0 120px;
}
.letstalkform .form-control{
  height: 60px;
  background: #FBFBFB;
  border: #DDDDDD 1px solid;
  border-radius: 4px;
}
.letstalkform .form-select{
   height: 60px;

  border: #DDDDDD 1px solid;
  border-radius: 4px;
}
.letstalkform .form-control{
  letter-spacing: 0.2px;
}

.form_sendbutton{
    border-radius: 40px;
    border: #000 1px solid;
    padding: 14px 25px 14px 38px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    background: #fff;
}
.form_sendbutton i{
  font-size: 14px;
  margin-left: 15px;
}

.formbtm-text {
    text-align: center;
    line-height: 19px;
    margin-top: 20px;
    color: #6b6b6b;
    font-size: 16px;
}
.bookcallSection{
  background: linear-gradient(136deg,rgba(30, 30, 30, 1) 46%, rgba(255, 135, 32, 1) 100%);
  padding: 100px 0;
}
.bookcallSection h1{
  font-size: 56px;
  width: 80%;
  color: #fff;
  font-weight: 300;
}
.bookcallSection h6{
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.2px;
  margin-top: 15px;
}
.bookbtn{
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    border: #fff 1px solid;
    border-radius: 80px;
    padding: 16px 35px;
    display: inline-block;
}
.bookbtn i{
  font-size: 12px;
  margin-left: 15px;
}




footer{
        background: #121212;
        padding: 100px 0;
        color: #fff;
        font-weight: 300px;
        letter-spacing: 0.5px;
    }
 .footerbtn{
     float: right;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    border: #fff 1px solid;
    border-radius: 80px;
    padding: 13px 35px;
}
.footerbottom{
    margin-top: 40px;
}
.socialicons a{
    font-size: 1.25rem;
    color: #ffffff;
    transition: color 0.3s ease;
    display: inline-block;
    padding:0px 10px;
  }
  .footerlinks{
    line-height: 38px;
  }
/*Portfolio*/
.potfoliosection{
  padding:100px 0 0 0;
}
.filter-menu {
      margin: 10px 0;
      text-align: center;
    }
    .filter-menu button {
      border: none;
      background: #fff;
      padding: 10px 10px;
      margin: 5px;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      font-size: 16px;
    }
    .filter-menu button.active {
      border-bottom: 1px solid #000;
      font-weight: bold;
    }
.portfolioimage{
   overflow: hidden;
   height: 580px;
   margin-bottom: 3px;
}
.portfolioimage img{
      width: 100%;
      height: 100%;
      object-fit: cover;
}
.pcontainer {
    padding: 10px;
}

