* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html,
body {
  background: #ffffff;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}





/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  height: 82px;
  z-index: 1000;
  background: #0a1628;
  padding: 0 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 17px;
  align-items: center;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #26c6ff;
}

/* Free Consultation button */
.btn-primary {
  display: inline-flex;
  padding: 6px 15px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  background: linear-gradient(90deg, #B10D79, #c0186a);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: white;
  color: #b10d79;
  border-radius: 50%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
}

.mobile-menu-btn button {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 32px;
  height: 32px;
}

/* --- RESPONSIVE NAVBAR --- */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar.scrolled {
    height: 72px;
  }

  .navbar.scrolled .logo img {
    height: 52px;
  }

  .nav-links {
    display: none;
    /* Hidden by default on mobile */
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a1628;
    padding: 40px 20px;
    gap: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: navFadeIn 0.3s ease forwards;
  }

  @keyframes navFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .nav-links a {
    font-size: 18px;
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Dummy page content (for scroll testing) */
.content {
  padding: 40px;
}

.box {
  height: 400px;
  background: #f2f2f2;
  margin: 30px 0;
}


/* ================= HERO ================= */
/* ================= HERO ================= */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  overflow: hidden;
  background: url('../images/bannar.png') no-repeat center;
  background-size: cover;
  position: relative;
  color: #fff;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  /* margin-inline: auto; */
  z-index: 10;
}

/* LEFT CONTENT */
.hero-content {
  width: 70%;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #41b9fa;
  color: #eaf8ff;
  padding: 10px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-content .badge .dot {
  width: 8px;
  height: 8px;
  background-color: #5cc7ff;
  border-radius: 50%;
  display: inline-block;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #eaf8ff;
}

.hero-content h1 span {
  color: #26c6ff;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 80px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-secondary,
.btn-outline {
  display: inline-block;
  text-align: center;
  padding: 8px 24px;
  font-weight: 600;
  border-radius: 9999px;
  border: 1.5px solid #0E77FF;
  background: linear-gradient(90deg, #0E77FF 0%, #6047A3 100%);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover,
.btn-outline:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Bottom Right Images */
.bottom-right-images {
  position: absolute;
  right: 0;
  bottom: -25px;
  display: flex;
  gap: 12px;
  padding: 20px;
}

.bottom-right-images img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.bottom-right-images img:hover {
  transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
    background: url('../images/Frame29\(1\).png') no-repeat bottom;

    /* background-size: cover; */
  }

  .hero-content .badge .dot {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .badge {
    align-items: start;
    gap: 0;
  }

  .hero-content .badge .dot {
    width: 8px;
    height: 7px;
    margin-top: 7px;
  }

  .hero-content {
    width: 100%;
    margin-top: 30px;
  }

  .hero-content p {
    /* display: none; */
    visibility: hidden;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-buttons {
    display: none;
    flex-direction: column;
    gap: 15px;
  }

  .bottom-right-images {
    position: relative;
    bottom: 0;
    justify-content: center;
    margin-top: 40px;
  }
}

/* SECTION */
.trusted {
  background: #ffffff;
  padding-top: 50px;
  overflow: hidden;
}

/* CONTAINER */
.trusted-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.trusted-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  padding-left: 20px;
}

.trusted-header .line {
  width: 5px;
  height: 40px;
  background: #1aa6d9;
  border-radius: 5px;
}

.trusted-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

/* SCROLL WRAPPER */
.logo-scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}

/* SCROLL CONTAINER */
.logo-scroll {
  width: 100%;
  /* overflow: hidden; */
  white-space: nowrap;
}


/* LOGO ROW */
.trusted-logos {
  display: inline-flex;
  gap: 48px;
  animation: logo-scroll 200s linear infinite;
}

/* .logo-scroll:hover .trusted-logos {
  animation-play-state: paused;
} */

/* DIRECTION */
.scroll-left {
  animation-direction: normal;
}

.scroll-right {
  animation-direction: reverse;
}

/* LOGO CARD */
.logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.logo-card:hover {
  transform: scale(1.1);
}

/* LOGO IMAGE */
.logo-card img {
  max-width: 150px;
  max-height: 70px;
  object-fit: cover;
}

/* ANIMATION */
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

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

/* LOGO IMAGE */
.logo-card img {
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}

/* ANIMATION */
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

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

/* PAUSE ON HOVER */
/* .logo-scroll:hover .trusted-logos {
  animation-play-state: paused;
} */

/* RESPONSIVE */
@media (max-width: 768px) {
  .trusted-header {
    margin-bottom: 0px;
  }

  .trusted-logos {
    animation-duration: 150s;
  }

  .logo-card {
    width: 160px;
    overflow: hidden;
  }

  .logo-scroll {
    overflow-x: clip;
  }
}

/* SECTION */
.why-dtg {
  background: #ffffff;
  padding: 70px 60px;
}

.link-dtg {
  color: #B10D79;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.link-dtg:hover {
  color: #B10D79;
  text-decoration: underline;
}

/* CONTAINER */
.why-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.why-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.why-header-p {
  margin-bottom: 40px;
  font-size: 18px;

}

.why-header .line {
  width: 5px;
  height: 60px;
  background: #1aa6d9;
  margin-top: -80px;
  border-radius: 5px;
}

.why-header h2 {
  font-size: 33px;
  font-weight: 700;
  margin-top: -80px;
  color: #111;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.stat-box {
  flex: 1;
}

.stat-box img {
  width: 50px;
  margin-bottom: 12px;
  cursor: pointer;
}

.stat-box h3 {
  font-size: 60px;
  font-weight: 700;
  color: #111;
  margin-inline: auto;
  cursor: pointer;
}

.stat-box p {
  font-size: 16px;
  color: #0f0f0f;
  font-weight: 500;
  margin-top: 4px;
}

/* RESPONSIVE WHY DTG */
@media (max-width: 768px) {
  .why-dtg {
    padding: 50px 20px;
  }

  .why-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
  }

  .why-header .line {
    width: 5px;
    height: 50px;
    margin-top: 0;
  }

  .why-header h2 {
    font-size: 28px;
    margin-top: 0;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    justify-items: center;
  }

  .stat-box {
    width: 100%;
  }

  .stat-box h3 {
    font-size: 32px;
    white-space: nowrap;
  }

  .stat-box p {
    font-size: 15px;
  }
}


/* ================= SERVICES SECTION ================= */
.dtg-services-section {
  /* background: #223A90; */
  /* Deep blue base */
  background: linear-gradient(135deg, #e7ecff 0%, #edf1fe 100%);
  padding: 100px 40px;
  /* color: #fff; */
  color: #111;
  overflow: hidden;
}

.dtg-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dtg-services-header {
  margin-bottom: 60px;
}

.dtg-services-label {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 15px;
  margin-bottom: 20px;
}

.dtg-services-line {
  width: 5px;
  height: 40px;
  background: #2da9d7;
  border-radius: 4px;
}

.dtg-services-label span {
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
}

.dtg-services-header h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}

.dtg-services-desc {
  max-width: 600px;
  font-size: 18px;
  /* color: #f2f5fc; */
  color: #111;
  line-height: 1.6;
}

.dtg-services-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.dtg-services-left {
  flex: 1;
  position: relative;
  height: 600px;
  perspective: 1000px;
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  max-width: 300px;
  /* height: 500px; */
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: rotate(0deg) skew(0deg) translateY(40px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: rotate(6deg) skew(0deg) translateY(0) scale(1);
  z-index: 5;
  margin-top: 50px;
}

.image-wrapper:hover {
  transform: rotate(-10deg) skew(0deg) translateY(0px) scale(1.05);
}

.tilted-img {
  /* width: 100%; */
  width: 300px;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  display: block;
  object-fit: cover;
}

/* Decorative Rectangle Styling & Animations */
.rectangle {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 140px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translate(-100px, 100px);
  /* Lower-left start position */
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.rectangle img {
  width: 100%;
}

.image-wrapper.active .rectangle {
  opacity: 1;
  transform: translate(0, 0);
  /* Move to base diagonal position */
}

/* Use the child img for the continuous idle loops to avoid animation conflicts */
.image-wrapper[data-index="1"] .rectangle img {
  animation: floatRec 3s ease-in-out infinite alternate;
}

.image-wrapper[data-index="2"] .rectangle {
  bottom: 20px;
  left: -50px;
}

.image-wrapper[data-index="2"] .rectangle img {
  animation: slideRec 4s ease-in-out infinite alternate;
}

.image-wrapper[data-index="3"] .rectangle {
  transform: translate(-100px, 100px) rotate(-15deg);
}

.image-wrapper.active[data-index="3"] .rectangle {
  transform: translate(0, 0) rotate(-15deg);
}

.image-wrapper[data-index="3"] .rectangle img {
  animation: pulseRec 2.5s ease-in-out infinite;
}

@keyframes floatRec {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes slideRec {
  from {
    transform: translateX(0) skewX(0deg);
  }

  to {
    transform: translateX(30px) skewX(10deg);
  }
}

@keyframes pulseRec {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.30);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.dtg-services-right {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-category-block {
  /* background: rgba(255, 255, 255, 0.08); */
  /* background: linear-gradient(90deg, #D9D9D94A, #223A90); */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #2d9ec6);
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
  border-radius: 15px;
  padding: 30px 45px;
  /* display: flex; */
  display: grid;
  grid-template-columns: 1fr 160px;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  cursor: pointer;
  gap: 30px;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.service-category-block:hover,
.service-category-block.active {
  /* background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #223A90); */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #2d9ec6);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-category-block:hover {
  transform: translateX(30px);
}

.block-info {
  /* display: flex; */
  align-items: center;
  gap: 20px;
  flex: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.block-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  flex: 0 0 260px;
  line-height: 1.1;
}

.block-info ul {
  list-style: none;
  display: flex;
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  flex-direction: column;
  gap: 5px;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  padding-left: 30px;
}

.block-info ul li {
  font-size: 18px;
  /* color: #e0e4f5; */
  color: #0a1628;
  ;
  font-weight: 400;
  white-space: nowrap;
}

.explore-btn {
  background: #B10D79;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #ff3a96;
  transform: scale(1.05);
}

/* ── MOB CAROUSEL CSS ── */
@media (max-width: 768px) {

  /* Reset desktop layout */
  .dtg-services-section {
    padding: 56px 0 48px;
    overflow: hidden;
  }

  .dtg-services-container {
    max-width: 100%;
    padding: 0;
  }

  /* Header */
  .dtg-services-header {
    padding: 0 0px;
    margin-bottom: 28px;
  }

  .dtg-services-label span {
    font-size: 28px;
  }

  .dtg-services-header h2 {
    /* font-size: 36px; */
    font-weight: 600;
    margin-bottom: 10px;
  }

  .dtg-services-header p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5580;
  }

  /* Hide desktop layout entirely */
  .dtg-services-content {
    display: none !important;
  }

  .dtg-services-left {
    display: none !important;
  }

  .dtg-services-right {
    display: none !important;
  }

  /* ── CAROUSEL WRAPPER ─────────────────────── */
  .mob-carousel-wrap {
    display: block;
  }

  .mob-reel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 22px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 15px;
  }

  .mob-reel::-webkit-scrollbar {
    display: none;
  }

  .mob-card {
    min-width: 370px;
    scroll-snap-align: start;
    border-radius: 22px;
    overflow: hidden;
    /* box-shadow: 0 12px 36px rgba(34, 58, 144, 0.18); */
    flex-shrink: 0;
    background: #fff;
    transition: transform 0.3s ease;
  }

  .mob-card:active {
    transform: scale(0.98);
  }

  /* Card image area */
  .mob-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    position: relative;
  }

  .mob-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Gradient overlay on image */
  .mob-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0) 40%, rgba(10, 22, 40, 0.55) 100%);
  }

  /* Badge number */
  .mob-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    z-index: 2;
  }

  /* Card body */
  .mob-card-body {
    padding: 18px 18px 20px;
  }

  .mob-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .mob-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 2px solid rgba(45, 158, 199, 0.3);
    padding-left: 12px;
  }

  .mob-card-list li {
    font-size: 14px;
    color: #555;
    font-weight: 400;
  }

  .mob-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #B10D79;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mob-card-cta:hover,
  .mob-card-cta:active {
    background: #d4189a;
    transform: scale(1.03);
  }

  .mob-card-cta .arrow {
    width: 14px;
    height: 14px;
  }

  /* Navigation Controls */
  .mob-nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
  }

  .mob-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(45, 158, 198, 0.3);
    color: #2da9d7;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .mob-nav-btn i {
    font-size: 18px;
  }

  .mob-nav-btn:hover,
  .mob-nav-btn:active {
    background: #2da9d7;
    color: #fff;
    transform: scale(1.05);
  }

  /* Progress dots */
  .mob-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .mob-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(45, 158, 198, 0.25);
    transition: all 0.35s ease;
  }

  .mob-dot.active {
    width: 20px;
    background: #2da9d7;
  }

}

