:root {
  --font-display: "Bricolage Grotesque";
  --font-body: "Poppins";

  /* FONT SIZES - DESKTOP */
  --h1-desktop: 100px;
  --h2-desktop: 80px;
  --h3-desktop: 46px;
  --h4-desktop: 30px;
  --h5-desktop: 22px;
  --subtitle-desktop: 14px;
  --caption-desktop: 18px;
  --paragraph-desktop: 18px;

  /* FONT SIZES - MOBILE */
  --h1-mobile: 70px;
  --h2-mobile: 40px;
  --h3-mobile: 28px;
  --h4-mobile: 22px;
  --h5-mobile: 20px;
  --subtitle-mobile: 18px;
  --caption-mobile: 16px;
  --paragraph-mobile: 16px;

  /* COLORS */
  --color-blue: #0279ff;
  --color-orange: #ff6b3d;
  --color-black: #101010;
  --color-yellow: #ffce59;
  --color-white: #ffffff;

  /* FONT WEIGHT */

  --weight-300: 300;
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;
  --weight-800: 800;
  --weight-900: 900;
}

/* ===========================
   GLOBAL RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden !important;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1 {
  font-family: var(--font-display);
  font-size: var(--h1-desktop);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--h2-desktop);
}

h3 {
  font-family: var(--font-body);
  font-size: var(--h3-desktop);
}

h4 {
  font-size: var(--h4-desktop);
  font-family: var(--font-display);
}

h5 {
  font-size: var(--h5-desktop);
  font-family: var(--font-body);
}

.subtitle {
  font-size: var(--subtitle-desktop);
  font-family: var(--font-body);
}

.caption {
  font-size: var(--caption-desktop);
  font-family: var(--font-body);
}

p {
  font-family: var(--font-body);
  font-size: var(--paragraph-desktop);
}


.btn-white-submit {
  background-color: var(--color-white);
  color: var(--color-orange);
    border: 2px solid var(--color-orange) !important;
  font-weight: var(--weight-700);
  font-size: 16px;
  line-height: 16px;
  padding: 11px 45px;
  text-decoration: none;
  border-radius: 92.54px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}

.btn-white-submit:hover {
  border: 2px solid var(--color-orange) !important;
  background-color: var(--color-orange);
  color: var(--color-white);
}






.btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn span {
  transition: all 0.3s ease;
}

/* ===========================
       ICON ON HOVER (Only for blue & orange)
    =========================== */
.btn-blue::after,
.btn-orange::after {
  content: "→";
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas-header {

  justify-content: end !important;

}

.btn-blue:hover::after,
.btn-orange:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.8);
}

.btn-blue:hover span,
.btn-orange:hover span {
  opacity: 0;
  visibility: hidden;
}

/* ===========================
       BLUE BUTTON
    =========================== */
.btn-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.btn-blue:hover {
  background-color: transparent;
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
}

.btn-blue:hover::after {
  color: var(--color-blue);
}

/* ===========================
       ORANGE BUTTON   
    =========================== */
.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-orange:hover {
  background-color: transparent;
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
}

.btn-orange:hover::after {
  color: var(--color-orange);
}

/* ===========================
       ORANGE OUTLINE BUTTON (No icon)
    =========================== */
.btn-orange-outline {
  background-color: var(--color-orange);
  color: var(--color-white);
  font-weight: var(--weight-700);
  font-size: 16px;
  line-height: 16px;
  padding: 11px 45px;
  text-decoration: none;
  border-radius: 92.54px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-orange-outline:hover {
  border: 2px solid var(--color-orange) !important;
  background-color: #fff;
  color: var(--color-orange);
}

.btn-white-outline {
  background-color: var(--color-white);
  color: var(--color-orange);
  font-weight: var(--weight-700);
  font-size: 16px;
  line-height: 18px;
  padding: 11px 45px;
  text-decoration: none;
  border-radius: 92.54px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  border: 2px solid var(--color-white);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
}

.mobile-submenu.show {
  display: flex;
}

.dropdown-toggle::after {
  border: none !important;
}

.ser-btn {
  margin-top: 40px !important;
  margin-bottom: 30px !important;
}


.btn-white-outline:hover {
  border: 2px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}




.small-cta-margin {
  margin: 80px 0px 5px;
  height: 80px;
  display: flex;
  align-items: center;
}

.long-cta {
  margin-top: 150px !important;
}

.section-margin {
  margin: 100px 0px 5px !important;
}

.case-study-slider {
  height: calc(100vh - 80px);
  margin: 0 0 -100px;

}



.btn-blue-outline {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: var(--weight-700);
  font-size: 18px;
  line-height: 18px;
  padding: 12px 45px;
  text-decoration: none;
  border-radius: 53.33px;
  font-family: var(--font-display);
  border: 2px solid var(--color-blue);

}



.btn-blue-outline:hover {
  font-size: 18px;
  padding: 12px 45px !important;
  border: 2px solid var(--color-blue);
  background-color: #fff;
  color: var(--color-blue);
}

.btn-submit-icon {
  border: 2px solid var(--color-orange);
  background-color: #fff;
  font-weight: var(--weight-700);
  font-size: 18px;
  line-height: 100%;
  padding: 9px 34px;
  text-decoration: none;
  border-radius: 92.54px;
  color: var(--color-orange);

}

.btn-submit-icon:hover {

  background-color: var(--color-orange);

  color: var(--color-white);
}

/* ===========================
       BLACK BUTTON (No icon)
    =========================== */
.btn-black {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-black:hover {
  background-color: var(--color-white) !important;
  border: 2px solid var(--color-black) !important;
  color: var(--color-black) !important;
}

/* ===========================
    CSS START
=========================== */

.custom-container {
  width: 100%;
  margin: 0 auto;
  padding: 0px 40px !important;
  box-sizing: border-box;
}

.custom-container-testimonial {
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px !important;
  box-sizing: border-box;
}

.container-padding {
  padding: 0px 40px !important;
}

.section-margin-mt {
  margin-top: 80px;
}

.sectin-form {
  margin-top: 50px;
  margin-bottom: 40px;
}

.section-margin {
  margin-top: 80px;
  margin-bottom: 40px;
}

.section-margin-testimonial {
  margin-top: 55px;
  margin-bottom: 90px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 40px;
}

.section-margin-mb {
  margin-bottom: 40px;
}

.home-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: Light;
  font-size: 60px;
  line-height: 66px;
  color: #000;

}

.navbar {
  background-color: #fff;
  padding: 16px 0 !important;
  position: sticky !important;
  top: 0% !important;
  z-index: 999;
  height: 80px;
}

.navbar-brand,
.nav-link {
  color: #000 !important;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 18px !important;
  font-weight: var(--weight-400);
  margin-right: 1.5rem;
  position: relative;
  transition: all 0.3s ease;

}

.nav-item.g-header-link {
  position: relative;
  cursor: pointer;
  margin-right: 1.5rem;
}

.btn-close {
  opacity: 1 !important;
}

.g-header-link-text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: #000;
}

.g-header-underline {
  position: absolute;
  left: 0;
  bottom: -5px;
  pointer-events: none;
}

.g-header-link .nav-anim-2 {
  stroke-dasharray: 320;
  stroke-dashoffset: -320;
  transition: stroke-dashoffset 0.4s ease;
}

.g-header-link:hover .nav-anim-2 {
  animation: nav-anim 1s cubic-bezier(.08, .69, .1, 1) forwards;
}

