body {
  scroll-behavior: smooth;
  font-family: "mont" !important;
  font-weight: 500;
}

a {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

/* fonts used */
@font-face {
  font-family: "mont";
  src: url("fonts/Montserrat-VariableFont_wght_0.ttf") format("truetype");
}

@font-face {
  font-family: "myriad";
  src: url("fonts/MyriadPro-Regular.otf") format("opentype");
}

/* font sizes */
.d-none {
  font-size: 0.9dvw;
}
.d-block {
  font-size: 3.5dvw;
}
h5 {
  font-size: 1.05dvw;
  font-weight: 700;
}
h6 {
  font-size: 3dvw;
  font-weight: 700;
}
h4 {
  font-size: 3.5dvw;
  line-height: 3dvw;
  font-weight: 700;
}

.heading {
  font-size: 2dvw;
  font-weight: 700;
  padding-bottom: 1.5dvw;
  font-family: "mont";
}
.heading-mob {
  font-size: 6dvw;
  font-weight: 700;
  padding-bottom: 3dvw;
  font-family: "mont";
}
.heading-alt {
  font-size: 1.2dvw;
  font-weight: 600;
  font-family: "mont";
}
.heading-alt-mob {
  font-size: 4dvw;
  font-weight: 600;
  font-family: "mont";
}

/* buttons */
.btn-contact {
  background-color: #067bf0;
  color: white;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* width elements */
.w-30 {
  width: 30%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
  padding-bottom: 1dvw;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}

/* Navbar */
.navbar {
  background: #efeded;
  position: sticky;
  padding-inline: 1dvw;
  z-index: 3;
}
.navbar-item {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-size: 1.2dvw;
  font-weight: 500;
}
.btn-nav {
  background-color: #067bf0;
  border-radius: 10dvw;
  font-weight: 500;
  font-size: 1.1dvw;
  color: white !important;
  font-family: "mont";
  transition: transform 0.2s;
}
.btn-nav:hover {
  background-color: #067bf0;
  transform: scale(1.02);
  border-radius: 10dvw;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  background-color: #067bf0;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding-top: 6px;
}

/* navbar hover animation */
.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 95%;
  transform: scaleX(0);
  height: 2px;
  bottom: -5px;
  left: 2.5%;
  background-color: #000;
  transition: transform 0.25s ease-out;
  transform-origin: bottom center;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}
/* 
.hover-underline-animation::after {
}

.hover-underline-animation:hover::after {
} */

/* sidebar menu */
.sidebar {
  position: fixed;
  top: 0;
  z-index: 3;
  right: -350px; /* initially hidden */
  width: 350px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.5s ease-in-out;
  padding-top: 50px;
  padding-left: 20px;
  z-index: 1000;
}
.sidebar a {
  display: block;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
}
.sidebar a:hover {
  background: #f4f4f4;
  color: #067bf0 !important;
}
.sidebar .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
  cursor: pointer;
}

/* sidebar overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* get in touch banner button */
#get-in-touch .d-none {
  position: relative;
  top: -9dvw;
  padding-left: 10dvw;
  z-index: 2;
}

/* logos slider */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slider {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.logos {
  overflow: hidden;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logo-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
}
.logo-slider {
  display: inline-block;
  animation: 25s slider infinite linear;
}

.logo-slide img {
  height: 70px;
  margin: 0 30px;
}
.logo-slider img {
  height: 70px;
  margin: 0 30px;
}

.logos:hover .logo-slide {
  animation-play-state: paused;
}
.logos:hover .logo-slider {
  animation-play-state: paused;
}

/* our services */
.services-block {
  background-color: #ffd700;
  border-radius: 30px;
  padding-bottom: 1.5dvw;
  padding-top: 1dvw;
}
.services-block-mob {
  background-color: #ffd700;
  border-radius: 30px;
  padding-bottom: 1.5dvw;
  padding-top: 1dvw;
  margin-block: 8px;
}

/* how we work */
.process-step {
  border: 2px solid #ffd700;
  border-radius: 50px;
  padding-block: 2dvw;
  padding-inline: 1dvw;
  background: white;
  flex: 1; /* equal width */
  min-width: 200px; /* to make it responsive */
  height: 100%; /* same height */
  transition: transform 0.5s;
}
.process-step-mob {
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding-block: 3dvw;
  padding-inline: 0.5dvw;
  background: white;
  transition: transform 0.5s;
}
.process-step:hover {
  transform: scale(1.02);
}
.process-step-mob:hover {
  transform: scale(1.02);
}
.process-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* same height */
  flex-wrap: nowrap; /* single row */
  height: 20dvw;
  /* padding: 10px; */
}
.arrow {
  max-width: 1.5dvw;
  align-self: center;
}
.arrow-mob img {
  width: 10%;
  align-self: center;
}