/* Hide on desktop */
.mob-carousel-wrap {
  display: none;
}

/* Show carousel only on mobile */
@media (max-width: 768px) {
  .mob-carousel-wrap {
    display: block;
  }
}

/* ================= PREMIUM SCROLL SERVICES ================= */
.scroll-section {
  position: relative;
  /* background: #0a1628; */
  background: linear-gradient(135deg, #223A90 0%, #223A90 100%);
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  padding: 0 40px;
}

.sticky-wrapper {
  display: flex;
  max-width: 1400px;
  margin-inline: auto;
  position: relative;
  gap: 30px;
}

/* LEFT SIDEBAR */
.sidebar {
  width: 28%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 40px 60px;
  /* Added left padding for the vertical logo */
  box-sizing: border-box;
  z-index: 10;
}

.sidebar-logo {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.sidebar-logo img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

/* SIDEBAR SECTION LABEL */
.scroll-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.scroll-label-line {
  width: 5px;
  height: 36px;
  background: #B10D79;
  border-radius: 4px;
  flex-shrink: 0;
}

.scroll-section-label>span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 100;
}

.sidebar li {
  font-size: 20px;
  font-weight: 400;
  padding: 13px 0;
  /* color: rgba(255, 255, 255, 0.55); */
  color: white;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}

.sidebar li:hover {
  color: rgba(255, 255, 255, 0.85);
}

.sidebar li.active {
  color: #B10D79;
  transform: translateX(10px);
  font-weight: 600;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 50px;
  background: white;
}

.sidebar li.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #B10D79;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(177, 13, 121, 0.7);
  opacity: 1;
  margin-top: 1px;
}

