* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
}


.navbar {
    position: fixed;
    font-weight: bold;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: transparent;
    z-index: 999;
}
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.767);
    opacity: 0.7;
}
.navbar.hidden {
    top: -100px;
}
.navbar img {
    width: 150px;
}
.nav-menu {
    list-style: none;
}
.nav-menu.open {
    display: flex;
}
.nav-menu li {
    display: inline-block;
    padding: 20px;
}
.nav-menu li a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    padding-bottom: 10px;
}
.navbar .active {
    list-style: none;
    a {
      position: relative;
      display: block;
      text-transform: uppercase;
      margin: 20px 0;
      padding: 10px 20px;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      transition: .5s;
      z-index: 1;
      &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: scaleY(1);
        opacity: 1;
        transition: .3s;
      }
      &:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        transform: scaleY(1);
        opacity: 1;
        transition: .3s;
        z-index: -1;
      }
    }
}

.navbar li {
      list-style: none;
      a {
        position: relative;
        display: block;
        text-transform: uppercase;
        margin: 20px 0;
        padding: 10px 20px;
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        transition: .5s;
        z-index: 1;
        &:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border-top: 2px solid #fff;
          border-bottom: 2px solid #fff;
          transform: scaleY(2);
          opacity: 0;
          transition: .3s;
        }
        &:after {
          content: '';
          position: absolute;
          top: 2px;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: #ff6a00c2;
          transform: scale(0);
          opacity: 0;
          transition: .3s;
          z-index: -1;
        }
        &:hover {
          color: #fff;
          &:before {
            transform: scaleY(1);
            opacity: 1;
          }
          &:after {
            transform: scaleY(1);
            opacity: 1;
          }
        }
      }
    }
.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 30px;
    height: 5px;
    margin: 5px auto;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #c75b02;
}


/* ---  Navbar @media  --- */
@media(max-width: 800px) {
    .navbar img {
        width: 100px;
    }
    .navbar {
        justify-content: center;
    }
    .hamburger {
        display: block;
        z-index: 999;
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(10px) rotate(44deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-10px) rotate(-44deg);
    }
    .nav-menu.active {
        top: 100px;
        opacity: 1;
    }
    .nav-menu {
        z-index: 999;
        position: fixed;
        top: -100%;
        opacity: 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        background: #333333d7;
        width: 100%;
        transition: 0.3s;
    }
    .nav-menu a {
        color: #fff !important;
    }
    .navbar li {
        margin: 0;
    }
}



/* --- Hero --- */

.hero {
    position: relative;
    line-height: 1.5;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 900px;
    background: url("img/background.jpg");
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1111118f;
    opacity: 0.7;
}
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 99;
    color: #fff;
}
.hero-text h1 {
    font-size: 2.7em;
    font-weight: 900;
    margin: 20px 0;
    color: #fff;
    
    line-height: 60px;
    letter-spacing: 0.3px;
    word-spacing: 0px;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke: 1px #fff;
    stroke-width: 0px;
    stroke: #000;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.534);
}
.hero-text p {
    color: #eee;
    font-size: 18px;
    max-width: 800px;
    margin-top: 20px;
}

/* ---  Hero @media  --- */
@media(max-width: 800px) {
  .hero {
    height: 600px;
  }
  .hero-text h1 {
      font-size: 26px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .hero img {
    width: 150px;
  }
}
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.342);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}




/* -----  Features Starts  ----- */


/* Flex container */
.feature-container {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Card styles */
  .feature {
    width: 300px;
    height: 250px;
    padding: 20px;
    margin: 10px 20px;
    display: flex;
    justify-content: start;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
  }
  
  .feature img {
    max-width: 50px;
    margin: 10px auto;
  }

  .feature i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #8e5200;
  }
  
  .feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature p {
    font-size: 16px;
    color: #777;
  }
  
/* ---  Features @media  --- */
@media(max-width: 800px) {
    .feature {
        height: 220px;
        margin-bottom: 20px;
    }
    .feature h3 {
        font-size: 18px;
    }
    .feature p {
        font-size: 14px;
    }
}

/* ---  About --- */
.about {
  padding: 100px 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.about img {
  width: 600px;
  margin: 0 80px;
  border-radius: 10px;
}

.about .text {
  max-width: 800px;
}

.about h2 {
  font-size: 24px;
}
.about p {
  font-size: 18px;
  color: #333;
}
.about .btn {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    margin: 20px 0;
    padding: 10px 20px;
    text-decoration: none;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
    z-index: 1;
  }
  
  .about .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: scaleY(2);
    opacity: 0;
    transition: .3s;
    cursor: pointer;
  }
  
  .btn:hover {
    color: #fff;
    background-color: #ff6a00c2;
  }
  