/* client testimonials */
.headline {
  font-size: 1.15dvw;
  font-weight: 700;
}
.headline-mob {
  font-size: 3.5dvw;
  font-weight: 700;
}

.client-slide {
  padding-inline: 3dvw;
}
.testimonial-box {
  background-color: #f6f7f7;
  border-radius: 60px;
  padding-block: 2.5dvw;
  padding-inline: 4dvw;
  font-size: 0.9dvw;
  min-height: 20dvw;
}
.testimonial-box-mob {
  background-color: #f6f7f7;
  border-radius: 30px;
  padding-block: 2.5dvw;
  padding-inline: 4dvw;
  font-size: 3dvw;
  min-height: 20dvw;
}

.reviews {
  /* background-color: #f6f7f7; */
  /* box-shadow: rgba(0, 0, 0, 0.1) 2px 6px 10px; */
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

/* blog */
.arrow-white {
  max-width: 1.5dvw;
  align-self: center;
}
.arrow-white-mob {
  max-width: 6dvw;
  align-self: center;
}
.blog-box {
  height: 27dvw;
  overflow: hidden;
}
.blog-box-mob {
  height: 90dvw;
  overflow: hidden;
}
.blog-content {
  border: #ffd700 2px solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 10dvw;
  padding-block: 1dvw;
  padding-inline: 2dvw;
  font-size: 1.1dvw;
  font-weight: 600;
  position: relative;
}
.blog-content-mob {
  border: #ffd700 2px solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 27dvw;
  padding-block: 1dvw;
  padding-inline: 2dvw;
  font-size: 3.5dvw;
  font-weight: 600;
  position: relative;
}
.blog-box:hover .blog-content {
  bottom: 9dvw; /* slide up on hover */
}
.blue {
  color: #067bf0;
}
.red {
  color: #dd372b;
}
.read-more {
  margin-top: 1dvw;
  position: absolute;
  bottom: 1dvw;
}
.read-more-mob {
  /* margin-top: 1dvw; */
  position: absolute;
  bottom: 2dvw;
}
.read-more a {
  text-decoration: none;
  color: #dd372b;
  font-size: 0.8dvw;
}
.read-more-mob a {
  text-decoration: none;
  color: #dd372b;
  font-size: 3dvw;
}
.arrow-red {
  max-width: 1dvw;
  align-self: center;
}
.arrow-red-mob {
  max-width: 5dvw;
  align-self: center;
}

/* case studies */
.case-box {
  height: 25dvw;
}
.case-box-mob {
  height: 77dvw;
}
.case-box-mob > img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* height: 60dvw; */
  aspect-ratio: 1.6;
}
.case-box > img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* height: 18dvw; */
  aspect-ratio: 1.6;
}
.case-content {
  border: #ffd700 2px solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 10dvw;
  padding-block: 1dvw;
  padding-inline: 2dvw;
  font-size: 1.1dvw;
  font-weight: 600;
  position: relative;
}
.case-content-mob {
  border: #ffd700 2px solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 25dvw;
  padding-block: 1dvw;
  padding-inline: 2dvw;
  font-size: 3.5dvw;
  font-weight: 600;
  position: relative;
}

/* contact-us */
.contact-head {
  font-size: 1.25dvw;
  font-weight: 600;
}
.contact-head-mob {
  font-size: 4.5dvw;
  font-weight: 600;
}
.contact-text-mob {
  font-size: 3dvw;
  font-weight: 500;
}

/* footer */
#footer {
  background-color: #221f20;
  color: white;
}
.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 1dvw;
  font-weight: 600;
}
.footer-links-mob a {
  text-decoration: none;
  color: white;
  font-size: 3.5dvw;
  font-weight: 600;
}
.footer-i {
  width: 2dvw;
}
.footer-i-mob {
  width: 10dvw;
}
.footer-end a {
  text-decoration: none;
  font-weight: 500;
  color: white;
}

/* forms */
.form-control {
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  background: transparent;
}
.form-control:focus {
  border-color: #dd372b;
}
.form-group {
  padding-block: 10px;
}