/* IMAGE BOX */
.image-box {
  width: 45%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  /* margin-top: 100px; */
}

.image-box .img-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.08);
  margin-top: 100px;
}

.image-box .img-container.active {
  opacity: 1;
  transform: scale(1);
}

.image-box img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

/* CONTENT BOX */
.content-box {
  width: 30%;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

/* All text slides stack in the same grid cell */
.content-box .text-slide {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  box-sizing: border-box;
  opacity: 0.3;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 520px;
}

.content-box .text-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.content-box h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #ffffff;
}

.content-box p {
  font-size: 15px;
  color: white;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* CIRCULAR CTA */
.circular-cta {
  position: relative;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.circular-cta span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.4;
}

.circular-cta .cta-arrow {
  margin-top: 10px;
  transition: transform 0.4s ease;
}

.circular-cta .cta-arrow img {
  width: 14px;
  height: auto;
}

.circular-cta:hover {
  border-color: #B10D79;
  background: #B10D79;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(177, 13, 121, 0.4);
}

.circular-cta:hover .cta-arrow {
  transform: translate(5px, -5px);
}

.circular-cta:hover .cta-arrow img {
  filter: brightness(0) invert(1);
}

/* Side Get a Quote */
.get-quote-side {
  position: fixed;
  left: 0;
  top: 75%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #B10D79, #c0186a);
  padding: 20px 8px;
  border-radius: 0 8px 8px 0;
  z-index: 1000;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.get-quote-side:hover {
  padding-left: 15px;
}

.get-quote-side span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
}

.fb-scroll-section {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .content-box h2 {
    font-size: 38px;
  }

  .content-box {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .sidebar {
    width: 30%;
  }

  .image-box {
    width: 30%;
  }

  .content-box {
    width: 40%;
  }
}

@media (max-width: 768px) {

  /* Hide the original desktop section on mobile */
  .scroll-section#realestate-marketing {
    display: none !important;
  }

  /* --- CONCEPT D MOBILE --- */
  .fb-scroll-section {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
    z-index: 1;
    transition: all 0.4s ease;
  }

  .fb-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: background-color 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Subtle geometric pattern overlay */
  .fb-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg,
        rgba(255, 255, 255, 0.015) 0px,
        rgba(255, 255, 255, 0.015) 1px,
        transparent 1px,
        transparent 40px);
    z-index: 1;
  }

  .fb-icon-wrap {
    position: relative;
    margin-top: 70px;
    margin-left: 20px;
    margin-right: 20px;
    height: 240px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .fb-icon {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
  }

  .fb-icon.changing {
    opacity: 0;
    transform: scale(0.95);
  }

  .fb-badge {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fb-badge-num {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
  }

  .fb-badge-line {
    width: 25px;
    height: 1px;
    background: #B10D79;
  }

  .fb-badge-total {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }

  .fb-section-label {
    position: absolute;
    top: 27px;
    right: 20px;
    z-index: 10;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
  }

  .fb-panel {
    position: relative;
    margin-top: 20px;
    padding: 0 24px;
    z-index: 5;
    background: transparent;
  }

  .fb-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
    transition: all 0.4s ease;
  }

  .fb-bar {
    width: 40px;
    height: 4px;
    background: #B10D79;
    border-radius: 2px;
    margin-bottom: 15px;
  }

  .fb-desc-wrap {
    margin-bottom: 12px;
    display: block;
    line-height: 1.55;
  }

  .fb-desc {
    display: inline;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.5s ease;
  }

  /* Truncation logic */
  .fb-desc-wrap.truncated .fb-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.85em;
    overflow: hidden;
  }

  .fb-desc strong {
    color: #fff;
    font-weight: 700;
    /* background: rgba(177, 13, 121, 0.4); */
    padding: 1px 4px;
    border-radius: 4px;
  }

  .fb-read-more {
    /* display: inline-block; */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    /* padding: 4px 10px; */
    /* margin-left: 5px; */
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    text-decoration: underline;
    vertical-align: baseline;
    /* background-color: white; */
    /* border-radius: 15px; */
    /* margin-top: 10px; */
  }

  .fb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
  }

  .fb-tag {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 0.3s;
  }

  .fb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
  }

  .fb-cta {
    background: #B10D79;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
  }

  .fb-cta:active {
    transform: scale(0.96);
    background: #8e0a60;
  }

  .fb-arrows {
    display: flex;
    gap: 8px;
  }

  .fb-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .fb-arrow-btn:active {
    background: #B10D79;
    border-color: #B10D79;
    transform: scale(0.93);
  }

  .fb-dots {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }

  .fb-dot {
    width: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    padding: 0;
    height: 20px;
  }

  .fb-dot.active {
    background: #B10D79;
    height: 36px;
  }

  .fb-swipe-hint {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }

  .fb-swipe-hint.hidden {
    opacity: 0;
  }

  .fb-swipe-hint span {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-weight: 700;
  }

  .fb-swipe-icon {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
  }

  .fb-swipe-icon::after {
    content: '';
    width: 3px;
    height: 7px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    animation: scrollBounce 1.4s infinite ease-in-out;
  }

  @keyframes scrollBounce {

    0%,
    100% {
      transform: translateY(0);
      opacity: 1;
    }

    50% {
      transform: translateY(5px);
      opacity: 0.3;
    }
  }

  .fb-title.fade-out,
  .fb-desc.fade-out,
  .fb-tags.fade-out {
    opacity: 0;
    transform: translateY(12px);
  }

  .fb-title.fade-in,
  .fb-desc.fade-in,
  .fb-tags.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
}


.explore-btn img.arrow {
  width: 14px;
  height: auto;
}

