/* Flex utilities */

.border {
  border: 0px solid transparent !important;
}
.flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.flex {
  display: flex !important;
}

.items-center {
  align-items: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

/* Padding and margin utilities */
.pt-24 {
  padding-top: 6rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

/* Cursor utilities */
.cursor-pointer {
  cursor: pointer !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

/* Display utilities */
.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.grid {
  display: grid !important;
}

/* Position utilities */
.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-30 {
  top: -100px !important;
}

.top-250 {
  top: 270px !important;
}

.left-0 {
  left: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

/* Width and height utilities */
.w-full {
  width: 100% !important;
}

.w-fit {
  width: fit-content !important;
}

.h-full {
  height: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

/* Text utilities */
.text-center {
  text-align: center !important;
}

.text-black {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-lime {
  color: #ccff33 !important;
}

/* Text size utilities */
.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.content-font {
  font-size: 0.875rem !important;
  line-height: 1.4rem !important;
}

.sub-title-font {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.title-font {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

.text-5xl {
  font-size: 3rem !important;
  line-height: 1 !important;
}

.text-8xl {
  font-size: 3rem !important;
  font-weight: 400;
}

/* Font weight utilities */
.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

/* Border utilities */
.rounded {
  border-radius: 0.25rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.border {
  border-width: 1px !important;
}

/* Shadow utilities */
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

/* Opacity utilities */
.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

/* Transition utilities */
.transition {
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.hover-scale:hover {
  transform: scale(1.05) !important;
}

/* Z-index utilities */
.z-50 {
  z-index: 50 !important;
}

input:focus {
  border-color: #b4e02e !important; /* Adjust color for focus effect */
  /* box-shadow: 0 1px 5px rgba(135, 209, 23, 0.826); */
}

input {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15) !important;
}

.footer-icon {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  transition: all;
  /* animation-duration: 1500ms; */
  color: black;
  transition: ease-in-out;
  transition-duration: 150ms;
}

.footer-icon:hover {
  scale: 105%;
  color: #b4e02e;
}

/* Button styles */
.btn-primary {
  background-color: white !important;
  color: black !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-align: center !important;
  text-transform: uppercase !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  font-size: 14px !important;
}

.btn-primary:hover {
  background-color: #ccff33 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Button styles */
.btn-primary2 {
  background-color: black !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-align: center !important;
  text-transform: uppercase !important;
  border: 2px solid transparent !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.btn-primary2:hover {
  background-color: #ccff33 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.btn-primary2:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.text-xl-md {
  font-size: 16px !important;
}

.btn-secondary {
  background-color: transparent !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-align: center !important;
  text-transform: uppercase !important;
  border: 2px solid white !important;
  transition: all 0.3s ease !important;
}

.btn-secondary:hover {
  background-color: white !important;
  color: black !important;
  transform: translateY(-2px) !important;
}

.md-pt-100 {
  padding-top: 4rem !important;
}

.footer-web-visible {
  display: none;
}
.footer-mobile-visible {
  display: flex !important;
}

/* Services Slider Styles */
.services-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

/* .services-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  padding: 10px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;

} */

.services-slide {
  flex: 0 0 auto;
  width: calc(25% - 22.5px); /* Accounting for 30px gap between 4 items */
  min-width: 220px;
  position: relative;
  user-select: none;
}

.services-slide-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-slide-inner:hover {
  transform: translateY(-10px);
}

.services-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.services-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* padding: 20px; */
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.services-slide-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.services-slide-arrow {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.services-slide-inner:hover .services-slide-arrow {
  transform: translateX(5px);
}

.services-slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.services-slider-prev,
.services-slider-next {
  background: transparent;
  border: 1px solid #222;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.services-slider-prev:hover,
.services-slider-next:hover {
  background-color: #222;
  color: white;
}

.services-slider-prev:disabled,
.services-slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .services-slide {
    width: calc(33.333% - 20px); /* 3 items with 30px gap */
  }
}

@media (max-width: 991px) {
  .services-slide {
    width: calc(50% - 15px); /* 2 items with 30px gap */
  }
}

@media (max-width: 767px) {
  .services-slide {
    width: 100%; /* 1 item full width */
  }
  .services-slider {
    gap: 20px; /* Slightly smaller gap on mobile */
  }
}

/* Strategy Section Styles */
.strategy-section {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.strategy-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-color: #ccff33;
  z-index: -1;
}

.strategy-row {
  display: flex;
  align-items: center;
}

.strategy-image-col {
  padding-right: 30px;
  position: relative;
}

.strategy-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

.strategy-image:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 80%;
  /* background: rgba(204, 255, 51, 0.2); */
  z-index: -1;
}

.strategy-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.strategy-content-col {
  padding-left: 30px;
}

.strategy-content {
  padding: 20px 0;
}

.strategy-label {
  display: inline-block;
  background-color: #ccff33;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 15px;
  margin-bottom: 20px;
}

.strategy-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.strategy-highlight {
  position: relative;
  z-index: 1;
  color: #000;
}

.strategy-highlight-secondary {
  position: relative;
  z-index: 1;
  color: #000;
}

.strategy-text {
  color: #333;
  margin-top: 20px;
}

.strategy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.strategy-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--tp-ff-p);
  color: var(--tp-text-body);
}

.strategy-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

/* Media queries */
@media (min-width: 768px) {
  .md-pt-100 {
    padding-top: 25rem !important;
  }

  .text-xl-md {
    font-size: 18px !important;
  }

  .content-font {
    font-size: 1rem;
    line-height: 1.7rem !important;
  }

  .sub-title-font {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .title-font {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .footer-web-visible {
    display: block;
  }

  .footer-mobile-visible {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .lg-text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .lg-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lg-pb-12 {
    padding-bottom: 3rem !important;
  }

  .w-lg-70 {
    width: 70% !important;
  }
}

@media (min-width: 1401px) and (max-width: 1536px) {
  .mt-top-140 {
    margin-top: 155px !important;
  }
}

@media (min-width: 1536px) {
  .xl2-text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .xl2-py-30 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .xl2-pb-30 {
    padding-bottom: 7.5rem !important;
  }
}

@media (max-width: 1200px) {
  .lgg-mt {
    padding-top: 20px !important;
  }
}

/* Section and Title spacing */
.p-section-top {
  padding-top: 50px !important;
}

.p-section-bottom {
  padding-bottom: 50px !important;
}

.p-title-top {
  padding-top: 30px !important;
}

.p-title-bottom {
  padding-bottom: 30px !important;
}

/* Responsive spacing */
@media (min-width: 640px) {
  /* sm */
  .p-section-top {
    padding-top: 60px !important;
  }

  .p-title-top {
    padding-top: 30px !important;
  }

  .p-section-bottom {
    padding-bottom: 60px !important;
  }

  .p-title-bottom {
    padding-bottom: 30px !important;
  }
}

@media (min-width: 768px) {
  /* md */
  .p-section-top {
    padding-top: 70px !important;
  }

  .p-title-top {
    padding-top: 40px !important;
  }

  .p-section-bottom {
    padding-bottom: 70px !important;
  }

  .p-title-bottom {
    padding-bottom: 40px !important;
  }
}

@media (min-width: 1024px) {
  /* lg */
  .p-section-top {
    padding-top: 105px !important;
  }

  .p-title-top {
    padding-top: 60px !important;
  }

  .p-section-bottom {
    padding-bottom: 80px !important;
  }

  .p-title-bottom {
    padding-bottom: 60px !important;
  }
}

@media (min-width: 1280px) {
  /* xl */
  .p-section-top {
    padding-top: 90px !important;
  }

  .p-section-bottom {
    padding-bottom: 90px !important;
  }

  .p-title-top {
    padding-top: 60px !important;
  }

  .p-title-bottom {
    padding-bottom: 60px !important;
  }
}

@media (min-width: 1536px) {
  /* 2xl */
  .p-section-top {
    padding-top: 120px !important;
  }

  .p-section-bottom {
    padding-bottom: 100px !important;
  }

  .p-title-top {
    padding-top: 50px !important;
  }

  .p-title-bottom {
    padding-bottom: 70px !important;
  }
}

p {
  padding: 0 !important;
  margin: 0 !important;
}

.bg-red {
  background-color: red !important;
}

/* Ensure border radius on all service images */
.services-slide-inner,
.services-slide-inner *,
.services-slide,
.services-slide *,
.services-slider-container img {
  border-radius: 0 !important;
}

.services-slide-inner {
  position: relative;
  overflow: hidden;
  height: 580px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-slide-inner img {
  width: 100%;
  height: calc(100% - 60px);
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.services-slide-content {
  position: relative;
  width: 100%;
  height: 60px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  background: #fff;
  z-index: 2;
}

/* Ensure proper nesting of border radius */
.services-slide {
  overflow: hidden;
}

.services-slider {
  overflow: visible;
  padding: 10px;
}

/* Force border radius on any nested images */
.services-slide img,
.services-slide-inner img,
.services-slider img,
.services-slider-container img,
#services img {
  border-radius: 0 0 0 0 !important;
}

/* Preview Cards Styles */
.preview-card {
  width: 308px;
  margin: 0 300px;
  height: 320px;
}

.preview-card:nth-child(1) {
  height: 480px;
}

.preview-card:nth-child(2) {
  height: 438px;
}

.preview-card:nth-child(3) {
  height: 486px;
}

.preview-card:nth-child(4) {
  height: 500px;
}

.preview-card:nth-child(5) {
  height: 320px;
}

.preview-card:nth-child(6) {
  height: 320px;
}

.preview-card:nth-child(7) {
  height: 320px;
}

.preview-card:nth-child(8) {
  height: 320px;
}

.preview-card:nth-child(9) {
  height: 320px;
}

.preview-card:nth-child(10) {
  height: 320px;
}

.preview-card:nth-child(11) {
  height: 320px;
}

.preview-card:nth-child(12) {
  height: 320px;
}

.preview-card:nth-child(13) {
  height: 320px;
}

.preview-card:nth-child(14) {
  height: 320px;
}

.preview-card:nth-child(15) {
  height: 320px;
}

.preview-card:nth-child(16) {
  height: 320px;
}

.preview-card:nth-child(17) {
  height: 320px;
}

.preview-card:nth-child(18) {
  height: 320px;
}

.preview-card:nth-child(19) {
  height: 320px;
}

.preview-card:nth-child(20) {
  height: 620px;
}