/* About @media */
@media (max-width: 1024px){
  .about {
      flex-wrap: wrap;
  }
  .about img {
      width: 100%;
  }
}
@media (max-width: 800px){
  .about {
      padding: 80px 15px;
  }
  .about img {
      margin: 20px 0;
  }
  .about h2 {
      font-size: 20px;
  }
  .about p {
      font-size: 16px;
  }
}


/* --- Services --- */

.services {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: url("img/background.jpg");
    background-size: cover;
    background-attachment: fixed;
}
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1111118f;
    opacity: 0.7;
}
.services h2 {
    z-index: 99;
    position: relative;
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;

    line-height: 60px;
    letter-spacing: 0.3px;
    word-spacing: 0px;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke: 1px #fff;
    stroke-width: 0px;
    stroke: #000;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.534);
}
  
.services p {
    z-index: 99;
    position: relative;
    font-size: 16px;
    color: #eee;
    max-width: 600px;
    margin: 0 auto 40px;
}

.service-cards {
    z-index: 99;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.service-card {
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
  
.service-card h3 {
    background-color: #c75b02;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .service-card:hover h3 {
    background-color: #fff;
    color: #333;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  
.services .btn {
    position: relative;
    z-index: 99;
    display: inline-block;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    margin-top: 70px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
  
.services .btn:hover {
    background-color: #eee;
}



/* --- Projects --- */

.projects {
    padding: 80px 0;
    text-align: center;
  }
  
  .projects h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .projects p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .projects-image {
    max-width: 800px;
    width: 100%;
    height: auto;
  }


  

/* -- Clients Start -- */

/* -- Clients Start -- */

.client {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    color: #000;
    background: #fff;
  }
  
  .slider-container {
    padding: 20px 0;
    border-radius: 0;
    overflow: hidden;
  }
  
  .client .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
  }
  
  .client h2 {
    position: relative;
    display: inline-block;
    font-size: 42px;
    margin-bottom: 50px;
    color: #000;
  }
  
  
  .client p {
    font-size: 18px;
  }
  
  .client img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.507);
  }
  

/* Glide.js styles */
.glide {
    position: relative;
  }
  
  .glide__track {
    overflow: hidden;
  }
  
  .glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
  }
  
  .glide__slide {
    width: 100%;
    flex-shrink: 0;
    white-space: normal;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  .glide__arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
  }
  
  .glide__arrow {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border: none;
    color: #283885 !important;
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .glide__arrow:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  .glide__arrow--left {
    left: 0;
  }
  
  .glide__arrow--right {
    right: 0;
  }
  
  
  
#footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #f7f7f7;
    padding: 50px 15px;
}
  .footer-div {
    margin: 10px 100px;
  }
  .logo {
    max-width: 400px;
  }
  .logo img {
    width: 250px;
  }
  .logo p {
    color: #333;
  }
  .social-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
  }
  .social-links h2{
    padding-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
  }
  .social-links img{
    padding-bottom: 25px;
  }
  .social-icons{
    display: flex;
    gap: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #777777;
  }
  .social-icons a{
    font-size: 14px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #1474bb;
    margin-right: 20px;
    color: #777777;
  }
  .social-icons a:hover{
    color: #000;
  }
  .social-icons a i{
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #ff6b00;
    font-size: 16px;
    margin-right: 12px;
}
li{
    list-style: none;
}
.useful-link h2{
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}
.useful-link img{
    padding-bottom: 15px;
}
.use-links{
    line-height: 32px;
}
.use-links li i{
    font-size: 12px;
    padding-right: 8px;
    color: #898989;
}
.use-links li a{
    color: #303030;
    font-size: 14px;
    font-weight: 500;
    color: #777777;
}
  .use-links li a:hover{
    color: #000;
}
.copy-right-sec{
    padding: 10px;
    background: #333;
    font-size: 12px;
    color: #fff;
    text-align: center;
}
.copy-right-sec a{
    color: #c75b02;
    font-weight: 500;
}
  a{
    text-decoration:none;
  }
  
  @media (max-width: 800px) {
    .footer-div {
        margin: 10px;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-icons a{
        font-size: 12px;
    }
    .social-icons a i{
        font-size: 12px;
    }
  }
  
  /* footer section end */
    