/* Animations */
.dtg-services-section {
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* the high performance */
.funnel-section {
  padding-inline: 20px;
}

/* ================= SUCCESS STORIES ================= */
.dtg-success {
  padding: 100px 40px;
  background: linear-gradient(160deg, #fdf7fa 0%, #fff4f9 40%, #f9f6ff 100%);
  overflow: hidden;
}

.dtg-success .dtg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dtg-success .dtg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.dtg-success .dtg-line {
  display: block;
  width: 5px;
  height: 40px;
  background: #c0186a;
  /* margin-bottom: 15px; */
  border-radius: 5px;
}

.dtg-success .dtg-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  /* margin-bottom: 8px; */
}

.dtg-success .dtg-header p {
  font-size: 18px;
  color: #555;
}

.dtg-success .dtg-link {
  color: #c0186a;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.dtg-success .dtg-link:hover {
  color: #B10D79;
}

/* Cards Container */
.dtg-success .dtg-cards {
  display: grid;
  grid-template-columns: var(--track1, 2fr) var(--track2, 1fr) var(--track3, 1fr);
  gap: 25px;
  /* height: 600px; */
  transition: grid-template-columns 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Card */
.dtg-success .dtg-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}

.dtg-image {
  width: 100%;
  height: 100%;
}

.dtg-success .dtg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.8s ease;
}

.right-img img {
  object-position: left;
  /* margin-left: 10px; */
  /* padding-right: 10px; */
}

.right-img:hover img {
  object-position: center;
  /* margin-left: 10px; */
  /* padding-right: 10px; */
}

/* .desktop {
  display: none;
}

.mobile {
  display: block;
} */

/* .dtg-success .dtg-card.active img {
  transform: scale(1.05);
} */

/* Tags and Buttons */
.dtg-success .dtg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c0186a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  transition: opacity 0.4s ease;
}

.dtg-success .dtg-card:hover .dtg-tag {
  display: none;
}

.dtg-success .dtg-tag.pink {
  background: #B10D79;
}

.dtg-success .dtg-arrow-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 35px;
  height: 35px;
  background: #c0186a;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s ease;
}

.dtg-success .dtg-arrow-btn img {
  width: 16px;
  height: auto;
  filter: brightness(0) invert(1);
}

.dtg-success .dtg-card.active .dtg-arrow-btn {
  background: #B10D79;
  transform: rotate(-45deg);
}

.dtg-success .dtg-card.active .dtg-arrow-btn:hover {
  transform: rotate(-45deg) scale(1.05);
}

/* ── Content Overlay: Editorial Panel ── */
.dtg-success .dtg-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 28px;
  background: rgba(8, 8, 20, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
  pointer-events: none;
  border-radius: 0 0 30px 30px;
}

/* Show state */
.dtg-success .dtg-card.show-info .dtg-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Title visible at bottom */
.dtg-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 4;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.dtg-card-title p {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Hide card-title when showing detailed content */
.dtg-success .dtg-card.show-info .dtg-card-title {
  opacity: 0;
  transform: translateY(10px);
}

/* Title */
.dtg-success .dtg-content h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px 0;
  color: #ffffff;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
  /* Thin decorative rule under the title */
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dtg-success .dtg-card.show-info .dtg-content h3 {
  opacity: 1;
  transform: translateY(0);
}

/* Stat rows container */
.dtg-stat-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual stat row */
.dtg-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dtg-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Results row — left accent stripe */
.dtg-stat-row.highlight {
  padding-left: 10px;
  border-left: 2px solid #c0186a;
  margin-left: -2px;
}

/* Stagger in */
.dtg-success .dtg-card.show-info .dtg-stat-row:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.dtg-success .dtg-card.show-info .dtg-stat-row:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.dtg-success .dtg-card.show-info .dtg-stat-row:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* Number anchor */
.dtg-stat-num {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 3px;
  min-width: 18px;
}

.dtg-stat-row.highlight .dtg-stat-num {
  color: #B10D79;
}

/* Label + value */
.dtg-stat-row>div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dtg-stat-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}

.dtg-stat-row.highlight .dtg-stat-label {
  color: #B10D79;
}

.dtg-stat-value {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.dtg-stat-row.highlight .dtg-stat-value {
  color: #ffffff;
  font-weight: 500;
}

.dtg-success .dtg-content strong {
  color: #fff;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .dtg-success .dtg-cards {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .dtg-success {
    padding: 60px 20px;
  }

  .dtg-success .dtg-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .dtg-success .dtg-cards {
    grid-template-columns: 1fr !important;
    /* Stack cards vertically on mobile */
    height: auto;
    gap: 20px;
  }

  .dtg-success .dtg-card {
    height: 350px !important;
    /* Fixed height for mobile cards */
  }

  .dtg-success .dtg-card.active {
    height: 500px !important;
    /* Expanded height for the active mobile card */
  }

  .dtg-success .dtg-content h3 {
    font-size: 16px;
  }

  /* .desktop {
    display: none;
  }

  .mobile {
    display: block;
  } */
}

/* ================= HIGH PERFORMANCE FUNNEL ================= */
/* ================= HIGH PERFORMANCE FUNNEL ================= */
.funnel-section {
  padding: 0px 20px;
  background: #ffffff;
  overflow: hidden;
}

.funnel-container {
  max-width: 1200px;
  margin: 0 auto;

}

.funnel-header {
  /* margin-bottom: 100px; */
  text-align: left;
}

.funnel-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1629;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.funnel-header h2 .pink {
  color: #c0186a;
}