.submit-btn {
  cursor: pointer;
  background-color: #dd372b !important;
  border-radius: 50px;
  opacity: 1;
  font-family: "mont";
  font-weight: 500;
  font-size: 1rem;
  color: #fff !important;
  transition: transform 0.2s;
}
.submit-btn:hover {
  transform: scale(1.02);
}

.form-control:focus {
  box-shadow: none;
  background: transparent;
}

.list-unstyled {
  margin-bottom: 0;
}

#form-pop {
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: #067bf0;
  border-radius: 35px;
  margin-left: 5px;
  z-index: 15;
  transform-origin: bottom right;
  position: fixed;
  right: 2dvh;
  bottom: 2dvh;
  transition: transform 0.3s;
}
#form-pop:hover {
  transform: scale(1.2);
}
#form-pop p {
  color: #fff;
  font-weight: 500;
  padding: 12px;
  display: inline-block;
  cursor: pointer;
}

/* About Us */

/* Our Core Values */
.core-heading {
  height: 3.5dvw;
}

.core-content {
  height: 9dvw;
  vertical-align: middle;
  font-size: 0.85dvw;
}

.core-heading-mob {
  font-size: 4.5dvw;
  line-height: 6dvw;
  padding-bottom: 3dvw;
}

/* .core-content-mob {
} */

/* Our Team */
.team-box {
  /* height: 38dvw; */
}
.team-box-mob {
  /* height: 85dvw; */
}
.team-box-mob > img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* height: 60dvw; */
  aspect-ratio: 55/40;
}
.team-box > img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* height: 28dvw; */
  aspect-ratio: 55/40;
  /* max-height: 28dvw; */
}
.team-content {
  border: #ffd700 2px solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 8dvw;
  padding-block: 1dvw;
  padding-inline: 2dvw;
  font-size: 1.1dvw;
  font-weight: 600;
  position: relative;
}
.team-content-mob {
  border: #ffd700 2px solid;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 25dvw;
  padding-block: 1dvw;
  padding-inline: 2dvw;
  font-size: 3.5dvw;
  font-weight: 600;
  position: relative;
}

.team-info {
  font-size: 0.95dvw;
  font-weight: 500;
}

.team-info-mob {
  font-size: 3dvw;
  font-weight: 500;
}

/* page-id-top */

.page-id {
  padding-top: 1.5dvh;
  font-size: 1.5dvh;
  color: #616161;
  font-weight: 600;
}
.page-id a {
  text-decoration: none;
  color: #616161;
}
.page-id a:hover {
  text-decoration: underline;
  text-decoration-color: #dd372b;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4dvh;
}

.page-id-under {
  text-decoration: underline;
  text-decoration-color: #dd372b;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4dvh;
}

/* reviews */

.review-stars {
  color: #ffd700;
}

.review-block {
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 12px;
}
.review-content {
  min-height: 18.5dvh;
}
.review-about {
  height: 7dvh;
}
.verified {
  color: #6b7577;
}

.mobile-sticky {
  position: fixed;
  bottom: 0;
  z-index: 10;
  height: 8dvh;
  font-size: 3dvh;
  padding-block: 1.8dvh;
  text-decoration: none;
  color: #fff;
  background-color: #dd372b;
  opacity: 1;
}

/* Current Openings */
.opening-box {
  background-color: #ffd700;
}
.opening-heading {
  font-weight: 600;
  font-size: 1.1dvw;
}
.opening-heading-mob {
  font-weight: 600;
  font-size: 4.2dvw;
}

.read-more1 a {
  color: #dd372b;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s;
}

.opening-border {
  border: 3px solid #ffd700;
}

/* Blogs Page */

/* Load more button */
.load-more {
  background-color: #ffd700;
  padding-block: 1.5dvh;
  font-size: 1.2dvw;
  font-weight: 600;
  border-radius: 25px;
}
.load-more-mob {
  font-size: 3.2dvw;
}
.load-more:hover {
  background-color: #ffe862;
}

.heading-blogs {
  font-size: 2.8dvw;
  line-height: 3.5dvw;
  font-weight: 700;
}
.heading-blogs-mob {
  font-size: 6dvw;
  line-height: 8dvw;
  font-weight: 600;
}

.btn-filter {
  /* border: 1px solid black; */
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 12px;
  border-radius: 25px;
  font-size: 1dvw;
  font-weight: 600;
  margin: 5px;
  margin-bottom: 10px;
}

.btn-filter-mob {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 12px;
  border-radius: 25px;
  font-size: 3.5dvw;
  font-weight: 600;
  margin: 5px;
}