@keyframes nav-anim {
  from {
    stroke-dashoffset: -320;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.nav-item:last-child {
  display: flex;
  align-items: center;
}

/* Base dropdown style */
/* Base dropdown menu */
.dropdown-menu.custom-dropdown {
  background-color: #318FFF;
  border: none;
  min-width: 250px;
  border-radius: 0;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 9999;
  padding: 0;
  display: block !important;
}



.nav-item.dropdown:hover .dropdown-menu.custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



.dropdown-menu.custom-dropdown .dropdown-item {
  color: white;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-body);
  padding: 10px 20px;
  border-bottom: 1px solid #FFFFFF;
  transition: all 0.3s ease;
}


.dropdown-menu.custom-dropdown .dropdown-item:last-child {
  border-bottom: none;
}

/* Hover effect */
.dropdown-menu.custom-dropdown .dropdown-item:hover {
  background: none;
  padding-left: 30px !important;
  padding-right: 30px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}





.mobile-submenu {
  display: none;
  transition: all 0.3s ease;
}


.mobile-dropdown.active .mobile-submenu {
  max-height: 500px;
  padding-bottom: 10px;
}

.mobile-dropdown .dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-icon {
  transform: rotate(45deg);
  /* + becomes × */
}











.btn-hover-icon {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 19px 100px !important;
  border: 2px solid #fff !important;
  border-radius: 53.33px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff;
  letter-spacing: 1px;
}



.btn-hover-icon:hover {
  background-color: var(--color-white);
}

.btn-hover-icon .text,
.btn-hover-icon .icon {
  position: absolute;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  transition: opacity 0.3s ease;
}

.btn-hover-icon .icon {
  opacity: 0;
}

.btn-hover-icon:hover .text {
  opacity: 0;
}

.btn-hover-icon:hover .icon {
  opacity: 1;
  font-size: 22px;
  color: var(--color-blue);
}

.btn-hover-icon-submit {
  margin: 26px 0 0px;
  border: 2px solid #FF6B3D !important;
  color: #FF6B3D;
  padding: 22px 110px !important;
  background-color: transparent;
}

.btn-hover-icon-submit:hover .icon {
  opacity: 1;
  font-size: 22px;
  color: #FF6B3D;
}

.btn-hover-icon-blog {
  margin: 40px 0;
  border: 2px solid #000000 !important;
  color: #000;
  padding: 22px 105px !important;
}

.offcanvas-end {
  background-color: #3399ff !important;
}

.offcanvas-body .nav-link {
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #fff;
}

.offcanvas {
  transition: transform 0.3s ease-in-out !important;
  display: block !important;
}





/* Header end */

.accordion-header .accordion-button {
  padding-left: 0;
}

.accordion-collapse {
  padding-top: 10px !important;
}


.home-wrapper {
  height: calc(100vh - 170px);
  padding: 40px 0px 0px 40px !important;
  margin: 0;
}

.about-wrapper {
  height: calc(100vh - 170px);
  padding: 40px 0px 0px 00px !important;
  margin: 0;
}

.headline {
  font-family: var(--font-display);
  font-weight: var(--weight-300);
  font-size: 65px;
  line-height: 84px;
}

.position {
  position: relative !important;
  padding-left: 0;
}

.typewriter-box {

  font-family: var(--font-display);
  font-weight: var(--weight-500);
  font-size: var(--h1-desktop);
  line-height: 90px;
  color: #0D0D0D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cursor {

  font-family: var(--font-display);
  font-weight: var(--weight-500);
  font-size: var(--h1-desktop);
  color: #0d0d0d;
  animation: blink 0.7s infinite;
  height: 10% !important;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.underline-svg {
 bottom: 4px;
  height: 32px;
  pointer-events: none;
}

.underline-svg-1 {
  bottom: 4px;
  height: 22px;
  pointer-events: none;
  position: relative;
}

.values-pra {
  font-family: var(--font-body);
  font-weight: var(--weight-400);
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}


.text-muted-custom {

  margin-top: 30px !important;
  font-size: 1.2rem;
  color: var(--color-black);

}

.slide-img {
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 1.2s ease-out forwards;
  animation-delay: 0.5s;

}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.video-curve-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ccc;
  border-top-left-radius: 882.35px;
  border-bottom-left-radius: 882.35px;
  overflow: hidden;
  position: relative;
  height: calc(100vh - 270px);
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* ===========================
       LOGO SLIDER
=========================== */

.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
}

.logo-track img {
  height: 50px;
  flex-shrink: 0;
}



/* strip */
/* Pause animation on hover or focus */
.strip {
  position: relative;
  width: 100%;
  overflow: hidden !important;
  white-space: nowrap;
}

.blue-strip {
  background: #318FFF;
  padding: 20px 0;
  animation: bg-left 20s linear infinite;
  transform: rotate(1deg);
  overflow: hidden;
}

.yellow-strip {
  background: #F7C448;
  padding: 20px 0;
  transform: rotate(-3deg);
  animation: bg-right 20s linear infinite;
}

.scroll-wrapper {
  display: flex;
  width: max-content;
}

.scroll-text {
  display: inline-block;
  font-size: 60px;
  font-family: var(--font-display);
  color: #fff;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.scroll-left {
  animation-name: marquee-left;
  animation-duration: 20s;
}

.scroll-right {
  animation-name: marquee-right;
  animation-duration: 20s;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Background move keyframes */
@keyframes bg-left {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200px 0;
  }
}

@keyframes bg-right {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 200px 0;
  }
}


.home-h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-400);
  font-size: var(--h4-desktop);
  line-height: 52px;
  letter-spacing: 0%;
  color: #000000;
}

.blue-underline {
  border-bottom: 3px solid #00B4D8;
  display: inline-block;
}


.cta-section {
  background: #FF6B3D;

  padding: 30px !important;

}



/* FAQ */

.accordion-button:not(.collapsed) {

  box-shadow: none;
}

.section-header {

  font-weight: var(--weight-400);
  font-size: 22px;
  line-height: 26px;
  color: #878787;
  padding: 40px 40px 0px 0;

}

.section-header-faq {
  padding: 22px 40px 0px 0;
}

.testimonial-title-padding {
  margin-bottom: 40px;
}

.faq-container {
  overflow: hidden;
  box-shadow: none !important;
  border: none !important;
  padding: 40px !important;
}

/* .blog-container {

  padding: 43px 40px 43px 30px !important;

} */

.service-title {
  font-size: 2rem;
  font-weight: bold;
}

.service-description {
  font-size: 0.875rem;
  color: #bbb;
}

.service-tags {
  font-size: 0.8rem;
  color: #999;
}

.accordion-button {
  background-color: transparent;
  color: white !important;
  font-size: 1.25rem;
  font-weight: bold;
  border: none;
  background-color: hsl(0, 0%, 0%) !important;
  padding: 20px 20px 20px;
}

.accordion-button.collapsed::after {
  content: "+";
  font-size: 32px !important;
  margin-left: auto;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.accordion-button:not(.collapsed)::after,
.accordion-button.collapsed::after {
  content: "+";
  font-size: 46px;
  margin-left: auto;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  /* Open state symbol */
}

.accordion-item {
  background-color: #000 !important;
  border-bottom: 1px solid #444;
  background-color: #000000;


  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 1px solid #000 !;
}

.accordion-button::after {
  background-image: none !important;
}


/* form */




.tag {
  padding: 8px 25px;
  border-radius: 20px;
  background-color: #F0F0F0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: var(--weight-400);
  font-size: 16px;
  line-height: 20px;
  border: 1px solid #F0F0F0;


}

.tag:hover {
  background-color: #fff;
  border: 1px solid #FF6B3D;
  color: #FF6B3D;
}

#contactForm {
  margin-top: 30px !important;
}

.tag-wrapper {
  display: flex;
  gap: 20px;
  margin: 14px 0 54px;
}

.tag.active {
  background-color: #FF6B3D;
  color: white;
}



.btn-submit {
  border: 1px solid #ff5f2e;
  color: #ff5f2e;
  border-radius: 25px;
  padding: 8px 20px;
  transition: all 0.3s;
}

.btn-submit:hover {
  background-color: #ff5f2e;
  color: white;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1055;
}



/* blog */


.section-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #aaa;
}

.blog-item {
  border-bottom: 1px solid #333;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
  padding: 40px 40px;
}



.blog-title {

  margin-bottom: 0.5rem;
  color: #fff;
  font-family: "Bricolage Grotesque";
  font-weight: var(--weight-600);
  font-size: 26px;
  line-height: 30px;
  letter-spacing: normal;

}

.blog-title:hover {
  color: #FFCE58;
}

.blog-meta {
  color: #7D7D7D;
  font-family: "Poppins";
  font-weight: var(--weight-400);
  font-size: 18px;
  line-height: 26px;



}

.arrow-icon {
  font-size: 1.5rem;
  color: #fff;
}


.store-font {
  position: absolute;
  top: -30px;
  left: -9px;
  height: 40px;
  z-index: -1;

}



/* footer */



.footer {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
  color: #fff;
  padding: 40px 0px !important;
  position: relative;

}

.margin-underline {
  margin-bottom: 40px;
}

.underline-extra-text {
  border-bottom: 4px solid #3173F0;
  padding-bottom: -20px;

}

.footer-h4 {
  font-family: "Bricolage Grotesque" 48pt;
  font-weight: var(--weight-600);
  font-size: 26px;
  line-height: 30px;
  color: #fff;
  letter-spacing: normal;
  letter-spacing: 1px;

}

.footer-input-wrap {
  position: relative;
  width: 100%;
  max-width: 400px; /* optional */
}