.funnel-desc {
  font-size: 18px;
  color: #4b5563;
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.funnel-badge {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Flow Container */
.funnel-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* margin-top: 60px; */
  padding: 50px 0;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 600px;
}

.flow-line {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
}

.funnel-flow.animate-flow .flow-line {
  animation: lineDraw 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lineDraw {
  to {
    transform: scaleX(1);
  }
}

/* Directional Arrows on the line */
.flow-line::before,
.flow-line::after {
  /* content: url('../images/arrow-right.png'); */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #2563eb;
  font-size: 24px;
  font-weight: bold;
}

.flow-line::before {
  left: 33%;
}

.flow-line::after {
  left: 66%;
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 100%;
  transition: all 0.4s ease;
}

/* Initial hidden states for emergence animation */
.flow-step .node-circle {
  opacity: 0;
  transform: scale(0);
}

.flow-step .step-media.top,
.flow-step .step-content.top {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

.flow-step .step-media.bottom,
.flow-step .step-content.bottom {
  opacity: 0;
  transform: translateY(-40px) scale(0.8);
}

/* Staggered triggers */
.funnel-flow.animate-flow .flow-step:nth-child(2) .node-circle {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.2s;
}

.funnel-flow.animate-flow .flow-step:nth-child(2) .top {
  animation: emergeUp 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

.funnel-flow.animate-flow .flow-step:nth-child(2) .bottom {
  animation: emergeDown 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

.funnel-flow.animate-flow .flow-step:nth-child(3) .node-circle {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.8s;
}

.funnel-flow.animate-flow .flow-step:nth-child(3) .top {
  animation: emergeUp 0.6s ease-out forwards;
  animation-delay: 1.1s;
}

.funnel-flow.animate-flow .flow-step:nth-child(3) .bottom {
  animation: emergeDown 0.6s ease-out forwards;
  animation-delay: 1.1s;
}

.funnel-flow.animate-flow .flow-step:nth-child(4) .node-circle {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 1.4s;
}

.funnel-flow.animate-flow .flow-step:nth-child(4) .top {
  animation: emergeUp 0.6s ease-out forwards;
  animation-delay: 1.7s;
}

.funnel-flow.animate-flow .flow-step:nth-child(4) .bottom {
  animation: emergeDown 0.6s ease-out forwards;
  animation-delay: 1.7s;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes emergeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes emergeDown {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* Circle Node */
.step-node {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.node-circle {
  width: 68px;
  height: 68px;
  background: #ffffff;
  border: 2px solid #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-circle .arrow {
  color: #2563eb;
  font-size: 28px;
  transition: all 0.3s ease;
}

/* Media Cards */
.step-media {
  width: 300px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: #f3f4f6;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.flow-step:hover .step-media {
  transform: scale(1.05) !important;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Interaction Effects */
.flow-step:hover .step-media img {
  transform: scale(1.08);
}

.flow-step:hover .node-circle {
  transform: scale(1.15);
  background: #2563eb;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.flow-step:hover .node-circle .arrow {
  color: #ffffff;
}

/* Content Cards */
.step-content {
  width: 300px;
  height: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Funnel Slider Wrapper */
.funnel-flow-wrapper {
  width: 100%;
  overflow: visible;
  /* Default for desktop */
  position: relative;
}

.funnel-mobile-controls {
  display: none;
  /* Hidden on Desktop */
}

/* Staggered Layout */
.top {
  margin-bottom: 30px;
}

.bottom {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .funnel-flow {
    flex-direction: column;
    padding: 0;
  }

  .flow-line {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .flow-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .step-media,
  .step-content {
    width: 100%;
    margin: 0 !important;
  }

  .top {
    order: 1;
    text-align: right;
  }

  .step-node {
    order: 2;
    margin: 0;
  }

  .bottom {
    order: 3;
    text-align: left;
  }

  .flow-step:nth-child(even) .top {
    order: 3;
    text-align: left;
  }

  .flow-step:nth-child(even) .bottom {
    order: 1;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .funnel-header {
    text-align: left;
    margin-bottom: 40px;
  }

  .funnel-header h2 {
    font-size: 32px;
    font-weight: 600;
    /* text-align: left; */

  }

  .funnel-flow-wrapper {
    overflow: hidden;
    /* Enable clipping for slider */
    /* margin: 0 -20px; */
    /* Counteract container padding */
    /* padding: 0 20px; */
  }

  .funnel-flow {
    display: flex;
    flex-direction: row !important;
    /* Force horizontal for slider */
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: auto;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .flow-step {
    flex: 0 0 100%;
    display: flex !important;
    /* Force flex column instead of grid */
    flex-direction: column !important;
    grid-template-columns: none;
    text-align: center !important;
    padding: 0 20px;
    box-sizing: border-box;
    opacity: 1 !important;
    /* Ensure visibility for slider */
    transform: none !important;
    animation: none !important;
    /* Disable intersection animations for slider stability */
  }

  .flow-line {
    display: none !important;
  }

  .step-media {
    width: 100%;
    height: 220px;
    margin: 0 0 20px 0 !important;
    order: 1;
  }

  .step-node {
    order: 2;
    margin: 0 0 20px 0 !important;
    height: auto;
    display: flex;
    /* Ensure displayed */
  }

  .step-content {
    width: 100%;
    height: auto;
    padding: 0;
    order: 3;
    margin: 0 !important;
    text-align: center !important;
  }

  .funnel-mobile-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding-bottom: 20px;
  }

  .funnel-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #c0186a;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* padding-bottom: 5px; */
  }

  .funnel-nav-btn:active {
    transform: scale(0.9);
    background: #c0186a;
    color: #fff;
  }

  .funnel-dots {
    display: flex;
    gap: 10px;
  }

  .funnel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
  }

  .funnel-dot.active {
    background: #c0186a;
    transform: scale(1.3);
    width: 20px;
    border-radius: 10px;
  }
}

@media (max-width: 640px) {
  .funnel-header h2 {
    font-size: 36px;
  }

  .flow-step {
    grid-template-columns: 1fr;
    text-align: center !important;
    gap: 20px;
  }

  .flow-line {
    display: none;
  }

  .step-node {
    display: none;
  }

  .step-media,
  .step-content {
    width: 100% !important;
    max-width: 100%;
  }

  .top,
  .bottom {
    text-align: center !important;
  }
}

/* ----------------------------------------------------------------------------------------- */
/* Wrapper to avoid affecting existing styles */


/* Background image layer */
.dtg-success::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;

  width: 50%;
  height: 55%;

  /* background: url("../images/Handshake-city.png") no-repeat; */
  background-size: contain;
  background-position: left top;

  opacity: 80;
  /* adjust opacity here */
  pointer-events: none;
  z-index: 0;
}

/* Keep content above background */
.dtg-container {
  position: relative;
  z-index: 1;
}

/* ================= NEW TESTIMONIALS SECTION ================= */
.new-testimonials {
  padding: 50px 0 80px;
  background-color: #ecedf1 !important;
  /* Fallback color */
  background-image: url("../images/contact-bg.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Upward White Arc (White on top, curving down in center) */
/* .new-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%; */
/* Wider for a shallower, sleek curve */
/* height: 520px;
  background: #ffffff;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
  z-index: 1; */
/* Behind content but in front of section bg */
/* box-shadow: 0 10px 30px rgba(0,0,0,0.02); Optional soft edge shadow */
/* } */
.new-testimonials::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  width: 112%;
  height: 520px;
  background: #ffffff;
  border-radius: 0 0 100% 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
  z-index: 1;
}

.nt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  text-align: center;
  position: relative;
  z-index: 10;
}


.nt-header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  /* margin-bottom: 40px; */
  position: relative;
  z-index: 2;
}


.nt-accent {
  width: 5px;
  height: 45px;
  background: #B10D79;
  border-radius: 4px;
}

.nt-header h2 {
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

/* ARC LAYOUT */
.nt-arc-wrapper {
  position: relative;
  height: 350px;
  margin-bottom: -50px;
}

.nt-arc-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.nt-client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nt-client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arc Positioning */
.nt-client-img.far-left,
.nt-client-img.far-right {
  margin-bottom: 220px;
  width: 80px;
  height: 80px;
}

.nt-client-img.mid-left,
.nt-client-img.mid-right {
  margin-bottom: 150px;
  width: 100px;
  height: 100px;
}

.nt-client-img.center {
  width: 160px;
  height: 160px;
  margin-bottom: 60px;
  border: 2px solid #223a90;
  /* Blue border for center */
  transform: scale(1.1);
  z-index: 5;
}

/* Curved Background SVG effect */
.nt-arc-bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 600px;
  /* Soft transition glow */
  /* background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%); */
  z-index: 0;
  pointer-events: none;
}

.nt-client-img.hidden {
  display: none;
}


/* Wave overlay */
.nt-arc-wrapper::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 400px;
  /* background: radial-gradient(circle at center, #f8f9fa 0%, transparent 70%); */
  border-radius: 50%;
  z-index: 0;
}

/* TESTIMONIAL CARD */
.nt-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 10;

}

.nt-testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  /* Slightly more rounded */
  padding: 60px 100px;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  /* Softer, larger shadow */
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: 40px;
}


.nt-client-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-style: italic;
}

.nt-client-role {
  font-size: 16px;
  color: #888;
  margin-bottom: 25px;
}

.nt-quote {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  /* font-weight: 500; */
  max-width: 650px;
  margin: 10px auto;
}

/* NAVIGATION BUTTONS */
.nt-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #B10D79;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(177, 13, 121, 0.3);
  /* padding-bottom: 5px; */
}

.nt-nav-btn:hover {
  background: #d0108d;
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(177, 13, 121, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nt-arc-images {
    gap: 30px;
  }

  .nt-testimonial-card {
    padding: 40px 50px;
  }
}

@media (max-width: 768px) {
  .nt-arc-wrapper {
    height: 250px;
  }

  .nt-arc-images {
    gap: 15px;
  }

  .nt-client-img.far-left,
  .nt-client-img.far-right {
    display: none;
  }

  .nt-client-img.center {
    width: 120px;
    height: 120px;
  }

  .nt-testimonial-card {
    padding: 30px 20px;
  }

  .nt-card-wrapper {
    gap: 15px;
  }

  .nt-nav-btn {
    width: 40px;
    height: 40px;
  }
}


/* ---------------------------------------------------------------------------------- */
/* ================= CUSTOM CONTACT SECTION ================= */
.custom-contact-section {
  position: relative;
  padding: 50px 0;
  background-image: url('../images/contact-background-img.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Blue Overlay */
.custom-contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 58, 144, 0.85);
  /* Deep Blue Overlay */
  z-index: 1;
  backdrop-filter: blur(2px);
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 10px;
}

.title-underline {
  width: 80px;
  height: 2px;
  background: #1a1a1a;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Form Styling */
.actual-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .form-group {
  flex: 1;
}

.actual-form input,
.actual-form select,
.actual-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  background: #fff;
  font-family: inherit;
}

.actual-form textarea {
  resize: vertical;
  min-height: 100px;
}

.actual-form input::placeholder,
.actual-form textarea::placeholder {
  color: #999;
}

/* International Phone Input Adjustments */
.iti {
  width: 100%;
}

.iti__country-list {
  z-index: 100;
  color: #333;
  background-color: #fff;
}

.iti input {
  /* Ensure it matches the rest of the form's padding if the library overrides it */
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.actual-form input:focus,
.actual-form select:focus,
.actual-form textarea:focus {
  border-color: #223a90;
}

/* Custom Select Arrow */
/* Custom Multi-select Services */
.services-checkbox-group {
  margin-bottom: 20px;
}

.services-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 200px;
  overflow-y: auto;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fdfdfd;
}

/* Custom Scrollbar for Services Grid */
.services-grid::-webkit-scrollbar {
  width: 6px;
}

.services-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: #b10d79;
  border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb:hover {
  background: #d0108d;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-item:hover {
  transform: translateX(3px);
}

.service-item input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  cursor: pointer;
  accent-color: #b10d79;
  border-radius: 4px;
  margin: 0;
}

.service-item label {
  font-size: 13px;
  color: #444;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-height: 250px;
  }
}

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* Checkbox */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 15px 0;
}

.terms-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #b10d79;
  flex-shrink: 0;
  margin-top: 4px;
}

