

  /* HEADER Start */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
  }

  @font-face {
  font-family: 'Butler Light';
  src: url('fonts/Butler-Light.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  }

  body {
    font-family: 'Butler Light', serif;
    background: #edebea;
    color: #333;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
    padding: 40px 20px;
  }

 /* HEADER */
  header {
    background: #fff;
    border-bottom: 1px solid #ccc;
    height: 70px; /* Updated from 80px to 120px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    padding: 0 0px; /* Optional: to give some spacing inside header */
  }

  .menu-toggle {
    font-size: 26px;
    cursor: pointer;
    background: #898374;
    border: none;
    color: white;
    padding: 10px 20px;
    height: 100%;
  }

  .header-text {
  font-size: 26px;
  color: #383838;
  margin-left: auto;
  padding-right: 15px;
  text-align: right;
  font-weight: normal;
  }

  @media (max-width: 768px) {
  .header-text {
      font-size: 18px;
  }
  }

  


  /* SIDE MENU */
  .side-drawer {
    position: fixed;
    top: 55px;
    left: -250px;
    width: 250px;
    height: calc(100% - 60px);
    background-image: url('https://i.pinimg.com/736x/a9/98/0b/a9980b9da9c0735a548c22bd8d7fc57d.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
  }

  .side-drawer.show {
    left: 0;
  }

  

  .side-drawer a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
  }

  .side-drawer .social-icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
  }

  .overlay.show {
    display: block;
  }

  /* BANNER IMAGE */
  .banner-image {
    width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
    object-fit: cover;
  }





  /* FOOTER */
  footer {
    background: #000;
    color: #fff;
    padding: 30px 20px 70px;
    font-size: 14px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-left {
    max-width: 60%;
  }

  .footer-left h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: normal;
  }

  .footer-left hr {
    border: 0;
    border-top: 1px solid #fff;
    margin: 10px 0;
    width: 80px;
  }

  .footer-left a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    font-weight: normal;
  }

  .footer-left a:hover {
    color: #fff;
  }

  .footer-right .social-icons {
    display: flex;
    gap: 10px;
    font-size: 18px;
    margin-top: 10px;
  }

  .footer-right .social-icons a {
    color: #ccc;
    text-decoration: none;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
  }

  /* Work with Us Button */
  .work-with-us-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #898374;
    color: #fff;
    padding: 12px 20px;
    border-radius: 0px;
    text-decoration: none;
    z-index: 1002;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .footer-left {
      width: 100%;
    }

    .footer-left h3 {
      font-size: 16px;
    }

    .footer-left a {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .footer-right {
      width: 100%;
      display: flex;
      justify-content: flex-start;
    }

    .footer-right .social-icons {
      gap: 15px;
      margin-top: 0;
    }

    .work-with-us-btn {
      width: 100%;
      left: 0;
      right: 0;
      border-radius: 0;
      bottom: 0;
      text-align: center;
    }
  }

/* Footer End */













/* Home & contact page tite start */

.strategy-section {
  display: flex;
  justify-content: center;
  align-items: left;
  padding: 60px 20px;
}

.strategy-container {
  max-width: 1200px;
  text-align: left;
}

.strategy-title {
  font-size: 35px;
  color: #000;
  margin-bottom: 10px;
  font-weight: normal;
}

.strategy-subtitle {
  font-size: 16px;
  color: #555;
  font-weight: normal;
  margin-bottom: 20px;
}

.strategy-description {
  font-size: 15px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.strategy-button {
  padding: 12px 25px;
  background-color: #898374;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.strategy-button:hover {
  background-color: #6f6a5f;
}

@media (max-width: 768px) {
  .strategy-title {
    font-size: 20px;
  }

  .strategy-subtitle {
    font-size: 24px;
  }

  .strategy-description {
    font-size: 15px;
  }
}
/* Home & contact page tite end */















/* Services Start */
.velocityservices {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 70px;
  margin-top: 50px;
}
.velocityservices h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal;
  font-size: 2.5rem;
  color: #444;
  letter-spacing: 1px;
}
.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  background: transparent;
  border: 1px solid #898374;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 250px;
  transition: box-shadow 0.3s ease;
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
.card-icon {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.card-title {
  font-size: 1.25rem;
  font-weight: normal;
  color: #56543a;
  margin: 0;
  text-align: center;
}
.card-description {
  color: #666555;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}
.view-more-button {
  align-self: center;
  padding: 10px 20px;
  border: 1px solid #898374;
  color: #898374;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  user-select: none;
}
.view-more-button:hover,
.view-more-button:focus {
  background-color: #898374;
  color: #fff;
  outline: none;
}

/* Responsive for mobile devices */
@media (max-width: 900px) {
  .service-card {
    flex: 1 1 48%;
  }
}
@media (max-width: 600px) {
  .service-card {
    flex: 1 1 100%;
  }

  .velocityservices h2 {
    font-size: 1.8rem;
  }
}
/* Services End */