.footer-input-wrap input[type="email"] {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 10px 45px 10px 20px; /* right padding jast kelay button sathi */
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.footer-input-wrap input[type="email"]::placeholder {
  color: #ddd;
}

.footer-input-wrap .submit-btn

 {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    color: #FF6B3D;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    padding: 4px 20px;
}

.footer-input-wrap .submit-btn:hover {
background: #FF6B3D;
  color: #fff;
}


.footer a,
.footer-h5 {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-weight: var(--weight-600) !important;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 1px;


}



.last-column p a {

  font-weight: var(--weight-400) !important;
  font-size: 18px !important;
  line-height: 20px !important;
  margin: 0;
  color: #CCDDFD;

}

.footer-flex {
  display: flex !important;
  gap: 5px;
  align-items: center !important;
}



.footer .icon {
  margin-right: 10px;
}

.footer .footer-bottom {


  margin-top: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .underline-link {
  position: relative;
  display: block;
}

.footer-bottom span {
  font-family: var(--font-body);
  font-weight: var(--weight-400) !important;
  font-size: 20px;
  line-height: 144%;


}

.footer .underline-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: -4px;
  left: 0;
}

.footer .underline-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: #fff;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.logo-main {
  height: 50px;
}

.footer .underline-link:hover::after {
  width: 30%;
}


.text-line {
  font-size: var(--caption-desktop);
  font-weight: var(--weight-400);
  line-height: 20px;
  color: var(--color-black);

}

.card-text {

  font-weight: var(--weight-600);
  font-size: 26px;
  line-height: 30px;


}

.dot {

  font-size: 20px;
  vertical-align: middle;
  color: #000;
  /* Darker dot */
  font-weight: 700;
}

.strip-position {
  position: relative;
}

.intern-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  text-align: left
}

.intern-text {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: left;


}

.white-circle {
  width: 200px;
  height: 200px;
  background-color: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: -65px;
  left: 10%;
  transform: translateX(-70%);
  z-index: 0;
  box-shadow: 2.69px 3.59px 9.87px 0.9px #0000000F;
}

.container-new {
  width: 905px;
  margin: 0 auto;
}

.home-h3 {
  font-family: var(--font-body);
  font-weight: var(--weight-400);
  font-size: var(--h3-desktop);
  line-height: 52px;
  color: #000;
  position: relative;
  z-index: 1;

}

.faq-h3 {
  font-family: var(--font-body);
  font-weight: var(--weight-400);
  font-size: 32px;
  line-height: 36px;
  color: #000;
  position: relative;
  z-index: 1;
  margin: 0;

}

.case-details-top {
  margin: 40px 0;
}

.img-mar-top {
  margin-top: 40px;
  text-align: center;
}

.blue-underline-1 {
  position: relative;
  display: inline-block;
}

.blue-underline-1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 280px;
  /* increased width */
  height: 6px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="280px" height="5"><path d="M0,1.5 C50,0 10,5 150,2.5 C200,0 250,5 300,2.5 C350,0 400,5 450,2.5 C500,0 550,5 600,2.5 C650,0 700,5 750,2.5" stroke="%2300aaff" fill="transparent" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}


.home-pra {
  /* margin-top: 30px; */
  z-index: 1;
  position: relative;
  font-weight: var(--weight-400);
  font-size: var(--paragraph-desktop);
  line-height: 26px;


}

.accordion-body {
  padding: 0px 0px 20px !important;
  margin: 0;
}

.our-learning {
  padding-left: 40px;
}

.faq-pra {

  font-weight: var(--weight-400) !important;
  font-size: var(--paragraph-desktop) !important;
  line-height: 26px !important;
  color: #B0A8A8 !important;

}

.form-h1 {

  font-weight: var(--weight-500) !important;
  font-size: var(--h1-desktop) !important;
  line-height: 90px !important;
  color: #101010;


}

.copy-icon {
  cursor: pointer;
  margin-left: 3px;
  vertical-align: middle;
}

#phone-text {
  margin-left: 10px !important;
}

.copied-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
  z-index: 1000;
}


.form-label {

  color: #000;
  font-family: "Poppins";
  font-weight: var(--weight-400);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;


}

.form-control {
  border: none;
  border-bottom: 0.77px solid #BBBBBB;
  border-radius: 0;
  box-shadow: none;
  padding: 0 !important;

}

.form-control:focus {
  border-bottom: 1px solid #000;
  box-shadow: none;
}

.form-control::placeholder {
  font-size: 16px;
  color: #7D7D7D;
  font-weight: 400;
}

.form-group {
  margin-bottom: 20px;
}

.highlight-bar {

  width: 60%;
  height: 8px;
  background-color: #FFCE59;
  margin-top: 8px;
  border-radius: 2px;



}

.about-h4 {

  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 8px;
  display: block;


}


.about-new {
  background: #000000;
  padding: 75px 0 !important;

}

.small-about {
  font-family: var(--font-display);
  font-weight: var(--weight-600);
  font-size: 26px;
  line-height: 30px;
  color: #FFFFFF;

}

.small-img-group img {
  width: 100%;
}

.about-title {


  font-family: var(--font-body);
  font-weight: var(--weight-400);
  font-size: 46px;
  line-height: 52px;
  text-align: center;
  color: #fff;

}

.highlight {
  border-bottom: 3px solid #4d90fe;
}

.value-icon {
  background-color: #fcca3f;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover .value-icon {
  transform: translateY(-5px) scale(1.05);
  background-color: var(--color-blue);
  color: #fff;
}

.value-box:hover .value-icon img {
  filter: brightness(0) invert(1);
}


.value-box {
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.value-icon img {
  transition: transform 0.3s ease;
}

.value-box:hover .value-icon img {
  transform: translateY(-5px);
}



/* team */


.team-section {
  text-align: center;
  padding: 60px 0px 0;
}

.team-title {
  font-size: 2rem;
  font-weight: 600;
}






.team-wrapper-intern {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center !important;
  gap: 70px;
}


.profile-circle {


  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.team-new-intern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}



.phone-img {
  width: 100%;
}


.team-card {
  text-align: center;
  margin-bottom: 30px;

}

.team-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;


}

.team-photo {
  width: 160px !important;


  border-radius: 50%;

  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-junior {





  margin-bottom: 10px;

}

.team-photo img {
  width: 300px;
}

.team-photo-junior img {
  width: 160px;
}

.new-team-photo img {
  width: 410px;
  /* height: auto; */
}

.team-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.9rem;
  color: #555;
}


/* service */

.package-section {
  background-color: #ffffff;
  padding: 60px 15px;
}


.pricing-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: left;


}

.pricing-card ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000;
  text-align: left;


}


.package-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 15px;
}

.pricing-card {
  border: 1px solid #C3C3C3;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 25px 10px;
  height: 100%;
  transition: all 0.3s ease-in-out;

}




.pricing-tier {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  text-align: left;
  color: #3173F0;
  margin: 15px 0;
}

.feature-list {

  padding-left: 18px;
  margin-bottom: 20px;
}

.feature-list::before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #E3E3E3;
  margin-bottom: 10px;
  padding-bottom: 6px;
}


.feature-list li {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
}

.ghost-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #7A7A7A;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 15px;
  text-align: start;
  width: 100%;
}

.project-btn {
  background-color: #f1f1f1;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
}

/* Hover effect */
.pricing-card:hover {
  background:
    linear-gradient(rgba(49, 115, 240, 0.7), rgba(49, 115, 240, 0.7)),
    url('../images/calender.svg');
  background-size: cover;
  background-position: center;
  /* background-repeat: no-repeat; */
  color: #fff;
  border-color: #1663d3;
}




.pricing-card:hover h4,
.pricing-card:hover p,
.pricing-card:hover .pricing-tier,
.pricing-card:hover .feature-list li,
.pricing-card:hover .ghost-cta {
  color: #fff !important;
}

.pricing-card:hover .project-btn {
  background-color: #fff;
  color: #1663d3;
}







/* Circle */

.post-circle {
  width: 231.02565002441406;
  height: 231.02565002441406;
  top: 40px;

}

.home-h5 {

  font-weight: var(--weight-400);
  font-size: var(--h5-desktop);
  line-height: 26px;
  color: var(--color-black);
  font-family: var(--font-body);
}



/* circle logo */

.process-container {
  position: relative;
  padding: 100px 15px;
}

.circle-wrapper {
  position: relative;
  text-align: center;
  margin-left: -20px;

}

.circle-wrapper-1 {
  position: relative;
  top: -22px;
  text-align: center;
  margin-left: -20px;

}

.circle-main {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-yellow {
  background: #FFCE59E0;

}

.circle-orange {

  top: -10px;
  background: #FF6B3DE0;

}

.circle-blue {
  background: #318FFFE0;

}

.circle-main img {
  height: 80px;
}

.label-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;


  position: absolute;
  font-weight: bold;

}

.label-arrow img {
  width: 31px;
  margin-right: -127px;

}

.label-arrow-1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  position: absolute;
  font-weight: bold;

}