.terms-checkbox label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
  user-select: none;
}

/* Submit Button */
.submit-now-btn {
  background: #b10d79;
  color: #fff;
  border: none;
  margin-top: 15px;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(177, 13, 121, 0.3);
}

.submit-now-btn:hover {
  background: #d0108d;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(177, 13, 121, 0.4);
}

/* Right Illustration */
.contact-right-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ================= CONTACT RESPONSIVE ================= */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  .contact-form-card {
    padding: 40px;
  }

  .contact-right-visual {
    display: none;
  }
}

@media (max-width: 600px) {
  .custom-contact-section {
    padding: 60px 0;
  }

  .contact-form-card h2 {
    font-size: 32px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-card {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .submit-now-btn {
    width: 100%;
  }

  .contact-right-visual {
    display: none;
  }
}

/* ------------------------------------------------------------------------------- */
.footer {
  background: #ffffff;
  border-top: 1px solid #eee;
}

/* Main Footer */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  height: 140px;
  margin-bottom: 15px;
  cursor: pointer;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #141313;
}

/* Columns */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000;
}

ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
}

ul li a:hover {
  color: #9f9d9d;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 16px;
  color: #1a1919;
  margin-bottom: 8px;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 20px;
}

.contact-list a,
.contact-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #1a1919;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #B10D79;
}

.contact-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-list span {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Social icons */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 50px;
  /* 👈 bigger */
  height: 50px;
  cursor: pointer;
}

ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
}

ul li a:hover {
  color: #797878;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  height: 50px;
  width: 100%;

}

.social-icons span {
  width: 60px;
  height: 60px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  align-items: end;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
}

/* Bottom Bar */
.footer-bottom {
  background: #223a90;
  color: #fff;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  cursor: pointer;
}

/* Responsiveness for Services Section */
@media (max-width: 1024px) {

  .dtg-services-header {
    margin-bottom: 0px;
  }

  .dtg-services-content {
    flex-direction: column;
    gap: 60px;
  }

  .dtg-services-left {
    height: 500px;
    width: 100%;
    order: 1;
    /* Move images below text but above service lists if needed, or keep at top? Usually images at top or middle. Let's keep original order for now but ensure it looks good. */
    display: flex;
    justify-content: center;
    perspective: 1000px;
  }

  .image-wrapper {
    left: 50% !important;
    transform: translateX(-50%) rotate(0deg) scale(0.9) !important;
    max-width: 300px;
    height: auto;
  }

  .image-wrapper.active {
    transform: translateX(-50%) rotate(6deg) scale(1) !important;
    display: none;
  }

  .dtg-services-right {
    width: 100%;
    order: 2;
  }

  .service-category-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    transform: none !important;
    /* Disable translateX hover effect on smaller screens to avoid horizontal scroll */
  }

  .service-category-block:hover,
  .service-category-block.active {
    transform: scale(1.02) !important;
  }

  .block-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    grid-template-columns: none;
    /* Reset grid */
  }

  .block-info h3 {
    flex: none;
    font-size: 28px;
    text-align: center;
  }

  .block-info ul {
    border-left: none;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .block-info ul li {
    font-size: 16px;
    white-space: normal;
    /* Allow wrapping on mobile */
  }
}