.blog-item {
  transition: transform 0.4s, box-shadow 0.4s;
  border-radius: 20px;
}
.blog-item:hover {
  box-shadow: 0 9px 0px 0px #f6f7f7, 0 -9px 0px 0px #f6f7f7,
    12px 0 15px -4px rgba(31, 73, 125, 0.2),
    -12px 0 15px -4px rgba(31, 73, 125, 0.2);

  transform: scale(1.01);
}

.btn-filter:hover {
  color: #067bf0;
}

.btn-filter.active {
  background-color: #067bf0;
  color: #fff;
}

.btn-filter-mob:hover {
  color: #067bf0;
}

.btn-filter-mob.active {
  background-color: #067bf0;
  color: #fff;
}

/* individual blog pages */
@media (min-width: 769px) {
  .blog-heading {
    font-size: 3dvw;
    font-weight: 500;
  }
  .b-heading {
    font-size: 1.15dvw;
    font-weight: 600;
  }
  .b-alt {
    font-size: 1dvw;
    font-weight: 600;
  }
  .blog-text {
    font-size: 0.9dvw;
  }
  .b-alt2 {
    text-decoration: none;
    color: black;
    font-size: 1dvw;
    font-weight: 700;
  }
}
@media (max-width: 768px) {
  .blog-heading {
    font-size: 5.5dvw;
    font-weight: 500;
  }
  .b-heading {
    font-size: 5dvw;
    font-weight: 600;
  }
  .b-alt {
    font-size: 4dvw;
    font-weight: 600;
  }
  .blog-text {
    font-size: 3.5dvw;
  }
}

.text-start {
  color: black;
}
.text-end {
  color: black;
}

#footer .text-end {
  color: #fff;
}

/* Enable dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0px;
  left: -9.5dvw;
  background-color: #efeded;
  border: none;
  width: 27dvw;
  border-radius: 15px;
  padding-inline: 0.5dvw;
}

/* Optional: Prevent flickering when hovering between link and dropdown */
.dropdown-menu {
  margin-top: 0.5rem;
  transition: opacity 0.2s ease-in-out;
}

.dropdown-item {
  padding: 0.5dvw;
  border-radius: 10px;
  font-weight: 500;
}
.dropdown-item:hover {
  background-color: #fff;
}

/* dropdown service mobile */
/* CSS (drop-mob prefixed to avoid conflicts) */
.drop-mob {
  position: relative;
}

/* make links look like sidebar items */
.sidebar a,
.drop-mob-toggle {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}

/* arrow indicator on the toggle */
.drop-mob-toggle {
  position: relative;
  cursor: default; /* it's hover-driven */
}
.drop-mob-toggle::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

/* hidden dropdown (smooth) */
.drop-mob-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.18s ease;
  padding-left: 12px; /* optional indent */
}

/* dropdown link style */
.drop-mob-content a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: inherit;
}

/* show on hover OR keyboard focus (accessibility) */
.drop-mob:hover .drop-mob-content,
.drop-mob:focus-within .drop-mob-content {
  max-height: 400px; /* large enough to show all items */
  opacity: 1;
}

/* flip arrow on open */
.drop-mob:hover .drop-mob-toggle::after,
.drop-mob:focus-within .drop-mob-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

/* tables */

table,
th,
td {
  border: 1px solid;
  padding: 16px;
}

/* quality box */
.quality-block {
  background-color: #fff;
  border: 2px solid #ffd700;
  border-radius: 30px;
  padding-bottom: 1.5dvw;
  padding-top: 1dvw;
  font-size: 1dvw;
  font-weight: 600;
}
.quality-block-mob {
  background-color: #fff;
  border: 2px solid #ffd700;
  border-radius: 30px;
  padding-bottom: 1.5dvw;
  padding-top: 1dvw;
  margin-block: 8px;
  font-size: 4.5dvw;
  font-weight: 600;
}
#accel .quality-block,
#accel .quality-block-mob {
  background-color: #f6f7f7;
}

.left-bord {
  border-right: 3dvw solid #ffd700;
  border-radius: 2dvw;
  height: 55dvh;
  top: 10dvh;
  left: -5dvw;
  position: relative;
}

.right-bord {
  border-left: 3dvw solid #ffd700;
  border-radius: 2dvw;
  height: 55dvh;
  top: 10dvh;
  overflow: hidden;
  right: -5dvw;
  position: relative;
}