.label-arrow-1 img {
  width: 31px;
  margin-right: 0px;

}





/* Positioning Arrows & Labels */
.label-discovery {
  top: -60px;
  left: 0;
}

.label-discovery::after {
  top: 25px;
  left: 50px;
  transform: rotate(-45deg);
}

.label-ideation {
  bottom: -60px;
  left: 0;
}

.label-ideation::after {
  bottom: 25px;
  left: 50px;
  transform: rotate(135deg);
}

.label-content {
  top: -60px;
  left: 7%;
  transform: translateX(-50%);
}

.label-content::after {
  top: 25px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.label-prototype {
  bottom: -60px;
  right: 77px;
}

.label-prototype::after {
  bottom: 25px;
  right: 50px;
  transform: rotate(135deg);
}

.label-test {
  top: -77px;
  right: 133px;
}

.label-test::after {
  top: 25px;
  right: 50px;
  transform: rotate(-45deg);
}

.mob-padding {
  align-items: center;
}

/* ===========================
   RESPONSIVE TYPOGRAPHY
=========================== */
@media (max-width: 576px) {


  .arrow-icon img {
    width: 40px;
  }
}

@media (max-width: 991px) {
  .about-wrapper {
    height: 100%;
    padding: 40px 0px 40px 00px !important;
    margin: 0;
  }

  .mob-padding {
    margin: 33px 0 !important;
    padding: 0;
    flex-direction: column-reverse;
  }

  .home-wrapper {
    height: 100%;
    padding: 0 0px 0 18px !important;
  }

  .headline {
    margin-top: 10px;

    font-size: 45px;
    line-height: 55px;
  }

  .small-cta-margin {
    margin: 80px 0px 5px;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {

  .about-wrapper {
    height: auto;
    padding: 10px 0px 40px 00px !important;
    margin: 0;
  }

  .podcats-slider-next {
    border: 1px solid #F0F0F0;
    color: #fff;
    top: 100% !important;
    left: 51% !important;
    box-shadow: 4px 4px 7.3px 0px #0000001A;
  }

  .btn-hover-icon-submit {
    margin: 26px 0 15px;

  }

  .footer a,
  .footer-h5 {

    font-weight: var(--weight-400) !important;

  }

  .accordion-button:not(.collapsed)::after,
  .accordion-button.collapsed::after {

    font-size: 35px;

  }

  .footer-h4 {

    font-weight: var(--weight-400);

  }

  .footer {

    padding: 40px 0px !important;

  }

  .portfolio-tabs ul li.active {

    font-size: 22px;

  }

  .logo-main {
    height: 28px;
  }

  .logo-track img {
    height: 51px;

  }

  .faq-container {
    padding: 18px 18px 30px !important;
  }

  .extra-service {
    margin-top: 30px;
  }

  .flex-service {
    flex-direction: column;
    gap: 50px;
  }

  .circle-wrapper-1 {
    position: relative;
    top: 0px;
    text-align: center;
    margin-left: -20px;
    gap: 20px;
  }

  .circle-main img {
    height: 54px;
  }

  .about-title {
    font-family: var(--font-body);
    font-weight: var(--weight-600);
    font-size: 28px;
    line-height: 35px;

  }

  .about-h4 {

    font-size: 22px;
    line-height: 26px;
  }

  .footer-left {
    text-align: left;
  }


  .accordion-button {
    font-size: 20px;
    padding: 14px 20px 14px;
    line-height: 25px;
  }

  .faq-h3 {

    font-size: 20px;
    line-height: 26px;
  }

  .cta-subtext {

    font-size: 13px;
    line-height: 18px;

  }


  .blog-title {
    margin-bottom: 0.1em;
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;

  }

  .container-main {

    padding: 90px 20px 18px !important;
  }

  .home-h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
  }

  .container-padding {
    padding: 0 18px !important;
  }

  .scroll-text {
    font-size: 40px;

  }

  .home5pad {
    margin-bottom: 32px !important;
  }

  .btn-orange-outline {

    font-size: 16px;
    padding: 10px 38px;

  }

  .section-header-faq {
    padding: 12px 40px 10px 0;
  }

  .headline {
    font-size: 40px !important;
    line-height: 40px !important;
  }

  .underline-svg {
    bottom: 19px;
    height: 21px;
    pointer-events: none;
  }

  .typewriter-box,
  .cursor {
    font-size: 70px !important;
    line-height: 70px;
  }

  .carousel-item-new {
    height: auto !important;
  }

  .carousel-bottom-arrows {
    display: none !important;
  }

  .circle-main {
    width: 100px;
    height: 100px;
  }

  .circle-main i {
    font-size: 10px;
  }

  .circle-main img {
    height: 30px;
  }

  .label-arrow {

    font-size: 15px;

  }

  .label-content {
    top: -197px;
    left: 24%;
    transform: translateX(-50%);
  }

  .label-arrow-1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;

  }

  .label-ideation {
    bottom: -32px;
    left: 19px;
  }

  .label-discovery {
    top: -49px;
    left: 56px;
  }

  .label-prototype {
    bottom: -37px;
    right: 77px;
  }

  .label-test {
    top: -38px;
    right: 158px;
  }

  .package-title {
    font-size: 28px;
  }

  .label-content {
    top: -11px;
    left: 24%;
    transform: translateX(-50%);
  }

  .label-arrow img {
    width: 31px;
    margin-right: -19px;
  }

  .pricing-tier {
    font-size: 28px;
  }

  .form-h1 {

    font-weight: var(--weight-500);
    font-size: var(--h1-mobile);
    line-height: 70px;


  }

  .faq-pra {


    font-size: var(--paragraph-mobile) !important;
    line-height: 26px !important;



  }

  .blue-underline-1::after {
    width: 100px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100px" height="5"><path d="M0,1.5 C50,0 10,5 150,2.5 C200,0 250,5 300,2.5 C350,0 400,5 450,2.5 C500,0 550,5 600,2.5 C650,0 700,5 750,2.5" stroke="%2300aaff" fill="transparent" stroke-width="2"/></svg>');
  }


  .container-new {
    width: 100%;
    margin: 0 auto;

    padding: 18px;
  }

  .white-circle {
    width: 136px;
    height: 136px;
    top: -23px;
    left: 21%;
    transform: translateX(-50%);
  }

  .home-h3 {

    font-size: var(--h3-mobile);
    line-height: 36px;
    font-weight: var(--weight-400);

  }

  .small-about {

    font-weight: var(--weight-400);
    font-size: 16px;
    line-height: 20px;

  }

  .home-pra {
    font-size: var(--paragraph-mobile);
    line-height: 22px;
  }

  .card-text {
    font-size: 28px;
    line-height: 30px;

  }

  .text-line {
    font-size: var(--caption-mobile);
    line-height: 18px;

  }

  .footer {
    text-align: center;
  }

  .footer .row>div {
    margin-bottom: 13px;
  }

  .footer .footer-bottom {
    margin-top: -13px !important;

  }

  .typewriter-box,
  .cursor {
    font-size: var(--h1-mobile);
    line-height: 65px;

  }

  .headline {


    font-size: var(--h2-mobile);
    line-height: 50px;
  }



  .home-h4 {
    font-size: var(--h4-mobile);
    line-height: 32px;
  }



  h1 {
    font-size: var(--h1-mobile);
  }

  h2 {
    font-size: var(--h2-mobile);
  }

  h3 {
    font-size: var(--h3-mobile);
  }

  h4 {
    font-size: var(--h4-mobile);
  }

  h5 {
    font-size: var(--h5-mobile);
  }

  .subtitle {
    font-size: var(--subtitle-mobile);
  }

  .caption {
    font-size: var(--caption-mobile);
  }

  p {
    font-size: var(--paragraph-mobile);
  }
}

@media (max-width: 991.98px) {
  .new-team-photo img {
    width: 320px;

  }

  .card-case-study {



    padding: 0;


  }

  .nav-link {
    font-family: var(--font-body);
    font-size: 28px !important;
    font-weight: var(--weight-400);
    margin-right: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    color: #fff !important;
  }

  .offcanvas-body .nav-link {

    margin: 12px 0;
    color: #fff;
  }



  .mobile-contact-btn {

    margin-right: 13px;
  }

  .navbar-toggler {
    border: none;
    margin-left: 15px;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .extra-column {
    display: flex;
    flex-direction: row !important;
    gap: 20px;
  }

  .latest-img {
    width: 100%;
    height: 71% !important;
    object-fit: cover;
    border-radius: 12px;
  }





}

@media(max-width:1199px) {
  .testimonial-slider .testimonial-card {
    height: auto !important;
  }

  .intern-text,
  .intern-title {
    text-align: center;
  }

  .team-new-intern {
    flex-direction: column;
  }

  .form-h1 {
    font-weight: var(--weight-500) !important;
    font-size: 80px !important;
    line-height: px !important;
    color: #101010;
  }

  .latest-img-full {
    width: 100%;
    height: 85%;

  }

  .latest-img {
    width: 100%;
    height: 70%;

  }

  .latest-img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 12px;
  }

  .typewriter-box,
  .cursor {
    font-size: 80px;
    line-height: 66px;

  }



  .text-muted-custom {

    font-size: 16px;

  }

}




.logo {
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  color: white;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}






.faq-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  transition: background 0.3s;


}