@media (max-width: 768px) {
  .dtg-services-section {
    padding: 60px 20px;
  }

  .dtg-services-header {
    /* text-align: center; */
    text-align: start;
  }

  .dtg-services-label {
    justify-content: start;
  }

  .dtg-services-header h2 {
    font-size: 28px;
  }

  .dtg-services-desc {
    font-size: 16px;
    margin: 0 auto;
  }

  .dtg-services-left {
    height: 400px;
  }

  .tilted-img {
    width: 250px;
    height: 380px;
  }

  .rectangle {
    width: 100px;
    left: -10px;
    bottom: -10px;
  }
}

/* ================= BLOG & ARTICLES ================= */
.dtg-blog-section {
  padding: 100px 40px;
  background: #ffffff;
}

.dtg-blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dtg-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.dtg-blog-title-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dtg-blog-line {
  width: 5px;
  height: 40px;
  background: #B10D79;
  border-radius: 4px;
}

.dtg-blog-title-area h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.dtg-blog-nav {
  display: flex;
  gap: 15px;
}

.dtg-blog-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #c0186a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  transition: all 0.3s ease;
  /* transform: translate(-50%, 50%); */
}

.dtg-blog-nav-btn:hover {
  background: #B10D79;
  transform: scale(1.15);
  /* transform: translate(-50%, 50%); */
}

.dtg-blog-content {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
}

.dtg-blog-image-wrapper {
  flex: 1;
  width: 380px;
  height: 290px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dtg-blog-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.dtg-blog-image-wrapper:hover img {
  transform: scale(1.05);
}

.dtg-blog-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dtg-blog-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 18px;
  background: #B10D79;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.dtg-blog-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.dtg-blog-info h3 span {
  color: #c0186a;
}

.dtg-blog-info p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dtg-blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 18px;
  background: #c0186a;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  width: fit-content;
  transition: all 0.3s ease;
}

.dtg-blog-view-all:hover {
  background: #B10D79;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 40, 122, 0.3);
}

/* Responsive Blog */
@media (max-width: 992px) {
  .dtg-blog-content {
    flex-direction: column;
    gap: 40px;
  }

  .dtg-blog-info h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .dtg-blog-section {
    padding: 60px 20px;
  }

  .dtg-blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .dtg-blog-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .dtg-blog-image-wrapper {
    width: 100%;
  }

  .dtg-blog-info p {
    margin-bottom: 0px;
  }

  .dtg-blog-view-all {
    font-size: 14px;
  }
}

/* ================= FOOTER RESPONSIVE ================= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about p {
    max-width: 400px;
    margin-bottom: 20px;
  }

  .footer-col h4 {
    text-align: start;
    margin-bottom: 5px;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .footer-col ul li {
    text-align: start;
  }

  .footer-logo {
    height: 100px;
    /* Smaller logo on mobile */
  }

  .contact-list a,
  .contact-list .contact-item {
    justify-content: start;
    text-align: left;
  }

  .social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .footer-links a {
    margin-left: 0;
  }
}

/* ================= FLOATING BUTTONS ================= */

/* ===== WhatsApp Chat Widget ===== */
.whatsapp-widget {
  pointer-events: none !important;
  position: fixed;
  bottom: 20px;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Floating Toggle Button */
.whatsapp-float {
  width: 48px;
  height: 48px;
  background-color: #22c55e;
  border: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  color: white;
}

.whatsapp-float:hover {
  width: 144px;
}

/* Open icon (WhatsApp logo) */
.whatsapp-float .wa-icon-open {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

/* Close icon (X) */
.whatsapp-float .wa-icon-close {
  width: 24px;
  height: 24px;
  stroke: #fff;
  position: absolute;
  left: 12px;
  top: 12px;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

/* WhatsApp Text */
.whatsapp-float .wa-float-text {
  margin-left: 12px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .wa-float-text {
  opacity: 1;
}

/* Active state: switch icons */
.whatsapp-float.wa-active {
  background-color: #16a34a;
}

.whatsapp-float.wa-active .wa-icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.whatsapp-float.wa-active .wa-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ---- Chat Panel ---- */
.wa-chat-panel {
  width: 310px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform-origin: bottom left;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  order: -1;
  /* panel sits above button */
  margin-left: 20px;
}

.wa-chat-panel.wa-open {
  pointer-events: auto !important;
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Panel Header */
.wa-panel-header {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wa-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.wa-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.wa-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.wa-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wa-close-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

/* Panel Body (Greeting) */
.wa-panel-body {
  background: #ECE5DD;
  padding: 18px 14px;
  min-height: 80px;
}

.wa-greeting-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  max-width: 90%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  position: relative;
}

.wa-greeting-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-greeting-bubble p {
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* Panel Footer (Input) */
.wa-panel-footer {
  padding: 12px 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
}

.wa-message-input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: inherit;
  resize: none;
  outline: none;
  color: #333;
  line-height: 1.4;
  transition: border-color 0.2s ease;
}

.wa-message-input:focus {
  border-color: #25D366;
}

.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-start-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.wa-start-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: #223a90;
  border: none;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  box-shadow: 0 4px 12px rgba(34, 58, 144, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  color: white;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  width: 144px;
  background-color: #1a2d70;
  box-shadow: 0 6px 20px rgba(34, 58, 144, 0.4);
}

.scroll-to-top-btn .scroll-to-top-text {
  margin-right: 12px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-to-top-btn:hover .scroll-to-top-text {
  opacity: 1;
}

.scroll-to-top-btn svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2.5;
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 15px;
    left: 0;
  }

  .wa-chat-panel {
    margin-left: 15px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
  }

  .whatsapp-float .wa-icon-open {
    width: 32px;
    height: 32px;
  }

  .wa-chat-panel {
    width: 280px;
  }

  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 0;
  }

  .scroll-to-top-btn:hover {
    width: 130px;
  }

  .scroll-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ================= POPUP MODAL ================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  transform: translateY(40px);
  transition: all 0.4s ease;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);

  /* Hide scrollbar for Chrome, Safari and Opera */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.popup-card::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.popup-overlay.active .popup-card {
  transform: translateY(0);
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #b10d79;
}

/* ================= THANK YOU POPUP STYLES ================= */
.thank-you-card {
  max-width: 450px !important;
  text-align: center;
  padding: 40px !important;
  border-radius: 20px !important;
}

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(177, 13, 121, 0.1);
  color: #B10D79;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.success-icon svg {
  width: 50px;
  height: 50px;
}

.thank-you-content h2 {
  font-size: 32px;
  color: #0a1628;
  margin: 0;
}

.thank-you-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.close-thank-you {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.close-thank-you:hover {
  color: #333;
}

.close-thank-you-btn {
  margin-top: 10px;
  padding: 12px 30px !important;
  cursor: pointer;
}

/* Ensure form card inside popup looks good */
.popup-card .contact-form-card {
  box-shadow: none;
  /* Shadow is on the popup-card */
  padding: 40px;
}

@media (max-width: 768px) {
  .popup-card {
    max-height: 95vh;
  }

  .popup-card .contact-form-card {
    padding: 30px 20px;
  }

  .popup-card .contact-form-card h2 {
    font-size: 24px;
  }
}

/* ================= NEW TESTIMONIALS (ARC LAYOUT) ================= */
.new-testimonials {
  padding: 100px 20px;
  background: #fdfdfd;
  overflow: hidden;
  position: relative;
}

.nt-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nt-header {
  text-align: center;
  /* margin-bottom: 80px; */
}

.nt-header h2 {
  /* font-size: 42px; */
  /* font-weight: 700; */
  color: #0a1628;
  position: relative;
  display: inline-block;
}

/* .nt-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #B10D79;
  border-radius: 2px;
} */

/* Arc Wrapper */
.nt-arc-wrapper {
  position: relative;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -50px;
  z-index: 2;
}

.nt-arc-images {
  position: relative;
  width: 100%;
  /* max-width: 800px; */
  height: 100%;
}

.nt-client-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 140px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  z-index: 1;
  opacity: 0.6;
  /* filter: grayscale(100%); */
}

.nt-client-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Position Classes for Arc */
.nt-client-img.far-left {
  left: 10%;
  /* bottom: 20px; */
  transform: translate(-50%, 0) scale(0.85);
}

.nt-client-img.mid-left {
  left: 30%;
  /* bottom: 80px; */
  transform: translate(-50%, 0) scale(0.9);
}

.nt-client-img.center {
  left: 50%;
  /* bottom: 120px; */
  width: 140px;
  height: 70px;
  transform: translate(-50%, 0) scale(1.1);
  border-color: #B10D79;
  box-shadow: 0 15px 35px rgba(177, 13, 121, 0.25);
  opacity: 1;
  filter: grayscale(0%);
  z-index: 10;
}

.nt-client-img.center::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 10px;
  border: 1px solid #B10D79;
  opacity: 0.4;
  animation: nt-pulse 2s infinite;
}

.nt-client-img.mid-right {
  left: 70%;
  /* bottom: 80px; */
  transform: translate(-50%, 0) scale(0.9);
}

.nt-client-img.far-right {
  left: 90%;
  /* bottom: 20px; */
  transform: translate(-50%, 0) scale(0.85);
}

@keyframes nt-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  70% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Card Wrapper */
.nt-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}

