 body>.skiptranslate,
    .goog-te-banner-frame.skiptranslate {
      display: none !important;
      height: 0 !important;
      visibility: hidden !important;
    }

    body {
      top: 0px !important;
      position: static !important;
    }
    

    .goog-logo-link,
    .goog-te-gadget span {
      display: none !important;
    }

    .goog-te-gadget {
      color: transparent !important;
      font-size: 0;
    }


.navbar {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 5px 50px;
  position: fixed;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  z-index: 10;
}

.logo {
  color: #fff;
  font-weight: bold;
}

.logo-img {
  height: 50px;
  width: 100%;
  vertical-align: middle;
}

.nav-links {
  font-size: 39px;
  padding-left: 5%;
  list-style: none;
  display: flex;
  /* gap: 10px; */
  align-items: left;
  flex-grow: 1;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  position: relative;
  padding: 30px 17px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: #e86724;
  transition: width 0.4s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 4px;
  width: 25px;
  background-color: #000000;
  margin: 3px 0;
}

.close-btn {
  display: none;
}


@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    background-color: wheat;
    color: #000;
    width: 70%;
    height: 100vh;
    transition: left 0.3s ease;
    z-index: 9;
  }

  .close-btn {
    left: 84%;
    position: absolute;
    /* background: #e86724; */
    font-size: 30px;
    color: #000000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
  }



  .nav-links.active {
    left: 0;
  }

  .nav-links li a {
    color: #000;
    padding: 15px 20px;
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
    z-index: 10;
  }

  .navbar {
    width: 100%;
    padding: 10px 20px;
    clip-path: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar {
    width: 100%;
    padding: 10px 30px;
  }

  .navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 5px 50px;
    position: fixed;
    clip-path: none;
    z-index: 10;
  }

  .nav-links li a {
    font-size: 16px;
    padding: 25px 12px;
  }

  .logo img {
    width: 120px;
  }
}



/* header section */
.header-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10%;
  padding-right: 20px;
  background: #fff;
  overflow: visible;
}

.header-title {
  font-size: 45px;
  font-weight: 700;
  color: #000000;
}

.gradient-text {
  font-size: 50px;
  font-weight: bold;
  color: #e86724;
}

.header-description {
  color: #666;
  font-size: 22px;
  max-width: 500px;
}

.btn-primary-custom {
  border-radius: 0%;
  background-color: #e86724;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin-right: 15px;
  font-size: 19px;
  height: 60px;
  width: 30%;
}
.btn-primary-custom :hover{
  border-radius: 0%;
  background-color: #e86724;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin-right: 15px;
  font-size: 19px;
  height: 60px;
  width: 30%;
}
.btn-secondary-custom {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 10px 25px;
}

.image-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5%;
}

.image-column img {
  z-index: 999;
  margin-left: 149px;
  height: 800px;
  width: 90%;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 999;
}

.play-button:hover {
  transform: scale(1.1);
}

.btn-secondary-custom {
  background-color: #f5eaea;
  color: #e86724;
  font-size: 19px;
  height: 60px;
  width: 30%;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  height: 80%;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  z-index: 10000;
}

iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .header-section {
    padding: 0;
  }

  .image-column img {
    z-index: auto;
    margin-left: 177px;
    height: 840px;
    width: 85%;
    border-radius: 10px;
  }

  .row {
    margin: 0;
  }

  .header-title {
    padding-left: 24px;
    font-size: 34px;
    font-weight: 600;
    color: #000000;
  }

  .gradient-text {
    padding-left: 23px;
    font-size: 36px;
    font-weight: bold;
    color: #e86724;
  }

  .header-description {
    padding: 24px;
    color: #666;
    font-size: 23px;
    max-width: 500px;
  }

  .image-column {
    padding: 0 !important;
    margin: 1px auto 3px -50px;
    display: flex;
    justify-content: center;
  }

  .image-column img {
    width: 72%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: white;
    z-index: 0;
  }

  .buttons {
    padding-left: 27px;
    padding-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 70%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  .header-title {
    font-size: 70px;
    font-weight: 600;
    color: #000000;
    padding-top: 89px;

  }

  .gradient-text {
    font-size: 60px;
    font-weight: bold;
    color: #e86724;
  }

  .image-column img {
    z-index: 0;
    margin-top: 32%;
    width: 80%;
    /* max-width: 100%; */
    height: auto;
    margin-left: -35px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  .btn-secondary-custom {
    background-color: #f5eaea;
    color: #e86724;
    font-size: 19px;
    height: 60px;
    width: 41%;
  }

  .logo {
    padding-left: 31px;
    color: #fff;
    font-size: 34px;
    font-weight: bold;
  }

  .nav-links {
    font-size: 39px;
    list-style: none;
    display: flex;
    gap: 0px;
    align-items: left;
    flex-grow: 1;
  }

  .navbar {
    width: 71%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0px 0px;
    position: fixed;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
    z-index: 10;
  }

  .btn-primary-custom {
    font-size: 19px;
    height: 60px;
    width: 39%;
  }
}

/* About section */
.about-container {
  display: flex;
  flex-direction: row-reverse;
  /* 🔁 content and image side reversed */
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 70px;
}

.content {
  flex: 1;
  min-width: 300px;
}

.image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.content h2 {
  font-size: 17px;
  color: #e86724;
}

.main-heading {
  font-weight: 700;
  font-size: 44px;
  color: #000000;
}

.sub-heading {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
}

.skill {
  margin-bottom: 15px;
}

.skill-name {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.skill-bar {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
}

.skill-progress {
  height: 100%;
  border-radius: 3px;
  background: #e86724;
}

.skill-progress-1 {
  height: 100%;
  border-radius: 3px;
  background: #bd8567;
}

.skill-progress-2 {
  height: 100%;
  border-radius: 3px;
  background: #f8b996;
}

.badges {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 20px;
  }

  .main-heading {
    line-height: 47px;
    font-weight: 600;
    font-size: 40px;
    color: rgb(0, 0, 0);
  }

  .sub-heading {
    font-size: 17px;
    font-weight: 400;
  }

  .content,
  .image {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .sub-heading {
    font-size: 14px;
    font-weight: 400;
  }

  .main-heading {
    line-height: 41px;
    font-weight: 600;
    font-size: 29px;
    color: #000000;
  }
}

/* service section */

.services {
  text-align: center;
  padding: 50px 20px;
}

.highlight {
  color: #e86724;
  font-style: italic;
}

.services h6 {
  font-size: 17px;
  color: #e86724;
}

.services h2 {
  color: #000000;
  font-weight: 700;
  font-size: 44px;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service {
  width: 280px;
  height: 280px;
  perspective: 1000px;
  position: relative;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  border-radius: 50%;
}

.flip-service:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  transform-origin: center center;
}

.flip-front {
  background: #e86724;
  color: white;
  padding: 10px;
}

.flip-back {
  background: transparent;
  transform: rotateY(180deg);
}

.image-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 15px;
  background: #e86724;
  box-sizing: border-box;
  position: relative;
}

.image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.plus-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: white;
  color: #e86724;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px #964418;
  z-index: 2;
}

.service h3 {
  font-size: 20px;
  margin-top: 10px;
}

.service p {
  font-size: 12px;
  padding: 0 10px;
}

.icon {
  font-size: 36px;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .service-container {
    flex-direction: row;
    justify-content: center;
  }

  .service {
    width: 220px;
    height: 220px;
  }

  .flip-inner {
    width: 100%;
    height: 100%;
  }

  .flip-front, .flip-back {
    width: 100%;
    height: 100%;
  }

  .plus-icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .icon {
    font-size: 30px;
  }

  .service h3 {
    font-size: 18px;
  }

  .service p {
    font-size: 11px;
  }
}