.faq-question {
  font-weight: 500;
  font-size: 16px;
}

.faq-icon {
  background-color: #3173F0;
  font-size: 16px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item {
  border-bottom: 1px solid #C3C3C3 !important;
}

.services-bg {
  background: #000000;
  padding: 60px 0px 108px;
}

.services-bg div {
  color: #fff;
}

.faq-item.open .faq-icon::before {
  content: "\f068";
  /* FontAwesome minus icon */
}

.faq-content {
  padding: 0 20px 16px;
  font-size: 15px;
  color: #000;
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}








/* /slick */





.icon-slider-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 25px;
  border-radius: 20px;
  background-color: #FFF;
  border: 1px solid #EAEAEA;
  box-shadow: 3px 2px 8.1px 0px #0000001A;
  margin: 0 30px;
  height: 350px;
}

.icon-slider-image-content,
.icon-slider-card-content {
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
}

.icon-slider-image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.icon-slider-card-content p {
  text-align: start;
}

.icon-slider-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 25px 25px 0 25px;
}



.icon-slider-card-image {
  position: relative;
  height: 107px;
  width: 107px;
  border-radius: 50%;
  background: #EDEDED;

  padding: 3px;
}

.icon-slider-card-img {
  position: absolute;
  top: 12px;
  right: -6px;
  height: 75px;
  width: 75px;


}

.icon-slider-card-img-1 {
  position: absolute;
  /* top: 12px;
  right: -6px;
  height: 75px;
  width: 75px; */


}

.icon-slider-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-align: start;
  line-height: 30px;
}

.icon-slider-description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.icon-slider-button {
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-slider-button:hover {
  background: #265DF2;
}

.logo-services img {
  height: 35px;
 
}

.icon-slider-navigation-wrapper {
  text-align: center;
  margin-top: 30px;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.icon-slider-navBtn {
  position: relative;
  display: inline-block;
  color: #000;
  transition: color 0.3s ease;
  margin: 0 10px;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #F0F0F0;
  box-shadow: 4px 4px 7.3px 0px #0000001A;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;

}

.icon-slider-navBtn:hover {
  color: #4070F4;
}

.icon-slider-navBtn::before,
.icon-slider-navBtn::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: 0;
  transform: none;
}

.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .icon-slider-content {
    margin: 0 10px;
  }

  .form-h1 {
    font-weight: var(--weight-500) !important;
    font-size: 70px !important;
    line-height: 70px !important;
    color: #101010;
  }
}

/* testimonial */


.testimonial-box {
  position: relative;
  background-color: #f65e39;
  color: white;
  border-radius: 10px;
  padding: 45px 54px 29px 54px;
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  height: auto;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: block;
}

.quote {
  position: absolute;
  left: 0%;
  top: 22%;
}

.quote img {
  height: 54px;
  width: 64px;
}

/* .testimonial-box::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #FF6B3D;


} */

.testimonial-text {

  font-weight: 400;
  font-size: 18px;
  line-height: 26px;


}

.testimonial-author {
  text-align: center;
  margin-top: 30px;
}

.testimonial-author strong {
  display: block;
}





.carousel-icon-new {
  background-color: #fff;
  color: #000;
  height: 48px;
  width: 48px;
  border: 1px solid #F0F0F0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 7.3px 0px #0000001A;
  border: 1px solid #F0F0F0;

}

.carousel-inner {
  position: relative;
  width: 100%;

  min-height: 471px;
}

.new-carousel {
  height: 100% !important;
}

.testimonial-container {
  min-height: 580px;
}

.carousel-icon-new:hover {
  background-color: #FF6B3D;
  color: #fff;
  border: none;
}

.social-icons img {
  margin: 0 -7px;
  width: 40px;
  height: 40px;
}

/* contact */



.apply-btn {

  border-radius: 48.36px;
  border: 0.81px solid #000000;
  padding: 8px 20px;
  background-color: #fff;
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;


}

.job-row {
  border-top: 1px solid #ccc;
  padding: 15px 0;
}

.job-row:hover {
  background-color: var(--color-orange);
  color: #fff;
}

.job-row:hover .apply-btn {
  background-color: transparent;
  color: #fff;
  border: 0.81px solid #fff;
}

.contact-h5 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;


}

.contact-pad {
  padding: 43px 28px;
}


.job-row:first-child {
  border-top: none;
}

.mobile-career {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;


}


@media (max-width:767px) {
  .mobile-career {
    display: none;
  }
}

@media (max-width:1070px) {
  .carousel-inner {
    position: relative;
    width: 100%;


  }

  .mobile-cta-pdk {
    margin-top: 31px;
  }
}



/* animation */


.container-main {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px 60px;
}

.center-image {
  position: relative;
}

.center-image img {
  /* width: 400px;
  height: 400px; */
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .section-header {
    font-size: 22px;
    line-height: 26px;

  }

  .section-margin {
    margin-top: 31px !important;
    margin-bottom: 10px !important;
  }

  .rtx-padding {
    padding-top: 32px;
  }


  .custom-container {
    margin: 0 auto;
    padding: 0px 15px 0px 15px !important;
  }

  .tag-wrapper {
    display: flex;
    gap: 11px;
    margin: 11px 0 47px;
  }

  .tag {
    padding: 6px 20px;

    font-size: 14px;
    line-height: 18px;
  }

  .video-padding {
    padding: 0 0 4px 40px !important;
    margin-bottom: 20px;
  }

  .footer-bottom span {

    font-size: 14px;
    line-height: 144%;
    text-align: left;
  }



  .video-curve-wrapper {
    height: 100%
  }

  .center-image img {
    width: 236px;
    height: 219px;
  }
}

.side-images {
  position: absolute;
  width: 60px;
  height: 100%;
  pointer-events: none;
}

/* Common for image and p */
.fade-element {
  position: absolute;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: auto;
}

.fade-element.fade {
  opacity: 0;
}

.side-images p.fade-element {
  font-family: "Bricolage Grotesque";
  font-size: 26px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.side-images img.fade-element {
  /* width: 130px;
  height: 130px; */
  object-fit: contain;
  cursor: pointer;
}

/* ==== DESKTOP VIEW ==== */
#left-images {
  left: -90px;
  top: 0;
}

#right-images {
  right: -90px;
  top: 0;
}

/* LEFT POSITIONS - DESKTOP */
#left-images .fade-element:nth-child(1) {
  top: 202px;
  left: 101px;
  transform: rotate(13deg);
}

#left-images .fade-element:nth-child(2) {
  top: -94px;
  left: 313px;
}

#left-images .fade-element:nth-child(3) {
  top: -50px;
  left: -7px;
}

#left-images .fade-element:nth-child(4) {
  top: 128px;
  left: -48px;
}

#left-images .fade-element:nth-child(5) {
  top: 446px;
  left: 648px;
  transform: rotate(-22deg);
}

#left-images .fade-element:nth-child(6) {
  top: 350px;
}

/* RIGHT POSITIONS - DESKTOP */
#right-images .fade-element:nth-child(1) {
  top: -48px;
  right: -30px;
}

#right-images .fade-element:nth-child(2) {
  top: 106px;
  right: -34px;
  width: 38px;
}

#right-images .fade-element:nth-child(3) {
  top: 141px;
  left: -110px;
}

#right-images .fade-element:nth-child(4) {
  top: 205px;
  right: -51px;
}

#right-images .fade-element:nth-child(5) {
  top: 48px;
  right: 140px;
  transform: rotate(26deg);
}

#right-images .fade-element:nth-child(6) {
  top: 420px;
  right: 157px;
}

.padding-we-dont {
  padding: 120px 0 !important;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #fff;
  outline: none;
  background: #000;
}

.thank-you-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;



}



.custom-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  min-width: 250px;
}

.custom-toast-message {
  padding: 12px 18px;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeSlide 0.5s ease;
}

.toast-success {
  background-color: #28a745;
}

.toast-danger {
  background-color: #dc3545;
}

.toast-primary {
  background-color: #007bff;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.thank-you-card h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: Medium;
  font-size: 150px;
  line-height: 10px;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 40px;
}