.nt-testimonial-card {
  background: #fff;
  width: 100%;
  /* max-width: 650px; */
  padding: 20px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nt-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 100px;
  color: #B10D79;
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.nt-card-content {
  transition: all 0.4s ease;
}

.nt-client-name {
  font-size: 22px;
  font-weight: 700;
  color: #0a1628;
  margin-top: 25px;
  margin-bottom: 2px;
}

.nt-client-role {
  font-size: 14px;
  color: #B10D79;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nt-quote {
  /* font-size: 20px; */
  color: #444;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}

/* Nav Buttons */
.nt-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  color: #0a1628;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nt-nav-btn:hover {
  background: #B10D79;
  color: #fff;
  border-color: #B10D79;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(177, 13, 121, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nt-arc-wrapper {
    height: 275px;
    /* margin-bottom: 30px; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .new-testimonials {
    padding: 60px 15px 40px;
  }

  .new-testimonials::before {
    top: -50px;
    height: 300px;
  }

  .nt-header {
    margin-bottom: 60px !important;
  }

  .nt-header .nt-accent {
    height: 55px;
  }

  .nt-header h2 {
    font-size: 26px;
  }

  /* Adjust Arc for mobile */
  /* .nt-arc-wrapper {
    height: 160px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  } */

  .nt-client-img {
    width: 60px;
    height: 30px;
    border-width: 2px;
  }

  .nt-client-img.center {
    width: 110px;
    height: 55px;
    /* bottom: 50px; */
  }

  .nt-client-img.mid-left {
    left: 20%;
    bottom: 25px;
  }

  .nt-client-img.mid-right {
    left: 80%;
    bottom: 25px;
  }

  .nt-client-img.far-left {
    left: 4%;
    bottom: -5px;
  }

  .nt-client-img.far-right {
    left: 96%;
    bottom: -5px;
  }

  /* Card Layout for mobile */
  .nt-card-wrapper {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .nt-testimonial-card {
    width: 100%;
    padding: 30px 20px;
    order: -1;
    /* Keep card at top */
    min-height: 200px;
    border-radius: 20px;
  }

  .nt-testimonial-card::before {
    font-size: 60px;
    top: 10px;
    left: 20px;
  }

  .nt-quote {
    font-size: 16px;
  }

  .nt-client-name {
    font-size: 20px;
  }

  .nt-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
  position: relative;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal.fade-up {
  transform: translateY(50px);
}

.reveal.fade-left {
  transform: translateX(-50px);
}

.reveal.fade-right {
  transform: translateX(50px);
}

.reveal.active {
  transform: translate(0, 0);
  opacity: 1;
}

/* Staggered delay for sectors within a section */
.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}

/* ================= MOBILE REVEAL ANIMATION (MOBILE ONLY) ================= */
@media (max-width: 768px) {
  .mobile-reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s ease-out;
  }

  .mobile-reveal.fade-up {
    transform: translateY(50px);
  }

  .mobile-reveal.fade-left {
    transform: translateX(-50px);
  }

  .mobile-reveal.fade-right {
    transform: translateX(50px);
  }

  .mobile-reveal.active {
    transform: translate(0, 0);
    opacity: 1;
  }

  .mobile-reveal.delay-1 {
    transition-delay: 0.1s;
  }

  .mobile-reveal.delay-2 {
    transition-delay: 0.2s;
  }

  .mobile-reveal.delay-3 {
    transition-delay: 0.3s;
  }

  .mobile-reveal.delay-4 {
    transition-delay: 0.4s;
  }
}

/* ================= CUSTOM ARROW ICONS ================= */
.dtg-btn-arrow {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover .dtg-btn-arrow {
  transform: translateX(5px);
}

.dtg-blog-nav-btn i,
.funnel-nav-btn i,
.nt-nav-btn i {
  font-size: 18px;
  color: #2da9d7;
}

.dtg-blog-nav-btn i {
  color: #fff;
}

.dtg-blog-view-all i {
  font-size: 14px;
  vertical-align: middle;
  margin-left: 6px;
  transition: transform 0.3s ease;
  padding-top: 3px;
}

.dtg-blog-view-all:hover i {
  transform: translateX(4px);
}

/* ================= RESPONSIVE IMAGE SWITCHING (.desktop / .mobile) ================= */
/* On desktop: show .desktop image, hide .mobile image */
.dtg-image img.desktop {
  display: block;
}

.dtg-image img.mobile {
  display: none;
}

/* On mobile: hide .desktop image, show .mobile image */
@media (max-width: 768px) {
  .dtg-image img.desktop {
    display: none;
  }

  .dtg-image img.mobile {
    display: block;
  }

  .dtg-image img.mobile.up {
    object-position: top;
  }
}