@media (max-width: 767px) {
  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .flip-inner,
  .flip-front,
  .flip-back {
    width: 260px;
    height: 260px;
  }

  .service {
    width: 260px;
    height: 260px;
    margin: 20px 0;
  }

  .image-circle {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .image-circle img {
    width: 100%;
    height: 100%;
  }

  .service h3 {
    font-size: 22px;
  }

  .service p {
    font-size: 13px;
    padding: 0 10px;
  }

  .icon {
    font-size: 32px;
  }

  .plus-icon {
    width: 35px;
    height: 35px;
    font-size: 22px;
    bottom: -15px;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .service-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .flip-inner,
  .flip-front,
  .flip-back {
    width: 300px;
    height: 300px;
  }

  .service {
    width: 300px;
    height: 300px;
    margin: 20px;
  }

  .image-circle {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .image-circle img {
    width: 100%;
    height: 100%;
  }

  .service h3 {
    font-size: 24px;
  }

  .service p {
    font-size: 13px;
    padding: 0 12px;
  }

  .icon {
    font-size: 36px;
  }

  .plus-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
    bottom: -18px;
  }
}


@media (min-width: 1051px) and (max-width: 1450px) {
  .service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

  .service {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    margin: 14px;
  }

  .plus-icon {
    bottom: -17px;
    width: 50px;
    height: 50px;
    font-size: 31px;
    font-weight: 700;
  }

  .services h2 {
    font-size: 40px;
  }

  .services h6 {
    font-size: 20px;
  }

  .icon {
    /* padding: 10px; */
    font-size: 40px;
  }

  .service h3 {
    font-size: 26px;
  }

  .service p {
    font-size: 15px;
    padding: 20px;
  }
}

/* Process section */

@keyframes doubleFlip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.circle-icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.circle-icon:hover i {
  animation: doubleFlip 0.4s ease forwards;
  /* faster flip */
}

.process-section {
  text-align: center;
  padding: 60px 20px;
}

.process-section h6 {
  color: #e86724;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-section h2 {
  font-size: 44px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 50px;
}

.process-section .highlight-word {
  color: #e86724;
  font-style: italic;
}

.process-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  position: relative;
}

.circle-icon {
  width: 50%;
  height: 126px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.circle-icon.blue {
  font-size: 40px;
  background: linear-gradient(135deg, #005be2, #00d2ff);
}

.circle-icon.cyan {
  font-size: 40px;
  background: linear-gradient(135deg, #00d2ff, #0fd9a4);
}

.circle-icon.yellow {
  font-size: 40px;
  background: linear-gradient(135deg, #ffbb00, #ff7c00);
}

.circle-icon.purple {
  font-size: 40px;
  background: linear-gradient(135deg, #7b2ff7, #e100ff);
}

.step h3 {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: #555;
}

@media (min-width: 768px) and (max-width: 1050px) {
  .process-section h2 {
    font-size: 36px;
  }

  .circle-icon {
    width: 100px;
    height: 100px;
    font-size: 28px;
  }

  .step {
    max-width: 220px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
  }

  .process-container {
    gap: 30px;
    justify-content: space-evenly;
  }
}

@media (min-width: 1051px) and (max-width: 1450px) {
  .process-section h2 {
    font-size: 40px;
  }

  .circle-icon {
    width: 110px;
    height: 110px;
    font-size: 32px;
  }

  .step {
    max-width: 240px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 15px;
  }

  .process-container {
    gap: 35px;
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .process-section h2 {
    font-size: 28px;
  }

  .process-section {
    text-align: center;
    padding: 0px 20px;
  }

  .circle-icon {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }

  .step h3 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }

  .step {
    max-width: 100%;
  }
}


/* testimonial section */
.testimonial-card {
  width: 85%;
  height: 84%;
  border: none;
  padding: 62px 52px 100px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.4s;
  background: #fff;
  margin-bottom: 30px;
  transition: all 0.6s ease;
  position: relative;
  gap: 80%;
  column-gap: 74px;
  margin-left: 30px;
}


.testimonial-card:hover {
  transform: translateY(-25px);
}

.mt-3 {
  font-size: 18px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background: #e86724;
  transition: 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 0;
  visibility: hidden;
}


.testimonial-card:hover {
  background: #e86724;
  color: #fff;
  box-shadow: 0 10px 30px #e86724;
}

.testimonial-card:hover .position,
.testimonial-card:hover .quote-icon,
.testimonial-card:hover .social-badge {
  color: #fff;
}

.testimonial-card:hover .bottom-line {
  width: 50px;
  opacity: 1;
}

.quote-icon {
  font-size: 70px;
  position: absolute;
  top: -8%;
  left: 20px;
  opacity: 0.1;
}

.avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.social-badge {
  position: absolute;
  right: -5px;
  top: -5px;
  background: #e86724;
  color: #fff;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  z-index: 3;
}

.social-badge-1 {
  position: absolute;
  right: -5px;
  top: -5px;
  background: #a82da8;
  color: #fff;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  z-index: 3;
}

.avatar-wrapper i {
  font-size: medium;
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
}

.bottom-line {
  height: 4px;
  width: 0;
  margin: 10px auto 0;
  background: #fff;
  transition: 0.3s ease;
  border-radius: 4px;
  opacity: 0;
}

.position {
  font-size: 20px;
  color: #666;
}

.testimonial-section h2 {
  font-weight: 700;
  font-size: 44px;
  color: #000000;
}

.testimonial-section span {
  color: #e86724;
  font-style: italic;
}

@media (max-width: 767px) {
  .testimonial-card {
    width: 70%;
    padding: 40px 20px 60px;
    margin: 0 auto 30px;
    gap: unset;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-icon {
    font-size: 50px;
    top: -6%;
    left: 10px;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }

  .social-badge,
  .social-badge-1 {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .name {
    font-size: 20px;
  }

  .position {
    font-size: 16px;
  }

  .testimonial-section h2 {
    font-size: 24px;
  }

  .mt-3 {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .testimonial-card {
    width: 95%;
    padding: 50px 30px 80px;
    margin: 0 auto 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-icon {
    font-size: 60px;
    top: -6%;
    left: 15px;
  }

  .avatar {
    width: 90px;
    height: 90px;
  }

  .social-badge,
  .social-badge-1 {
    width: 35px;
    height: 35px;
    font-size: 11px;
  }

  .name {
    font-size: 16px;
  }

  .position {
    font-size: 14px;
  }

  .testimonial-section h2 {
    font-size: 28px;
  }

  .mt-3 {
    font-size: 13px;
  }
}

@media (min-width: 1050px) and (max-width: 1450px) {
  .testimonial-card {
    width: 90%;
    padding: 58px 45px 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .quote-icon {
    font-size: 65px;
    top: -7%;
    left: 18px;
  }

  .avatar {
    width: 95px;
    height: 95px;
  }

  .social-badge,
  .social-badge-1 {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .name {
    font-size: 20px;
    font-weight: bold;
  }

  .position {
    font-size: 18px;
  }

  .testimonial-section h2 {
    font-size: 44px;
  }

  #copy-text {
    color: #000;
    font-size: 14.5px;
  }
}

/* statistics section */
.number-section {
  background: #fff;
}

.angled-image-wrapper {
  transform: skewX(-10deg);
  overflow: hidden;
}

.angled-image {
  transform: skewX(10deg);
  width: 85%;
  height: auto;
  display: block;
}

.stat-box {
  background: none;
  padding: 10px 10px;
  text-align: center;
}

.stat-box h3 {
  text-align: left;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-box p {
  text-align: left;
  color: #000000;
  font-weight: 100;
  font-size: 21px;
  margin: 0;
}

.custom-btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: #e86724;
  box-shadow: 0 4px 10px #7e4a2f;
  border: none;
  transform: skewX(-20deg);
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (max-width: 767px) {
  .angled-image {
    height: auto;
    display: block;
  }

  .number-section {
    padding: 10px;
    background: #fff;
  }

  .custom-btn {
    font-size: 14px;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .col-12.text-center.mt-4 {
    display: flex;
    justify-content: center;
  }

  .number-section .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .number-section .row.g-4>.col-md-4.col-12 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .stat-box h3,
  .stat-box p {
    text-align: center;
  }

  .custom-btn {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: #e86724;
    border: none;
    transform: skewX(-20deg);
    transition: all 0.3s ease;
    text-decoration: none;
  }
}


/* contact section */
.contact-section {
  margin: 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.contact-info {
  flex: 1;
  background: url('../images/building.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: #fff;
  min-height: 100%;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-info-content h3 {
  color: #e86724;

}

.contact-info-content strong {
  color: #e86724;
}

.contact-info-content {
  top: 32%;
  position: relative;
  z-index: 1;
  background: #fff;
  color: #000;
  padding: 30px;
  max-width: 500px;
  width: 73%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-form {
  flex: 1;
  background: #e86724;
  padding: 50px;
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 45px;
  font-weight: bold;
}

.contact-form .contact-highlight {
  color: #000000;
  font-style: italic;
}

.subtext {
  font-size: 18px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input,
select,
textarea {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
}

textarea {
  height: 100px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
select {
  color: #ccc;
}

.form-row input {
  color: white;
}

.textarea {
  color: white;
}

.contact-btn {
  background: #000000;
  box-shadow: 0 4px 10px #362014;
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transform: skewX(-20deg);
  width: fit-content;
}

@media (max-width: 767px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-section {
    padding: 40px;
    /* padding: 40px; */
    margin: 0;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    width: 100%;
    padding: 30px 20px;
    min-height: auto;
  }

  .contact-info-content {
    width: 100%;
    padding: 15px;
    box-shadow: none;
  }

  .contact-form h2 {
    font-size: 32px;
    text-align: center;
  }

  .subtext {
    font-size: 16px;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  input,
  select,
  textarea {
    color: white;
    width: 100%;
    font-size: 15px;
  }

  .contact-btn {
    align-self: center;
    width: 100%;
    padding: 14px 0;
    transform: none;
    /* Remove skew on mobile for better UX */
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    width: 100%;
    /* padding: 40px 30px; */
    min-height: auto;
  }

  .contact-info-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
  }

  .contact-form h2 {
    font-size: 38px;
    text-align: center;
  }

  .subtext {
    font-size: 17px;
    text-align: center;
    margin-bottom: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  input,
  select,
  textarea {
    color: white;
    width: 100%;
    font-size: 16px;
  }

  .contact-btn {
    align-self: center;
    width: 60%;
    padding: 14px 0;
    font-size: 16px;
    transform: skewX(-10deg);
  }

  .form-row {
    display: flex;
    flex-direction: row;
    /* Ensures two columns */
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (min-width: 1051px) and (max-width: 1450px) {
  .contact-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 50%;
    padding: 50px 40px;
    min-height: auto;
  }

  .contact-info-content {
    margin: 0 auto;
    padding: 15px;
  }

  .contact-form h2 {
    font-size: 45px;
  }

  .subtext {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
  }

  .form-row input,
  .form-row select {
    flex: 1;
    min-width: calc(50% - 10px);
  }

  textarea {
    color: white;
    width: 100%;
  }

  .contact-btn {
    width: fit-content;
    padding: 14px 32px;
    font-size: 16px;
    transform: skewX(-10deg);
  }
}

/* Product section */
.product-slider-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
}

.swiper {
  padding: 0 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card {
  position: relative;
  overflow: hidden;
  width: 86%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 70%;
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 2;
}

.product-card:hover .overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.overlay h5 {
  font-weight: 700;
  color: #e86724;
  margin-bottom: 10px;
}

.overlay p {
  text-align: left;
  color: #555;
  font-size: 18px;
  margin-bottom: 20px;
}

.plus-btn {
  width: 45px;
  height: 45px;
  background: #e86724;
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  padding-bottom: 7px;
}

.custom-nav-btn {
  background-color: #dbdde1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev.custom-nav-btn {
  left: 10px;
}

.swiper-button-next.custom-nav-btn {
  right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: 900;
  color: #000;
}

.swiper-button-next.custom-nav-btn:hover,
.swiper-button-prev.custom-nav-btn:hover {
  background-color: #e86724;
}

@media (max-width: 767px) {
  .product-slider-section {
    padding: 30px 0;
  }

  .swiper {
    padding: 0 20px;
  }

  .product-card {
    width: 100%;
  }

  .overlay {
    width: 90%;
    padding: 20px 15px;
    transform: translate(-50%, -55%);
  }

  .overlay h5 {
    font-size: 34px;
    text-align: left;

  }

  .overlay p {
    font-size: 13px;
  }

  .plus-btn {
    width: 40px;
    height: 40px;
    font-size: 30px;
    padding-bottom: 5px;
  }

  .custom-nav-btn {
    width: 50px;
    height: 50px;
  }

  .swiper-button-prev.custom-nav-btn {
    left: 0;
  }

  .swiper-button-next.custom-nav-btn {
    right: 0;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 16px;
  }
}

@media (min-width: 767px) and (max-width: 1050px) {
  .product-slider-section {
    padding: 40px 0;
  }

  .swiper {
    padding: 0 40px;
  }

  .product-card {
    width: 90%;
  }

  .overlay {
    width: 80%;
    padding: 25px 18px;
  }

  .overlay h5 {
    font-size: 17px;
  }

  .overlay p {
    font-size: 14px;
  }

  .plus-btn {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .custom-nav-btn {
    width: 65px;
    height: 65px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 18px;
  }
}

@media (min-width: 1050px) and (max-width: 1450px) {
  .product-slider-section {
    padding: 50px 0;
  }

  .swiper {
    padding: 0 50px;
  }

  .product-card {
    width: 85%;
  }

  .overlay {
    width: 75%;
    padding: 30px 20px;
  }

  .overlay h5 {
    font-size: 34px;
    text-align: left;
  }

  .overlay p {
    font-size: 15px;
  }

  .plus-btn {
    width: 45px;
    height: 45px;
    font-size: 34px;
  }

  .custom-nav-btn {
    width: 75px;
    height: 75px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 20px;
  }
}

/* company section */
.company-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.company-logos {
  padding-bottom: 60px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
}

.logo-box {
  width: 180px;
  height: 95px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box img {
  max-width: 100px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.logo-box:hover img {
  opacity: 1;
}

/* FOOTER section */

.footer-logo-img {
  height: 50px;
  width: 70%;
  vertical-align: middle;
}

.footer-dark {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.footer-dark a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.footer-dark a:hover {
  color: #e86724;
}

.footer-dark h6 {
  color: #000;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
}

.footer-dark ul li {
  margin-bottom: 8px;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #e86724;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  z-index: 999;
  line-height: 40px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