.thank-you-card p {

  margin-bottom: 30px;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;

}



.clk-viewmore-btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #787878;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.clk-viewmore-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #787878;
  transition: width 0.4s ease;
}





.btn-home {
  margin-top: 25px;
}

/* ==== MOBILE VIEW ==== */

@media (max-width: 768px) {
  .contact-h5 {

    font-size: 16px;
    line-height: 20px;
  }

  .clk-viewmore-btn {
    font-size: 13px;
  }

  .thank-you-card h1 {
    font-size: 44px;
    line-height: 44px;
    padding-bottom: 20px;
    margin-bottom: -10px;
  }

  .thank-you-card h1::after {

    right: 28px;
    bottom: 2px;
    width: 72%;
    height: 6px;

  }

  .btn-orange-outline-th {
    font-size: 13px !important;
    padding: 9px 19px !important;
  }

  .side-images {
    width: 45px;
  }

  .thank-you-card p {
    margin-bottom: -17px;

    font-size: 16px;
    line-height: 20px;

  }

  .fade-element {
    width: auto;
    height: auto;
    font-size: 12px;
  }

  .side-images img.fade-element {
    width: 80px;
    height: 80px;
  }

  #left-images {
    left: -70px;
  }

  #right-images {
    right: -70px;
  }

  /* LEFT - MOBILE INDIVIDUAL POSITIONS */
  #left-images .fade-element:nth-child(1) {
    top: 79px;
    left: 54px;
  }

  #left-images .fade-element:nth-child(2) {
    top: -58px;
    left: 166px;
  }

  #left-images .fade-element:nth-child(3) {
    top: -38px;
    left: 4px;
  }

  #left-images .fade-element:nth-child(4) {
    top: 55px;
    left: -14px;
  }

  #left-images .fade-element:nth-child(5) {
    top: 185px;
    left: 266px;
  }

  #left-images .fade-element:nth-child(6) {
    top: 310px;
    left: 5px;
  }

  /* RIGHT - MOBILE INDIVIDUAL POSITIONS */
  #right-images .fade-element:nth-child(1) {
    top: -26px;
    right: 3px;
  }

  #right-images .fade-element:nth-child(2) {
    top: 23px;
    right: -16px;
    width: 27px;
  }

  #right-images .fade-element:nth-child(3) {
    top: 47px;
    left: -48px;
  }

  #right-images .fade-element:nth-child(4) {
    top: 110px;
    right: -15px;
  }

  #right-images .fade-element:nth-child(5) {
    top: 17px;
    right: 81px;
    transform: rotate(8deg);
    font-size: 14px;
  }

  #right-images .fade-element:nth-child(6) {
    top: 159px;
    right: 117px;
  }

  .side-images p.fade-element {

    font-size: 14px;

  }
}


@media (max-width: 576px) {
  .center-image img {
    width: 160px;
    height: 160px;
  }

  .side-images img.fade-element {
    width: 58px;
    height: 62px;
  }

  #right-images .fade-element:nth-child(5) {
    top: 4px;
    right: 69px;

  }

  #right-images .fade-element:nth-child(3) {
    top: 32px;
    left: -35px;
  }

  #right-images .fade-element:nth-child(2) {
    top: 16px;
    right: -2px;
    width: 27px;
  }

  #right-images .fade-element:nth-child(4) {
    top: 73px;
    right: -1px;
  }

  #left-images .fade-element:nth-child(5) {
    top: 138px;
    left: 200px;
  }

  #right-images .fade-element:nth-child(6) {
    top: 114px;
    right: 104px;
  }

  #left-images .fade-element:nth-child(1) {
    top: 55px;
    left: 39px;
  }

  #left-images .fade-element:nth-child(3) {
    top: -32px;
    left: 28px;
  }

  #left-images .fade-element:nth-child(4) {
    top: 31px;
    left: -7px;
  }

  .side-images p.fade-element {
    font-size: 12px !important;
  }
}





/* / */



.latest-wrapper {
  padding-top: 40px;
}

.latest-heading {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  margin: 40px 0;
}



.latest-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.latest-img-full {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.latest-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-top: 8px;
}

.latest-card {
  text-decoration: none;
  margin-bottom: 30px;
  padding: 10px;
  color: #000;
}

.section-margin-service {
  margin-top: 40px;
}

.latest-card-full {
  margin-bottom: 25px;
  text-decoration: none;
  color: #000;

}

.svg-icon-range {
  top: 40px;
}

.latest-date {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #777777;

}

.latest-load-btn {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.9rem;
  background-color: white;
  margin: 20px 0 60px;
}

.custom-blog-footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 60px 20px;
}



.blog-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;

}

.blog-footer-desc-title {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 0;
}

.blog-footer-desc {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;

  max-width: 750px;
  margin: 0 auto;
}

.blog-footer-btn {
  background-color: #ff5722;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  color: white;
  font-size: 0.9rem;
}

.latest-card,
.latest-card-full {
  position: relative;
  overflow: hidden;
}

.latest-card img,
.latest-card-full img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.latest-card:hover,
.latest-card-full:hover {
  transform: scale(1.01);

}

.latest-card::after,
.latest-card-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  z-index: 1;
}

@media(max-width:768px) {
  .svg-icon-range {
    top: 60px;
  }

  .btn-hover-icon-blog {
    margin: 0px 0 40px;
  }

  .latest-img-full,
  .latest-img {
    width: 100%;
    height: 57%;
  }

  .btn-hover-icon-blog {
    padding: 18px 95px !important;
  }

  .blog-footer-desc-title {

    font-size: 22px;
    line-height: 31px;

  }

  .latest-title {

    font-size: 22px;
    line-height: 27px;

  }

  .latest-heading {

    font-size: 28px;
    line-height: 24px;

  }
}

/*  */



.blg-container {
  padding: 40px 20px;
}

.blg-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.blg-meta-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 20px;
}

.blg-author {
  display: flex;
  gap: 40px;
  align-items: center;
}

.blg-author-img {
  width: 252px;
  height: 252px;
  border-radius: 50%;
}


.blg-author-img-1 {
  width: 61px;
  height: 70px;
  border-radius: 50%;
}


.blg-meta-info {
  font-size: 0.95rem;
}

.blg-meta-info div:first-child {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;


}

.blg-meta-info div:last-child {
  font-size: 0.85rem;
  color: #777;
}

.blg-paragraph {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 20px;
}

.blg-img {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
}

.blg-takeaway-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 30px;
}

.blg-key-list {
  padding-left: 0.1rem;
}

.blg-key-list li {
  margin-bottom: 10px;
}

.blg-author-section {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.blg-author-img-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.blg-author-info {
  font-size: 0.9rem;
}

.blg-related-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 40px 0 20px;
}

.blg-related-card {
  border: none;
  text-decoration: none;
}

.blg-related-img {
  border-radius: 12px;
  width: 100%;
  height: auto !important;
  object-fit: cover;
}

.blg-related-text {
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 10px;
}

.blg-sidebar-box {
  border: 1px solid #D5D5D5;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: #fff;
}

.blg-toc-title {
  margin-bottom: 0 !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;


  margin-bottom: 10px;
}

.blg-newsletter-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 46px;
  line-height: 52px;
  text-align: center;

}

.news-letter {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 46px;
  line-height: 52px;
  color: #3173F0;
  text-align: center;

}

.blg-form-control {
  font-size: 0.9rem;
}

.blg-btn-subscribe {
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
}

.blg-key-list li {
  list-style-type: disc;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.blg-key-list {
  list-style-position: inside;

}

.pro-title {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0%;

}

.pro-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #3477F6;

}

.pra-name-new {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;

  color: #777777;
}

.blg-key-list li::marker {
  font-size: 20px;
  color: #FFCE59;

}

@media (min-width: 992px) {
  .blg-sticky-sidebar {
    position: sticky;
    top: 100px;
  }
}




.portfolio-tabs {
  border-bottom: 2px solid #BBBBBB;
  border-top: 2px solid #BBBBBB;
  padding: 20px 0;
  margin-bottom: 50px;
  margin-top: 30px;
}

.portfolio-tabs ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 15px;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

}



.portfolio-tabs ul li {
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #939393;
  transition: 0.3s;
  flex-shrink: 0;


}

.portfolio-tabs ul::-webkit-scrollbar {
  display: none;
}

.portfolio-tabs ul li.active {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  border-bottom: 3px solid #FF6B3D;


}

.portfolio-tabs ul li.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff3c00;
}

.portfolio-card img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}

.portfolio-caption {
  font-variant: var(--font-display);
  position: absolute;
  font-size: 17px;
  font-weight: 600;
  margin-top: -29px;
  text-align: left;
  z-index: 1;
  background: #fff;
  padding: 4px 42px;
  cursor: pointer;
}

.portfolio-caption:hover {
  color: #0279FF;
}


.portfolio-caption span {
  color: #0056d2;
}



/* testimonial -new */





.testimonial-slider .testimonial-card {
  background-color: #FF6B3D;
  color: white;
  padding: 40px 40px;
  border-radius: 10px;
  margin: 20px;
  position: relative;
  text-align: center;
  width: 100%;
  /* ✅ This is important */
  height: 350px;

}

.testimonial-card .quote {
  font-size: 100px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  line-height: 0;
  text-align: left;
}

.testimonial-text {
  font-size: 18px;
  margin: 20px 0;
  color: white;
  font-weight: 400;
  line-height: 26px;
}

.testimonial-name {
  color: black;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
}

.testimonial-role {
  font-size: 16px;
  color: white;
  font-weight: 400px;

}

.slick-dots {
  display: none !important;
}

.slick-prev,
.slick-next {
  top: auto;
  bottom: -40px;
  transform: none;
  left: 50%;
  z-index: 1;
}

.slick-prev {
  margin-left: -40px;
}

.slick-next {
  margin-left: 10px;
}

.slick-prev:before,
.slick-next:before {
  color: black;
  font-size: 30px;
}

.carousel-icon {
  position: absolute;
  bottom: -50px;
  background-color: #fff;
  border: 1px solid #F0F0F0;
  box-shadow: 4px 4px 7.3px 0px #0000001A;
  height: 48px;
  width: 48px;
  color: #000;
  padding: 12px 14px;
  border-radius: 50% !important;
  z-index: 10;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}



/* Bottom center positioning */
.carousel-prev {
  left: 50%;
  transform: translateX(-80px);
}

.carousel-next {
  left: 50%;
  transform: translateX(40px);
}

.icons-flex-plans {
  margin-bottom: 110px;
  text-align: center;
}

.ser-h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;


}

@media (max-width: 768px) {

  .icon-slider-card {
    padding: 25px;
    border-radius: 20px;
    background-color: #FFF;
    border: 1px solid #EAEAEA;
    box-shadow: 3px 2px 8.1px 0px #0000001A;
    margin: 20px 0px;
  }

  .pdc-card {
    border-radius: 20px;
    padding: 0 30px 0 0;
    position: relative;
    overflow: hidden;
  }

  .testimonial-slider .testimonial-card {
    min-height: auto;
    height: 100% !important;
  }

  .blog-item {
    padding: 22px 18px;
    gap: 5px;

  }

  .blog-meta {
    margin-top: 12px;
  }
}


@media (max-width:768px) {

  .quote {

    left: 2%;
    top: 13%;
  }

  .testimonial-slider .testimonial-card {

    padding: 40px 12px;
    margin: 15px;

  }

  .testimonial-slider .testimonial-card {

    padding: 40px 12px;

  }

  .testimonial-name {
    font-size: 20px;
    line-height: 24px;

  }

  .carousel-inner {
    position: relative;
    width: 100%;

    height: 100% !important;
  }

  .cta-section {

    padding: 60px 18px !important;
  }

  .section-margin-testimonial {
    margin-top: 31px;

  }

  .our-learning {
    padding-left: 18px;
  }
}



/* section-details */


.dtr-wrapper {
  margin-top: 50px;
  padding: 40px 20px;
}

.dtr-title-dot {
  height: 10px;
  width: 10px;
  background-color: #ff5722;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}

.dtr-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.dtr-description {
  max-width: 400px;
  color: #555;
  font-size: 15px;
}

.dtr-tags span {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 11px 24px;
  margin: 5px;
  font-size: 18px;
  line-height: 26px;
}



.dtr-img-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.dtr-img-caption {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26.99px;
  line-height: 42.68px;


}



.dtr-blue-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.dtr-blue-caption {
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .dtr-description {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .dtr-tags {
    margin-bottom: 30px;
  }
}



/*  */

.blg-intro-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  position: relative;

}



.blg-intro-text {
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}



.blg-tag {
  border: 1px solid #000;
  border-radius: 25px;
  padding: 10px 19px;
  font-size: 15px;
  margin: 5px 5px 15px 0;
  display: inline-block;
  background-color: #fff;
  font-weight: 400;


}

.blg-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blg-small-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  font-weight: var(--font-body);
}

@media (max-width: 767px) {
  .blg-tag {
    font-size: 16px;
    padding: 4px 12px;
  }

  .testblg-quote::before {

    top: -13px !important;
    left: -16px !important;
  }

  .testblg-quote::after {

    bottom: -80px !important;
    right: -30px !important;
  }
}




/*  */



.hblg-approach-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  position: relative;

}



.hblg-approach-text {
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}

.hblg-img-box {
  border-radius: 20px;
  overflow: hidden;
}



.hblg-img {
  width: 100%;
  height: auto;
  display: block;
}

.hblg-img-pink {
  margin-right: 16px;
}

.hblg-img-blue {
  margin-left: 16px;
}

.margin-title10 {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .hblg-approach-text {
    text-align: justify;
  }

  .home-h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 51px;

  }

  .case-details-top {
    margin: 30px 0;
  }

  .margin-title10 {
    margin-top: 18px;
  }

  .hblg-img-pink {
    margin-right: 0px;
  }

  .hblg-img-blue {
    margin-left: 0px;
  }
}


/*  */

.testblg-img-box {
  border-radius: 20px;
  overflow: hidden;
}



.testblg-img {
  width: 100%;
  height: auto;
  display: block;
}

.testblg-quote-box {
  background-color: #FF6B3D;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
}

.testblg-quote {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 31px 20px 10px;
}

.testblg-quote::before,
.testblg-quote::after {
  content: "";
  position: absolute;
  width: 79px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.testblg-quote::before {
  background-image: url('../images/case-study/left-quote.png');
  top: 26px;
  left: -40px;
}

.testblg-quote::after {
  background-image: url('../images/case-study/right-quote.png');
  bottom: -20px;
  right: -30px;
}

.testblg-author {
  font-weight: 600;
  margin-top: 20px;
}

.testblg-role {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-top: -8px;


}


.swiper-pagination {
  margin-top: 10px;
  text-align: center;
}


/* slder silk  start */

.slider-container {
  width: 90%;
  margin: 60px auto 100px;
  position: relative;
}

/* .card-view {
    
      padding: 20px;
      margin: 10px;
   
   
    } */

/* Hide dots */
.slick-dots {
  display: none !important;
}

/* Arrow custom styling */
.slick-prev,
.slick-next {
  background: #0279ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1000;
  position: absolute;
  bottom: -60px;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'Arial';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #fff !important;
}

.slick-prev {
  top: 44%;
  left: 6%;
  border: 1px solid #F0F0F0;
  box-shadow: 4px 4px 7.3px 0px #0000001A;

}


.podcats-slider-next {
  border: 1px solid #F0F0F0;
  color: #fff;
  top: 44%;
  left: 94%;
  box-shadow: 4px 4px 7.3px 0px #0000001A;

}

/* slder silk end */



/* podcast start */

.podcast-card {
  max-width: 420px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px #00000026;
  border: 1px solid #C0C0C0;
  overflow: hidden;
  background-color: #fff;

  margin: 20px;
}

.podcast-image img {
  width: 100%;
  height: auto;
  display: block;
}

.podcast-body {
  padding: 17px;
}

.podcast-header {

  color: #000;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;


}



.podcast-subtitle {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;


}

.podcast-desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.watch-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FF6B3D;
  color: white;
  border: none;
  padding: 0px 0px 0px 8px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.watch-button-1 {

  align-items: center;
  gap: 8px;
  background-color: #3173F0;
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;

  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.99px;
  line-height: 15.74px;


}



.watch-button-1:hover {
  background-color: #FFCE58;
  text-decoration: none;
  color: #000;
}

.watch-button .icon {
  background-color: #fff;
  color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 14px;
}



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

/* podcast end */

/* case-study */

.card-case-study {
  margin: 30px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 4.5rem 1rem;
  transition: 0.5s ease-in-out;
  height: auto;
}

.card-body {
  padding: 0 1rem;
  margin: -20px 30px 20px;
}

.explore-btn {
  padding: 1px 40px 40px;
}





.card-case-study:hover {
  transform: translateY(20px);
}

.card-case-study::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3477F6E5;

  z-index: 2;
  transition: 0.5s all;
  opacity: 0;
  border-radius: 15px;
}

.card-case-study:hover::before {
  opacity: 1;
  border-radius: 15px;
}

.card-case-study img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-case-study .overlay {
  position: relative;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s all;
  padding: 30px 20px 0;
}

.card-case-study:hover .overlay {
  opacity: 1;
  transform: translateY(30px);
}



.text-h1 {
  margin: 0;
}

.text-p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;

  line-height: 26px;
  letter-spacing: 0%;

  margin-top: 8px;
  margin-bottom: 22px;
}

.link-a {
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: .4s ease-in-out;
}

.link-a:hover {
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}























.pdc-heading-with-border {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}


.pdc-heading-with-border::after {
  content: "";
  position: absolute;
  left: 29%;
  transform: translateX(-50%);
  bottom: 23px;
  width: 190px;
  height: 5px;
  background-color: #FFCE59;
  border-radius: 3px;
}



.pdc-section {
  background-color: #101010;
  padding: 60px 15px;
}

.pdc-heading {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.pdc-brand-highlight {
  border-bottom: 3px solid #FFCE59;
  display: inline-block;
  padding-bottom: 3px;
}

.pdc-card {
  /* background-color: #ffffff; */
  border-radius: 20px;
  padding: 0 30px 0 0;
  position: relative;
  overflow: hidden;
}

.pdc-card img {
  width: 100%;
  border-radius: 20px;
}

.pdc-mic-img {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 120px;
}

.pdc-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.pdc-highlight-line {
  width: 80px;
  height: 4px;
  background-color: #fbd786;
  margin: 15px 0;
  border-radius: 10px;
}

.pdc-description {
  color: #a8a8a8;
  font-size: 14px;
  max-width: 420px;
  line-height: 1.6;
}

.pdc-watch-btn {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 10px 20px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin-top: 25px;
}

.pdc-watch-btn .pdc-icon {
  background-color: #ff613a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.pdc-watch-btn .pdc-icon::before {
  content: '▶';
  color: #ffffff;
  font-size: 14px;
}



.custom-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #318FFF;
  padding: 27px 40px;
  position: relative;
  overflow: hidden;
}

.custom-banner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 5%;
  background-color: white;
  transform: skew(20deg);
}

.custom-banner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 73%;
  width: 52%;
  background-color: #FF6B3D;
  transform: skew(20deg);
}

.middle-stripe {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 12%;
  background-color: #facc58;
  transform: skew(20deg);
}

.middle-white {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 70%;
  width: 5%;
  background-color: white;
  transform: skew(20deg);
}

.cta-subtext {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;

  z-index: 2;
}

.banner-subtext {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #fff;

  z-index: 2;
}

.banner-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #7a6d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 72%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.btn-connect {

  padding: 11px 45px;

  z-index: 2;
}

.pos-mar {
  margin-bottom: 20px;
}


/* service icon*/

.serv-container {
  display: none;
}

@media (max-width: 768px) {
  .long-cta {
    margin-top: 95px !important;
  }

  .flex-service {
    display: none;
  }

  .serv-container {
    display: block;

  }

  .serv-circle img {
    height: 40px;
  }

  .serv-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }

  .serv-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -6px 0;
  }

  .serv-step-1 {
    margin: -6px 0px 0 28px;
  }

  .serv-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 40px;
    color: #000;
  }

  .serv-circle-yellow {
    background-color: #FFCE58E0;
  }

  .serv-circle-red {
    background-color: #FF6B3DE0;
  }

  .serv-circle-blue {
    background-color: #318FFFE0;
  }

  .serv-label {
    position: absolute;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
  }

  .services-bg {
    background: #000000;
    padding: 33px 18px 38px;
  }

  .serv-step:nth-child(1) .serv-label {
    right: 103px !important;
    top: -49px !important;

  }

  .serv-step:nth-child(odd) .serv-label {
    right: -83px;
    top: 100px;

  }

  .serv-step:nth-child(even) .serv-label {
    left: -88px;
    top: 109px;
  }
}

.serv-arrow {
  position: absolute;
  width: 60px;
  height: 40px;
}

.serv-step:nth-child(1) .serv-arrow {
  left: 17px !important;
  top: -46px !important;
  transform: rotate(10deg) !important;
}

.serv-step:nth-child(odd) .serv-arrow {
  left: 125px;
  top: 45px;
  transform: rotate(10deg);
}

.serv-step:nth-child(even) .serv-arrow {
  right: 128px;
  top: 64px;
}


/* view case study */

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  display: block;
}

/* Circle Overlay */
.portfolio-card .circle-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  background: #3477F6C7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  text-align: center;
  text-decoration: none;
  z-index: 2;
}

/* Hover Effect */
.portfolio-card:hover .circle-overlay {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 1;
}

.circle-overlay:hover {
  width: 150px;
  height: 150px;
}


.blog-h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
}


.blog-h6 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .explore-btn {
    padding: 1px 18px 29px;
  }

  .cdc-img {
    height: 70px !important;
  }

  .padding-we-dont {
    padding: 39px 0 0 !important;
  }

  .card-case-study:hover .overlay {
    opacity: 1;
    transform: translateY(0px);
  }

    .card-case-study {
        margin: 18px 18px 54px;
        padding: 4rem 1rem;
    }

  .text-p {

    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0%;
    margin-top: 8px;
    margin-bottom: 18px;
  }

  .navbar {

    box-shadow: 0px 3px 25px 0px #0000001A;
  }

  .slick-dots li button:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;

  }

  .card-body {
    padding: 30px 0 16px;
  }

  .small-cta-margin {
    margin: 80px 0px 38px;
  }

  .padding-we-dont {
    padding: 39px 0 0 !important;
  }

  .card-case-study .overlay {
    position: relative;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(-6px);
    transition: 0.5s all;
    padding: 0px 7px 0;
  }

  .custom-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-profile {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 10px;
  }

  .btn-connect {
    margin-top: 15px;
  }

  .pdc-card {


    padding: 0 0px 0 0;

  }



  .arrow-icon {

    display: none !important;

  }

  .accordion-body {
    padding: 0px 0px 32px !important;
    margin: 0;
  }

  .pdc-section {

    padding: 31px 15px;
  }

  .pdc-heading-with-border::after {

    left: 49%;
    bottom: 77px;
    width: 190px;
    height: 2px;

  }

  .pos-mar {
    margin-bottom: 0;
  }

  .carousel-icon {

    background-color: #F4F4F4;

    box-shadow: none;

  }

  .slick-prev,
  .slick-next {
    background: #F4F4F4;

  }

  slick-prev:before,
  .slick-next:before {

    color: #000 !important;
  }

  slick-prev:before,
  .slick-prev:before {

    color: #000 !important;
  }

  .slick-prev {
    top: 100%;
    left: 46%;
    border: 1px solid #F0F0F0;
    box-shadow: 4px 4px 7.3px 0px #0000001A;

  }

  .pdc-heading {
    font-size: 22px;
  }

  .mbt-margin {
    margin-bottom: 80px;
  }

  .pdc-mic-img {
    width: 80px;
  }

  .pdc-content h2 {
    font-size: 22px;
  }
}


/* Hide Swiper on desktop */
@media (min-width: 768px) {


  .team-swiper {
    display: none;
  }

}

/* Hide grid on mobile */
@media (max-width: 1450px) {
  .Decor {
    display: none;
  }
}

@media (max-width: 767px) {
  .blg-author {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
  }

  .blg-author-img {
    width: 248px;
    height: 100%;
    border-radius: 50%;
  }

  .blg-newsletter-title {

    font-size: 32px;
    line-height: 36px;

  }

  .news-letter {

    font-size: 32px;
    line-height: 36px;

  }

  .blog-h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
  }

  .blog-h6 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
  }

  .footer a,
  .footer-h5 {

    margin-bottom: 15px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
  }

  .dtr-wrapper {
    margin-top: 30px;
    padding: 60px 20px;
  }

  .arrow-hide {
    display: none;
  }

  .dtr-tags span {

    padding: 12px 20px;
    margin: 5px;
    font-size: 16px;
    line-height: 26px;
  }

  .new-team-photo img {
    width: 261px;

  }

  .team-photo img {
    width: 265px;
  }

  .profile-circle img {
    width: 239px;
  }

  .team-photo-junior img {
    width: 265px;
  }

  .middle-white {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60%;
    width: 0%;
    background-color: white;
    transform: skew(-10deg);
  }

  .custom-banner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 66%;
    width: 0%;
    background-color: white;
    transform: skew(20deg);
  }

  .custom-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 103%;
    width: 80%;
    background-color: #FF6B3D;
    transform: skew(20deg);
  }

  .middle-stripe {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 96%;
    width: 12%;
    background-color: #facc58;
    transform: skew(20deg);
  }

  .desktop-grid {
    display: none;
  }
}

@media (max-width:1600px) {
  .case-study-slider {
    height: 100% !important;
    margin: 20px 0 100px !important;
  }

}