/* ===== main page ===== */
html,
body {
  margin: 0;
  /* padding: 0; */
  padding-top: 80px;
  /* background: #1c6bb8; */
  font-family: poppins;
  overflow-x: hidden;
  width: 100%;
}

/* ================= HERO ANIMATIONS ================= */

/* Left side text animation */
.hero-text {
  opacity: 0;
  transform: translateX(-80px);
  animation: textFloatIn 1.2s ease forwards;
}

/* Right side image animation */
.hero-image img {
  opacity: 0;
  transform: translateX(80px);
  animation: imageFloatIn 1.2s ease forwards;
  animation-delay: 0.4s;
}

/* Text Animation Keyframes */
@keyframes textFloatIn {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Image Animation Keyframes */
@keyframes imageFloatIn {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(77, 44, 94, 0.75), rgba(255, 120, 45, 0.55)),
    url("image/bg1.png"), url("image/bg2.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .container-fluid {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-text {
  padding: 100px 0 0 60px;
  font-family: poppins;
  color: white;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 20px;
  height: auto;
  width: auto;
}

.hero-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 30px;
  /* opacity: 0.9; */
  color: white;
  height: auto;
  width: auto;
}

.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.hero-image img {
  height: 700px;
  width: auto;
  object-fit: contain;
  margin-right: -12px;
}

/* ===== TESTIMONIAL WRAPPER ===== */
.hero-testimonial {
  height: 50px;
  gap: 8px;
  margin-top: 60px;
}

/* Avatars */
.avatar-group {
  margin-right: 6px;
}

.avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #4D2C5E;
  object-fit: cover;
  margin-left: -22px;
}

.avatar-img:first-child {
  margin-left: 0;
}

/* 5k circle */
.testimonial-count {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 2px solid #4D2C5E;
  color: #4D2C5E;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.15;
  color: #ffffff;
}

.btn-arrow {
  font-size: 36px;
  font-weight: 500;
  margin-left: 5px;
  transition: 0.3s ease;
}

.hero-btn {
  height: 60px;
  padding: 12px 24px;
  min-width: 200px;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #4D2C5E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* purple slide bg */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  
  /* background: linear-gradient(135deg, rgb(245, 89, 42), rgba(255, 45, 129, 0.55)); */
  
  transition: 0.4s ease;
  z-index: 0;
}

.hero-btn:hover::before {
  left: 0;
}

.btn-text,
.btn-arrow {
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
}

/* hover text white */
.hero-btn:hover .btn-text {
  color: white;
  
}

.hero-btn:hover .btn-arrow {
  color: white;
  transform: translateX(8px);
}

/* lift effect */
.hero-btn:hover {
  /* border: 1px solid #4D2C5E; */
  transform: translateY(-4px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.25);
}

/* ==========================
   RESPONSIVE HERO (MOBILE/TABLET)
========================== */

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding-bottom: 60px;
  }

  .hero-text {
    padding: 30px 20px 0 20px !important;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 38px;
    line-height: 120%;
    font-weight: 500;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 26px;
    margin-top: 15px;
  }

  .hero-btn {
    font-size: 16px;
    height: 45px;
    padding: 10px 18px;
    min-width: 160px;
  }

  .btn-arrow {
    font-size: 18px;
  }

  /* Building Image hide */
  .hero-image {
    display: none !important;
  }

  /* testimonial mobile size */
  .avatar-img,
  .testimonial-count {
    width: 40px;
    height: 40px;
    margin-left: -18px;
    margin-top: 5px;
  }

  .testimonial-text {
    font-size: 12px;
    line-height: 1.2;
  }
}

/* ==========================
   EXTRA SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .hero-text {
    padding: 50px 15px 0 15px !important;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 120%;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-btn {
    font-size: 14px;
    height: 42px;
    padding: 8px 16px;
  }

  .hero-testimonial {
    margin-top: 10px;
  }
}


/* ==========================
   HEADER 
========================== */

.site-header {
  width: 100%;
  height: 80px;
  background: #4D2C5E;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 999999;
  box-shadow: 0px 4px 15px rgba(33, 33, 33, 0.235);
}

/* Header container */
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 80px;
  background-color: #4D2C5E;
}

/* Flex layout inside header */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo wrapper */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo icon */
.logo-img {
  width: 34px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Logo text */
.logo-title {
  font-family: Italiana;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link-custom {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  padding-bottom: 6px;
  transition: 0.3s ease;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.35s ease;
}

.nav-link-custom:hover {
  color: #ffffff;
  font-weight: bold;
}

.nav-link-custom:hover::after {
  width: 100%;
}

/* Button */
.btn-meeting {
  /* background-color: rgba(255, 120, 45, 0.55); */

 background: linear-gradient(135deg, rgba(255, 45, 129, 0.55), rgb(245, 89, 42)); 
 /* background: linear-gradient(135deg, rgba(255, 120, 45, 0.55), rgba(255, 120, 45, 0.55)); */


  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-meeting:hover {
 background: linear-gradient(135deg, rgb(245, 89, 42), rgba(255, 45, 129, 0.55));
}

/* MOBILE TOGGLE ICON */
.mobile-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* MOBILE MENU (Default hidden) */
.mobile-menu {
  display: none;
}

/* ==========================
   RESPONSIVE (LAPTOP)
========================== */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 40px;
  }

  .nav-link-custom {
    font-size: 16px;
  }

  .logo-title {
    font-size: 22px;
  }

  .btn-meeting {
    font-size: 14px;
    padding: 9px 15px;
  }
}

/* ==========================
   RESPONSIVE (TABLET)
========================== */
@media (max-width: 992px) {
  .header-inner {
    padding: 0 25px;
  }

  .header-nav {
    gap: 18px;
  }

  .nav-link-custom {
    font-size: 15px;
  }

  .btn-meeting {
    font-size: 13px;
    padding: 8px 14px;
  }

  .logo-title {
    font-size: 20px;
  }
}

/* ==========================
   RESPONSIVE (MOBILE)
========================== */
@media (max-width: 768px) {
  .site-header {
    height: 80px;
  }

  .header-inner {
    padding: 14px 14px;
  }

  .logo-img {
    width: 30px;
  }

  .logo-title {
    font-size: 18px;
  }

  /* Hide desktop nav */
  .header-nav {
    display: none;
  }

  /* Show toggle */
  .mobile-toggle {
    display: block;
  }

  /* Mobile menu full screen */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: black;
    padding: 25px 18px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    z-index: 9999999;
    animation: slideMenu 0.35s ease forwards;
  }

  @keyframes slideMenu {
    from {
      opacity: 0;
      transform: translateX(100%);
    }

    to {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  .mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 120, 45, 0.15);
    transition: 0.3s ease;
  }

  .mobile-link:hover {
    background: rgba(255, 120, 45, 0.25);
  }

  .btn-meeting.mobile-btn {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
  }
}

/* ==========================
   EXTRA SMALL MOBILE
========================== */
@media (max-width: 400px) {
  .logo-title {
    font-size: 16px;
  }

  .mobile-toggle {
    font-size: 28px;
  }
}

/* achievements-section */

/* ================= Achievements Blur + Focus Effect ================= */

.ach-item.dw-ach-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px;
  border-radius: 14px;

  opacity: 1;
  filter: blur(2px);
  transform: scale(0.98);

  transition: all 0.6s ease;
}

.ach-item.dw-ach-item.active {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1.05);
}

/* ================= Corner Brackets (Only Achievements) ================= */

.achievements-section .dw-corner-box {
  position: absolute;
  inset: -6px;
  pointer-events: none;
  z-index: 9999;
}

/* TL + BR (pseudo elements) */
.achievements-section .dw-corner-box::before,
.achievements-section .dw-corner-box::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(77, 44, 94, 0.75);

  
}

/* TR + BL (real spans) */
.achievements-section .dw-corner-box .tr,
.achievements-section .dw-corner-box .bl {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(77, 44, 94, 0.75);
  display: block;
}

/* Top Left */
.achievements-section .dw-corner-box::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* Bottom Right */
.achievements-section .dw-corner-box::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Top Right */
.achievements-section .dw-corner-box .tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

/* Bottom Left */
.achievements-section .dw-corner-box .bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.achievements-section {
  background: #EBEBEB;
  padding: 80px 0px;
}

.ach-title {
  font-size: 45px;
  font-weight: 500;
  padding-right: 100px;
  color: black;
  line-height: 1.2;
}

/* ONE STAT */
.ach-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ach-item img {
  width: 60px;
  height: 60px;
}

.ach-item h4 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #263640;
}

.ach-item p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #263640;
}

@media (min-width: 992px) {
  .achievements-section .col-lg-8 {
    padding-left: 250px;
  }
}

@media (max-width: 768px) {
  .achievements-section {
    padding: 60px 20px;
    text-align: center;
  }

  .ach-title {
    font-size: 25px;
    padding-right: 0;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .achievements-section .col-lg-8 {
    padding-left: 0 !important;
  }

  .ach-item {
    flex-direction: column;
    text-align: center;
    gap: -5px;
  }

  .ach-item img {
    width: 45px;
    height: 45px;
  }

  .ach-item h4 {
    font-size: 18px;
  }

  .ach-item p {
    font-size: 16px;
  }
}

/* ================= WHY DWELLORA SECTION ================= */

.why-section {
  position: relative;
  overflow: hidden;
  padding: 80px 100px;
  background: #FDFDFD;
}

/* Floating Glow Blob */
.why-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(255, 120, 45, 0.16);
  border-radius: 50%;
  top: 15%;
  left: -160px;
  filter: blur(90px);
  animation: floatGlow 7s ease-in-out infinite;
}

.why-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(77, 44, 94, 0.16);
  border-radius: 50%;
  bottom: -120px;
  right: -180px;
  filter: blur(100px);
  animation: floatGlow2 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(70px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatGlow2 {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-60px) scale(1.1);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

/* Ensure content stays above glow */
.why-section .container {
  position: relative;
  z-index: 2;
}

/* ================= WHY HEADING ================= */

.why-section h2 {
  font-size: 45px;
  font-weight: 500;
  color: black;
  text-align: center;
  margin-bottom: 60px;
  font-family: Poppins;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.why-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 90%;
  height: 3px;
  /* background: linear-gradient(90deg, rgba(255, 120, 45, 0.55), rgba(77, 44, 94, 0.75)); */
  background-color:rgba(77, 44, 94, 0.75) ;
  border-radius: 10px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: underlineMove 4s ease-in-out infinite;
}

@keyframes underlineMove {
  0% {
    transform: translateX(-50%) scaleX(0);
  }

  50% {
    transform: translateX(-50%) scaleX(1);
  }

  100% {
    transform: translateX(-50%) scaleX(0);
  }
}

/* ================= CARD MICRO INTERACTION ================= */

.why-card-item {
  background: rgba(226, 227, 229, 0.2);
  border: 1px solid rgba(77, 44, 94, 0.25);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  display: flex;
  gap: 16px;

  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
}

/* Gradient Slide Overlay */
.why-card-item::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    120deg,
    rgba(255, 120, 45, 0.18),
    rgba(77, 44, 94, 0.18),
    rgba(255, 120, 45, 0.10)
  ); */

  background: linear-gradient(
    120deg,
    rgba(255, 120, 45, 0.55),
    rgba(77, 44, 94, 0.75),
    rgba(255, 120, 45, 0.10)
  );

 background: linear-gradient(90deg, rgba(255, 120, 45, 0.55), rgba(77, 44, 94, 0.75));

  transform: translateX(-100%);
  transition: 0.6s ease;
}

/* Shine Effect Like Button */
.why-card-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 130%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(77, 44, 94, 0.75),
    transparent
  );
  transform: skewX(-45deg);
  transition: 0.8s ease;
}

/* Hover Gradient Slide */
.why-card-item:hover::before {
  transform: translateX(0);
}

/* Hover Shine Move */
.why-card-item:hover::after {
  left: 130%;
}

/* Card Lift + Glow Border */
.why-card-item:hover {
  transform: translateY(-10px) scale(1.02);
  border: 1px solid rgba(255, 120, 45, 0.55);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */
.why-card-item img {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  transition: 0.4s ease;
}

/* Icon Rotate + Scale */
.why-card-item:hover img {
  transform: rotate(-10deg) scale(1.15);
}

/* Text */
.why-card-item h5 {
  font-size: 28px;
  font-family: poppins;
  font-weight: 600;
  color: #2E2E27;
  margin-bottom: 6px;
  position: relative;
  z-index: 5;
  transition: 0.3s ease;
}

.why-card-item p {
  font-size: 18px;
  font-family: poppins;
  font-weight: 400;
  line-height: 22px;
  color: #2E2E27;
  margin: 0;
  position: relative;
  z-index: 5;
  transition: 0.3s ease;
}

/* Text Color Slight Change */
.why-card-item:hover h5 {
  color: black;
}

/* ================= WHY BUTTON PREMIUM EFFECT ================= */

.why-btn {
  margin-top: 20px;
  padding: 18px 32px;
  background: #4D2C5E;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(77, 44, 94, 0.25);
  transition: 0.4s ease;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Slide Overlay */
.why-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: 0.4s ease;
  z-index: -1;
}

/* Hover Slide In */
.why-btn:hover::before {
  left: 0;
}

/* Optional Lift Effect */
.why-btn:hover {
  transform: translateY(-6px);
  border: 1px solid #000;
}

/* Click Effect */
.why-btn:active {
  transform: scale(0.95);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .why-section {
    padding: 60px 40px;
  }

  .why-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .why-card-item {
    padding: 28px;
    gap: 14px;
  }

  .why-card-item img {
    width: 55px;
    height: 55px;
  }

  .why-card-item h5 {
    font-size: 22px;
  }

  .why-card-item p {
    font-size: 15px;
    line-height: 22px;
  }

  .why-btn {
    font-size: 16px;
    padding: 14px 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-section {
    padding: 50px 18px;
  }

  .why-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .why-section h2::after {
    width: 80%;
  }

  .why-card-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 12px;
  }

  .why-card-item img {
    width: 50px;
    height: 50px;
  }

  .why-card-item h5 {
    font-size: 18px;
  }

  .why-card-item p {
    font-size: 13px;
    line-height: 20px;
  }

  .why-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 0px;
    text-align: center;
  }
}

/* ===================================================
   what make Difference  SECTION
=================================================== */

.dw-difference-section {
  background: #4D2C5E;
  padding: 80px 40px;
  color: #fff;
  font-family: poppins;
  overflow: hidden;
}

.dw-difference-heading {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}

.dw-difference-subheading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.dw-difference-row {
  position: relative;
  align-items: center;
}

/* ===================================================
   CARDS
=================================================== */

.dw-difference-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
  min-height: 75px;
  width: 100%;
}

.dw-difference-card-left {
  border-left: 5px solid #079B28;
}

.dw-difference-card-right {
  border-left: 5px solid #D20F0F;
  background: #FFF1EA;
}

/* ICON */

.dw-difference-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dw-difference-icon-green {
  background: #079B28;
  color: #fff;
}

.dw-difference-icon-red {
  background: #D20F0F;
  color: #fff;
}

/* TEXT */

.dw-difference-text h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #2E2E27;
}

.dw-difference-text p {
  font-size: 12px;
  margin: 4px 0 0;
  color: #2E2E27;
  line-height: 1.4;
}

/* ===================================================
   CONNECTING LINES
=================================================== */

.dw-difference-card-left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background: #FFFFFF;
}

.dw-difference-card-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background: #FFFFFF;
}

.dw-difference-card-left:first-of-type::after,
.dw-difference-card-left:last-of-type::after,
.dw-difference-card-right:first-of-type::before,
.dw-difference-card-right:last-of-type::before {
  display: none;
}

/* ===================================================
   CENTER VS
=================================================== */

.dw-diff-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Brackets (Same for all devices) */

.dw-diff-center::before {
  content: "";
  position: absolute;
  left: 140%;
  transform: translateX(-130px);
  top: -140px;
  width: 90px;
  height: 400px;
  border: 2px solid #ffffff;
  border-right: none;
  border-radius: 18px 0 0 18px;
}

.dw-diff-center::after {
  content: "";
  position: absolute;
  left: -37%;
  transform: translateX(40px);
  top: -140px;
  width: 90px;
  height: 400px;
  border: 2px solid #ffffff;
  border-left: none;
  border-radius: 0 18px 18px 0;
}

.dw-difference-vs-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.dw-difference-vs-text {
  font-size: 36px;
  font-weight: 700;
  color: #4D2C5E;
}

/* ===================================================
   DEFAULT (Mobile Visible)
=================================================== */

.dw-difference-card,
.dw-difference-vs-wrapper {
  opacity: 1;
  transform: none;
}

/* ===================================================
   DESKTOP ANIMATION
=================================================== */

@media (min-width: 992px) {

  .dw-difference-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  }

  .dw-difference-card.show {
    opacity: 1;
    transform: translateY(0);
  }

  .dw-difference-vs-wrapper {
    opacity: 0;
    transform: scale(0);
  }

  .dw-difference-vs-wrapper.show {
    animation: vsPop 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
}

@keyframes vsPop {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.25); }
  80% { transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 991px) {

  .dw-difference-section {
    padding: 50px 20px;
  }

  .dw-difference-row {
    flex-direction: column;
  }

  .dw-difference-heading {
    font-size: 26px;
    text-align: start;
  }

  .dw-difference-subheading {
    text-align: center;
    font-size: 18px;
  }

  .dw-difference-vs-wrapper {
    width: 70px;
    height: 70px;
  }

  .dw-difference-vs-text {
    font-size: 22px;
  }
.dw-diff-center::before,
  .dw-diff-center::after {
    display: none;
  }

   .dw-difference-card-left::after,
  .dw-difference-card-right::before {
    display: none;
  }

  .dw-diff-center{
    padding: 20px;
  }


}

/* ==========================
   VIDEO SPLIDE SECTION
========================== */
.corner-left,
.corner-right {
  opacity: 0;
  transition: all 1.2s ease;
  will-change: transform, opacity;
}

/* Heading Top-Left se */
.corner-left {
  transform: translate(-120px, -80px);
}

/* Paragraph Top-Right se */
.corner-right {
  transform: translate(120px, -80px);
  transition-delay: 0.3s;
}

/* Active hone par */
.animate-corner.active .corner-left,
.animate-corner.active .corner-right {
  opacity: 1;
  transform: translate(0, 0);
}

.dw-video-carousel-section {
  background: #EBEBEB;
  padding: 80px 0px;
  font-family: poppins;
}

.dw-video-carousel-heading h2 {
  font-size: 45px;
  font-weight: 500;
  color: #4D2C5E;
  margin-bottom: 8px;
}

.dw-video-carousel-heading p {
  font-size: 20px;
  color: #050019;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* wrapper */
.dw-video-carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: visible;
}

/* slide box */
.dw-video-slide {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: 0.4s ease;
}

/* active slide bigger */
.dw-video-splide .splide__slide.is-active .dw-video-slide {
  transform: scale(1);
  width: 100%;
  height: 450px;
}

/* video */
.dw-video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.dw-video-overlay {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  z-index: 10;
}

/* play button */
.dw-video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 30px;
  cursor: pointer;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* splide arrows */
.dw-video-splide .splide__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #000000;
  opacity: 1;
  top: auto;
  bottom: -10px;
}

.dw-video-splide .splide__arrow svg {
  fill: #fff;
}

.dw-video-splide .splide__arrow--prev {
  left: 228px;
}

.dw-video-splide .splide__arrow--next {
  right: 228px;
}

/* Default: no overlay */
.dw-video-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: 0.4s ease;
  z-index: 2;
}

/* Only active slide overlay */
.dw-video-splide .splide__slide.is-active .dw-video-slide::after {
  background: rgba(38, 54, 64, 0.4);
}

.dw-video-slide {
  position: relative;
}

.dw-video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.dw-video-overlay {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 13px;
  z-index: 25;
}

.dw-video-splide .splide__list {
  display: flex !important;
  align-items: flex-start !important;
}

.dw-video-slide {
  transform-origin: top center;
}

.dw-video-slide {
  transform: scale(0.9);
  transform-origin: top center;
  transition: 0.4s ease;
}

.dw-video-splide .splide__slide.is-active .dw-video-slide {
  transform: scale(1);
}

.dw-video-splide .splide__arrow svg {
  display: none;
}

.dw-video-splide .splide__arrow::before {
  font-size: 18px;
  color: white;
  font-weight: 400;
}

.dw-video-splide .splide__arrow--prev::before {
  content: "←";
}

.dw-video-splide .splide__arrow--next::before {
  content: "→";
}

/* ==========================
   VIDEO CAROUSEL RESPONSIVE
========================== */

/* Tablet */
@media (max-width: 991px) {
  .dw-video-carousel-section {
    padding: 60px 0px;
  }

  .dw-video-carousel-heading h2 {
    font-size: 24px;
  }

  .dw-video-carousel-heading p {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .dw-video-carousel-wrapper {
    padding-bottom: 80px;
  }

  .dw-video-slide {
    height: 220px;
  }

  .dw-video-splide .splide__slide.is-active .dw-video-slide {
    height: 280px;
  }

  .dw-video-splide .splide__arrow--prev {
    left: 40%;
  }

  .dw-video-splide .splide__arrow--next {
    right: 40%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .dw-video-carousel-section {
    padding: 50px 0px;
  }

  .dw-video-carousel-heading h2 {
    font-size: 22px;
  }

  .dw-video-carousel-heading p {
    font-size: 12px;
    margin-bottom: 25px;
  }

  .dw-video-carousel-wrapper {
    padding-bottom: 70px;
  }

  .dw-video-slide {
    height: 200px;
    border-radius: 10px;
  }

  .dw-video-splide .splide__slide.is-active .dw-video-slide {
    height: 250px;
  }

  .dw-video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .dw-video-overlay {
    font-size: 12px;
    left: 15px;
    bottom: 15px;
  }

  .dw-video-splide .splide__arrow {
    width: 40px;
    height: 40px;
    bottom: -5px;
  }

  .dw-video-splide .splide__arrow--prev {
    left: 25%;
  }

  .dw-video-splide .splide__arrow--next {
    right: 25%;
  }
}

.dw-video-splide .splide__list {
  display: flex !important;
  align-items: flex-start !important;
}

.dw-video-slide {
  transform-origin: top center;
}

.dw-video-slide {
  transform: scale(0.9);
  transform-origin: top center;
  transition: 0.4s ease;
}

.dw-video-splide .splide__slide.is-active .dw-video-slide {
  transform: scale(1);
}

.dw-video-splide .splide__arrow svg {
  display: none;
}

.dw-video-splide .splide__arrow::before {
  font-size: 18px;
  color: white;
  font-weight: 400;
}

.dw-video-splide .splide__arrow--prev::before {
  content: "←";
}

.dw-video-splide .splide__arrow--next::before {
  content: "→";
}

@media (max-width: 576px) {
  .dw-video-splide .splide__slide {
    width: 100% !important;
  }

  .dw-video-slide {
    transform: scale(1) !important;
    height: 260px !important;
  }

  .dw-video-splide .splide__slide.is-active .dw-video-slide {
    height: 260px !important;
  }
}

.dw-video-splide .splide__slide {
  display: flex;
  justify-content: center;
}

@media (max-width: 576px) {
  .dw-video-splide .splide__track {
    overflow: hidden;
  }

  .dw-video-splide .splide__slide {
    width: 100% !important;
  }

  .dw-video-slide {
    width: 100% !important;
    height: 260px !important;
    transform: scale(1) !important;
  }

  .dw-video-splide .splide__slide.is-active .dw-video-slide {
    height: 260px !important;
  }
}


/* ===============================
   REVIEW SECTION
================================ */

.dw-review-section {
  background: #4D2C5E;
  padding: 80px 0;
  overflow: hidden;
}

/* Heading */
.dw-review-heading {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  
}

.dw-type-cursor {
  display: inline-block;
  margin-left: 5px;
  font-weight: 600;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Wrapper */
.dw-review-carousel-wrapper {
 
  padding: 0;
  margin-top: 50px;
  overflow: visible;
}

/* Slide alignment */
.splide__slide {
  display: flex;
  justify-content: center;
  transition: 0.5s ease;
}

/* ===============================
   CARD STYLE
================================ */


/* .dw-review-card-new {
  width: 750px;              
  min-height: auto;          
  padding: 45px 50px;
  border-radius: 26px;
  background: white;
  color: black;
  transition: 0.5s ease;
  transform: scale(0.85);
  opacity: 0.5;
  border: 1px solid rgba(255, 255, 255, 0.55);
} */



/* Active center card */
/* .splide__slide.is-active .dw-review-card-new {
  transform: scale(1);
  opacity: 1;
  background: white;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
} */


/* ===============================
   REVIEW CARD 
================================ */

.dw-review-card-new {
  position: relative;

  width: 700px;
  padding: 45px 50px;
  border-radius: 26px;

  /*  Gradient Background */
  /* background: linear-gradient(
    135deg,
    rgba(255, 45, 129, 0.55),
    rgb(245, 89, 42)
    
  ); */
  background-color: white;

  border: 1.5px solid rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;
  transition: all 0.5s ease;

  transform: scale(0.85);
  opacity: 0.6;
}

/* ===============================
   ACTIVE CENTER CARD
================================ */

.splide__slide.is-active .dw-review-card-new {
  transform: scale(1);
  opacity: 1;

  border: 1.5px solid #ffffff;

  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.3),
    0 25px 70px rgba(0, 0, 0, 0.45);
}

/* ===============================
   HOVER EFFECT
================================ */

.dw-review-card-new:hover { 
  opacity: 1;
  box-shadow:
    0 0 35px rgba(255, 255, 255, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.5);

  border: 1.5px solid #ffffff;
}

.splide__slide.is-active .dw-review-card-new:hover {
 /* background: linear-gradient(
    135deg,
    rgb(245, 89, 42),
    rgba(255, 45, 129, 0.55)  
    
  ); */
 background-color: white;
}

/* TEXT */
.dw-review-text {
  font-size: 18px;
  
  margin-bottom: 30px;
  font-weight: 300;
  color: black !important;
  font-family: poppins;
}

/* USER */
.dw-review-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dw-review-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.dw-review-user h6 {
  font-size: 18px;
  color: #000000;
  margin: 0;
}

.dw-review-stars {
  font-size: 16px;
  color: #ffc250;
}

/* ===============================
   REVIEW CARD - ID STYLE
================================ */
/* 
.dw-review-card-new {
  width: 750px;
  padding: 35px 40px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);

  display: flex;
  gap: 40px;
  align-items: flex-start;

  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.6;
}


.dw-review-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}


.dw-review-left img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}


.dw-review-left h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0 2px;
  color: #000;
  text-align: center;
}


.dw-review-stars {
  font-size: 14px;
  color: #ffc250;
}


.dw-review-right {
  flex: 1;
}

.dw-review-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}


.splide__slide.is-active .dw-review-card-new {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


.dw-review-card-new:hover {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
  .dw-review-card-new {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .dw-review-left {
    width: 100%;
  }

  .dw-review-right {
    margin-top: 15px;
  }
} */


/* ARROW BUTTON */
.dw-review-splide .splide__arrow {
  background: #ffffff !important;   
  border-radius: 50%;
  width: 50px;
  height: 50px;
  opacity: 1 !important;
  border: none !important;
}

/* ARROW ICON COLOR */
.dw-review-splide .splide__arrow svg {
  fill: #000000 !important;   
}

/* HOVER (optional) */
.dw-review-splide .splide__arrow:hover {
  background: transparent !important;
  border: 2px solid white !important;
}

.dw-review-splide .splide__arrow:hover svg {
  fill: #fff !important;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .dw-review-card-new {
    width: 85%;
  }
}

@media (max-width: 992px) {
  .dw-review-heading {
    font-size: 32px;
  }

  .dw-review-card-new {
    width: 95%;
    transform: scale(1);
    opacity: 1;
    padding: 35px;
  }
}

@media (max-width: 576px) {

  .dw-review-section {
    padding: 70px 0;
  }

  .dw-review-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .dw-review-card-new {
    padding: 25px;
    border-radius: 18px;
  }

  .dw-review-text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .dw-review-user img {
    width: 50px;
    height: 50px;
  }

  .dw-review-user h6 {
    font-size: 16px;
  }

  .dw-review-stars {
    font-size: 14px;
  }
}

/* ===============================
   MOVE ARROWS TO BOTTOM CENTER
================================ */

.dw-review-splide {
  position: relative;
  padding-bottom: 90px; /* space for arrows */
}

.dw-review-splide .splide__arrows {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

/* Remove default absolute side positioning */
.dw-review-splide .splide__arrow {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  transform: none;
}

/* Arrow style */
.dw-review-splide .splide__arrow {
  background: #ff782d;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  opacity: 1;
}

.dw-review-splide .splide__arrow svg {
  fill: #fff;
}

.dw-review-splide .splide__arrow:hover {
  background: #ff5722;
}




/* ==========================
   HOW IT WORKS SECTION
========================== */

.dw-how-section {
  background: #FDFDFD;
  padding: 80px 100px;
  font-family: poppins;
}

.dw-how-heading h2 {
  font-size: 45px;
  font-weight: 500;
  color: #1F2D36;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.dw-how-heading p {
  font-size: 18px;
  color: #050019;
  margin-bottom: 40px;
  line-height: 1.5;
}

.dw-how-wrapper {
  position: relative;
}

.dw-how-row {
  row-gap: 65px;
}

/* Step Box */
.dw-how-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 35px;
  transition: 0.4s ease;
}

.dw-how-step:hover {
  transform: translateY(-8px);
}

/* Circle */
.dw-how-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background:#4D2C5E ;
  color: white;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 5;
  transition: 0.4s ease;
}

/* Pulse ring */
.dw-how-circle::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid #4D2C5E;  
  animation: circlePulse 2.5s infinite;
}

@keyframes circlePulse {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Hover circle effect */
.dw-how-step:hover .dw-how-circle {
  background: white;
  color: black;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0px 12px 25px rgba(1, 53, 103, 0.35);
}

/* Title */
.dw-how-step h5 {
  font-size: 25px;
  font-weight: 600;
  color: #2E2E27;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.dw-how-step:hover h5 {
  color: #4D2C5E;
}

/* Paragraph */
.dw-how-step p {
  max-width: 300px;
  font-weight: 500;
  margin: 0 auto;
  font-size: 15px;
  color: #2E2E27;
  line-height: 1.7;
}

/* Button */
.dw-how-btn-wrap {
  margin-top: 40px;
}

.dw-how-btn {
  background: #4D2C5E;
  border: 2px solid #4D2C5E;
  color: #fff;
  padding: 18px 32px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Black Slide Overlay */
.dw-how-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;   /* Slide color */
  transition: 0.4s ease;
  z-index: -1;
}

/* Hover Slide In */
.dw-how-btn:hover::before {
  left: 0;
}

/* Hover Effect */
.dw-how-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.25);
}


/* ==========================
   HORIZONTAL LINES FLOW ANIMATION
========================== */

.dw-how-wrapper::before,
.dw-how-wrapper::after {
  content: "";
  position: absolute;
  height: 3px;
  z-index: 1;
  left: 160px;
  right: 160px;
  border-radius: 50px;

  background: linear-gradient(90deg,
      rgba(165, 61, 103, 0.36) 0%,
      rgba(255, 45, 129, 0.55) 45%,
      /* rgb(245, 89, 42) 50%,  */
      #4D2C5E 50%,
      rgba(255, 45, 129, 0.516) 55%,
      rgba(255, 45, 129, 0.55) 100%);  

  background-size: 200% 100%;
  animation: howLineFlow 2.8s linear infinite;
}

/* Top line (1-2-3) */
.dw-how-wrapper::before {
  top: 33px;
}

/* Bottom line (4-5-6) */
.dw-how-wrapper::after {
  top: 295px;
}

/* Flow Animation (Left to Right) */
@keyframes howLineFlow {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: 0% 0;
  }
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .dw-how-section {
    padding: 70px 40px;
  }

  .dw-how-step {
    padding: 0 10px;
  }

  .dw-how-wrapper::before,
  .dw-how-wrapper::after {
    left: 60px;
    right: 60px;
  }
}

/* MOBILE + SMALL TABLET */
@media (max-width: 768px) {
  .dw-how-section {
    padding: 60px 20px;
  }

  .dw-how-row {
    row-gap: 35px;
  }

  .dw-how-heading h2 {
    font-size: 30px;
  }

  .dw-how-heading p {
    font-size: 13px;
  }

  .dw-how-step p {
    font-size: 12px;
  }

  /* Hide lines on mobile/tablet */
  .dw-how-wrapper::before,
  .dw-how-wrapper::after {
    display: none !important;
  }
}


/* ==========================
   QUOTE SECTION
========================== */
.dw-quote-content {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s ease;
}

.dw-quote-img-wrap {
  opacity: 0;
  transform: translateX(60px) scale(1.05);
  transition: all 1s ease;
}

.dw-quote-item {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

/* Button animation */
.dw-quote-btn {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.dw-quote-section.active .dw-quote-content {
  opacity: 1;
  transform: translateX(0);
}

.dw-quote-section.active .dw-quote-img-wrap {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.dw-quote-section.active .dw-quote-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* stagger checklist */
.dw-quote-section.active .dw-quote-item:nth-child(1) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.dw-quote-section.active .dw-quote-item:nth-child(2) {
  transition-delay: 0.35s;
  opacity: 1;
  transform: translateY(0);
}

.dw-quote-section.active .dw-quote-item:nth-child(3) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.dw-quote-section.active .dw-quote-item:nth-child(4) {
  transition-delay: 0.65s;
  opacity: 1;
  transform: translateY(0);
}

.dw-quote-section {
  background: #E2E3E5;
  padding: 100px 0px 0px 100px;
  font-family: poppins;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.dw-quote-row {
  width: 100%;
  height: 100%;
}

/* LEFT CONTENT */
.dw-quote-content {
  max-width: 709px;
  margin-top: -30px;
}

.dw-quote-heading {
  font-size: 45px;
  font-weight: 500;
  color: #141414;
  line-height: 1.15;
  margin-bottom: 18px;
}

.dw-quote-para {
  font-size: 18px;
  font-weight: 400;
  color: rgba(5, 0, 25, 0.7);
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 550px;
}

/* LIST */
.dw-quote-list {
  margin-bottom: 25px;
}

.dw-quote-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  color: #141414;
}

.dw-quote-check {
  width: 25px;
  height: 25px;
  background: #FFFFFF;
  color: black;
  font-size: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-quote-btn {
  background: #4D2C5E;
  color: #fff;
  border: 2px solid #4D2C5E;
  padding: 12px 22px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  z-index: 1;
}

/* Slide Overlay */
.dw-quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;   /* Slide color */
  transition: 0.4s ease;
  z-index: -1;
}

/* Hover Slide */
.dw-quote-btn:hover::before {
  left: 0;
}

/* Hover Effects */
.dw-quote-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.25);
}


/* RIGHT IMAGE */
.dw-quote-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.dw-quote-img {
  position: absolute;
  bottom: -10px;
  right: -40px;
  width: 600px;
  height: auto;
  object-fit: contain;
}

/* ==========================
   RESPONSIVE FIX
========================== */

/* Tablet */
@media (max-width: 991px) {
  .dw-quote-section {
    padding: 70px 30px;
    min-height: auto;
    text-align: center;
  }

  .dw-quote-content {
    max-width: 100%;
    margin-top: 0;
  }

  .dw-quote-heading {
    font-size: 35px;
  }

  .dw-quote-para {
    font-size: 17px;
    margin: auto;
    margin-bottom: 20px;
  }

  .dw-quote-item {
    justify-content: center;
    font-size: 18px;
  }

  .dw-quote-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .dw-quote-img-wrap {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .dw-quote-section {
    padding: 60px 18px;
    text-align: start;
  }

  .dw-quote-heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .dw-quote-para {
    font-size: 15px;
    max-width: 100%;
  }

  .dw-quote-item {
    font-size: 16px;
    justify-content: start;
  }

  .dw-quote-btn {
    font-size: 14px;
    width: 100%;
    padding: 12px 0;
  }
}

/* ==========================
   OUR SERVICES SECTION
========================== */

.dw-services-section {
  background: #fff;
  padding: 80px;
  font-family: poppins;
  overflow: hidden;
}

.dw-services-heading h2 {
  font-size: 45px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 8px;
}

.dw-services-heading p {
  font-size: 18px;
  color: #050019;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* Swiper Wrapper */
.dw-services-slider-wrapper {
  position: relative;
  width: 100%;
}

.dw-service-swiper {
  width: 100%;
  padding: 20px 0;
}

.dw-service-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

/* Card */
.dw-service-card {
  width: 370px;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Image */
.dw-service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Bottom Content */
.dw-service-content {
  background: linear-gradient(135deg, #4D2C5E, rgb(245, 89, 42) );
  color: white;

  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Shine Effect */
.dw-service-content::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.7s ease;
}

/* Hover on full card */
.dw-service-card:hover .dw-service-content {
  background: linear-gradient(135deg, rgb(245, 89, 42), #4D2C5E);
  box-shadow: 0px 15px 35px rgba(77, 44, 94, 0.35);
}

/* Shine Animation on hover */
.dw-service-card:hover .dw-service-content::before {
  opacity: 1;
  top: -20%;
  left: -20%;
}

/* Title */
.dw-service-content h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 50px;
}

/* Paragraph */
.dw-service-content p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 70px;
}

/* Link */
.dw-service-link {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
  margin-bottom: 20px;
}

.dw-service-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transform: translate(1px) ;
}

.dw-service-link:hover {
  text-decoration: none;
   transform: translateX(12px);
}

/* Buttons */
.dw-service-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 50px;
}

.dw-service-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #4D2C5E;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.dw-service-btn:hover {
  background: black;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .dw-services-section {
    padding: 60px 30px;
  }

  .dw-service-card {
    width: 300px;
    height: 500px;
  }

  .dw-service-img {
    height: 210px;
  }
}

@media (max-width: 576px) {
  .dw-services-section {
    padding: 50px 20px;
  }

  .dw-services-heading h2 {
    font-size: 25px;
  }

  .dw-services-heading p {
    font-size: 13px;
  }

  .dw-service-card {
    width: 300px;
    height: 450px;
  }

  .dw-service-img {
    height: 210px;
  }
}



/* ==========================
   FAQ + FOOTER WRAPPER
========================== */

.dw-word {
  position: relative;
  display: inline-block;
  opacity: 0.5;
  filter: blur(2px);
  transition: all 0.5s ease;
  padding: 0px 6px;
}

.dw-word.active {
  opacity: 1;
  filter: blur(0px);
}

.dw-corner-box {
  position: absolute;
  inset: -12px;
  pointer-events: none;
}

.dw-corner-box::before,
.dw-corner-box::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
}

.dw-corner-box::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.dw-corner-box::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* extra 2 corners */
.dw-word.active::before,
.dw-word.active::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
}

.dw-word.active::before {
  top: -12px;
  right: -12px;
  border-left: none;
  border-bottom: none;
}

.dw-word.active::after {
  bottom: -12px;
  left: -12px;
  border-right: none;
  border-top: none;
}




.dw-faq-footer-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;

}

/* ==========================
   FAQ SECTION
========================== */
.dw-faq-section {
  padding: 80px 100px 280px 100px;
  /* ✅ correct spacing */
  position: relative;
  font-family: poppins;
  background: linear-gradient(to bottom, #4D2C5E, #141414);
  color: #fff;
}

/* LEFT */
.dw-faq-left h2 {
  font-size: 55px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
}

.dw-faq-left p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 380px;
  color: #fff;
}

/* RIGHT FAQ */
.dw-faq-right {
  max-width: 680px;
  margin-left: auto;
  margin-top: 8px;
}

.dw-faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 32px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.dw-faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}



/* ==========================
   CTA BOX CENTER (DESKTOP)
========================== */
.dw-footer-cta-box {
  position: absolute;
  left: 50%;
  top: 55%;
  /* ✅ overlap perfect */
  transform: translate(-50%, -50%);

  width: 1280px;
  height: 324px;

  background: #E9E7E6;
  border-radius: 20px;

  padding: 0px 60px;
  text-align: center;

  z-index: 20;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

/* Heading */
.dw-footer-cta-box h4 {
  font-size: 40px;
  font-weight: 600;
  color: #4D2C5E;
  margin-bottom: 10px;
  line-height: 120%;
}

.dw-footer-cta-box h4 span {
  font-weight: 700;
  font-size: 55px;
  color: #4D2C5E;
}

/* Paragraph */
.dw-footer-cta-box p {
  font-size: 16px;
  font-weight: 400;
  color: #4D2C5E;
  margin-bottom: 25px;
  line-height: 24px;
}

/* Buttons Wrapper */
.dw-footer-cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* CTA BUTTONS */
.dw-footer-btn {
  width: 180px;
  height: 55px;

  border-radius: 6px;
  border: none;

  font-size: 16px;
  font-weight: 500;
  cursor: pointer;

  transition: 0.3s ease;
}

/* Dark Button */
.dw-footer-btn.dark {
  background: #4D2C5E;
  color: #fff;
}

.dw-footer-btn.dark:hover {
  background: transparent;
  border: 2px solid #4D2C5E;
  color: #4D2C5E;
}

/* Light Button */
.dw-footer-btn.light {
  background: transparent;
  border: 2px solid #4D2C5E;
  color: #4D2C5E;
}

.dw-footer-btn.light:hover {
  background: #4D2C5E;
  color: #fff;
}

/* ==========================
   FOOTER 
========================== */
.dw-footer {
  background: #141414;
  padding: 160px 30px 40px 80px;
  /* ✅ correct */
  font-family: poppins;
  color: #fff;
}

/* Top row spacing */
.dw-footer-top {
  padding-bottom: 40px;
}

/* LEFT SIDE */
.dw-footer-logo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dw-footer-address {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}

.dw-footer-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.dw-footer-smalltext {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  font-family: Verdana, sans-serif;
}

/* Newsletter Inputs */
.dw-footer-newsletter {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
}

.dw-footer-newsletter input {
  height: 34px;
  padding: 0 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  outline: none;

  width: 135px;
  min-width: 100px;

  cursor: default;
  pointer-events: auto;
}

.dw-footer-newsletter input:last-child {
  min-width: 210px;
}

.dw-footer-newsletter input:hover {
  color: #fff;
  border-color: #fff;
}

/* CENTER */
.dw-footer-center h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.dw-footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dw-footer-center ul li {
  margin-bottom: 8px;
}

.dw-footer-center ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.dw-footer-center ul li a:hover {
  color: #fff;
}

/* RIGHT */
.dw-footer-right h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.dw-footer-social {
  display: flex;
  gap: 12px;
}

.dw-footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.dw-footer-social a:hover {
  background: #fff;
  color: #141414;
}

/* ==========================
   FOOTER BOTTOM ROW
========================== */
.dw-footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dw-footer-bottom-links {
  display: flex;
  gap: 18px;
}

.dw-footer-bottom-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.dw-footer-bottom-links a:hover {
  color: #fff;
}

.dw-footer-copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================
   RESPONSIVE CTA + FOOTER
========================== */
@media (max-width: 1400px) {
  .dw-footer-cta-box {
    width: 90%;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .dw-faq-section {
    padding: 60px 40px 160px 40px;
    text-align: center;
  }

  .dw-faq-left p {
    max-width: 100%;
    margin: auto;
  }

  .dw-faq-right {
    max-width: 100%;
    margin-top: 25px;
  }

  .dw-faq-item {
    font-size: 18px;
  }

  /* CTA BOX */
  .dw-footer-cta-box {
    position: relative;
    left: auto;
    top: auto;
    transform: none;

    width: 92%;
    height: auto;

    margin: -90px auto 0 auto;
    padding: 40px 25px;
  }

  .dw-footer-cta-box h4 {
    font-size: 26px;
  }

  .dw-footer-cta-box h4 span {
    font-size: 34px;
  }

  .dw-footer-cta-box p {
    font-size: 14px;
    line-height: 22px;
  }

  .dw-footer-cta-btns {
    flex-wrap: wrap;
    gap: 12px;
  }

  .dw-footer-btn {
    width: 160px;
  }

  /* Footer */
  .dw-footer {
    padding: 140px 40px 40px 40px;
    text-align: start;
  }

  .dw-footer-bottom-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .dw-footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .dw-faq-section {
    padding: 70px 20px 50px 20px;
    text-align: start;
  }

  .dw-footer-cta-box {
    position: relative;
    left: auto;
    top: auto;
    transform: none;

    width: 100%;
    height: auto;

    margin: 0px auto 0 auto;
    /* ✅ FIXED */
    padding: 28px 16px;
  }

  .dw-footer {
    padding: 60px 18px 35px 18px;
  
  }
}

.dw-faq-item {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: 0.3s ease;
}

.dw-faq-question-row {
  display: grid;
  grid-template-columns: 45px 1fr 40px; /* number | question | arrow */
  align-items: start;
  gap: 15px;
}


.dw-faq-item span {
  color: #fff;
}

.dw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dw-faq-answer p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: white;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 620px;
}

.dw-faq-item.active .dw-faq-answer {
  max-height: 300px;
}

.dw-faq-arrow {
  font-size: 26px;
  font-weight: 600;
  transition: 0.3s ease;
}

.dw-faq-item.active .dw-faq-arrow {
  transform: rotate(90deg);
  color: white;
}

.dw-faq-item.active span {
  color: white;

}

.dw-faq-right {
  max-width: 680px;
  margin-left: auto;
  margin-top: 8px;

  max-height: 420px;       /* ✅ fixed height */
  overflow-y: auto;        /* ✅ scroll enable */
  padding-right: 10px;     /* little spacing */
}

/* Hide Scrollbar (Chrome / Edge / Safari) */
.dw-faq-right::-webkit-scrollbar {
  width: 0px;
}

/* Hide Scrollbar (Firefox) */
.dw-faq-right {
  scrollbar-width: none;
}

.dw-faq-title {
  font-size: 26px;
  font-weight: 600;
  
  color: #fff;
  
}

.dw-faq-scrollhint {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  
}

/* .dw-faq-right {
  position: relative;
  max-width: 680px;
  margin-left: auto;
  margin-top: 8px;

  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;

  scrollbar-width: none;
}

.dw-faq-right::-webkit-scrollbar {
  width: 0px;
}

.dw-faq-right::after {
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;

  background: linear-gradient(to bottom, rgba(20, 20, 20, 0), rgba(20, 20, 20, 1));
  pointer-events: none;
} */


.dw-faq-right {
  max-width: 680px;
  margin-left: auto;
  margin-top: 8px;

  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Chrome / Edge / Safari scrollbar */
.dw-faq-right::-webkit-scrollbar {
  width: 6px;
}

.dw-faq-right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.dw-faq-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.dw-faq-right::-webkit-scrollbar-thumb:hover {
  background: white;
}

/* Firefox */
.dw-faq-right {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.9) rgba(255, 255, 255, 0.08);
}



.dw-faq-num {
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  text-align: left;
}

.dw-faq-arrow {
  font-size: 26px;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: right;
}


.dw-faq-question-text {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.dw-faq-item.active .dw-faq-num {
  color: white;
}


/* ===============================
   ESTIMATE CSS 
================================ */

.dw-estimate-wrapper {
  display: flex;
  min-height: 100vh;
  padding: 30px;
  background: #4D2C5E;
  font-family: Poppins;
}

/* ===============================
   LEFT SIDE
================================ */

.dw-estimate-left {
  width: 40%;
  padding: 60px 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dw-estimate-left h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
}

.dw-estimate-left p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

/* Left content always above image */
.dw-estimate-left h2,
.dw-estimate-left p,
.dw-step-list {
  position: relative;
  z-index: 5;
}

.dw-step-list {
  margin-top: 50px;
}

.dw-step-item {
  display: flex;
  gap: 20px;
  position: relative;
  align-items: flex-start;
  margin-bottom: 80px;
  opacity: 0.5;
}

.dw-step-item.active {
  opacity: 1;
}

/* Step Icon */
.dw-step-icon {
  position: relative;
  width: 46px;
  display: flex;
  justify-content: center;
}

.dw-step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #4D2C5E;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
  z-index: 2;
}

/* LINE */
.dw-step-icon::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 105px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

/* Active step line = White */
.dw-step-item.active .dw-step-icon::after {
  background: #fff;
  height: 108px;
}

/* Completed line white */
.dw-step-item.done .dw-step-icon::after {
  background: #fff;
}

/* last step me line remove */
.dw-step-item:last-child .dw-step-icon::after {
  display: none;
}

.dw-step-item h6 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.dw-step-item p {
  font-size: 15px;
  margin: 0;
  opacity: 0.8;
}

/* ===============================
   RIGHT SIDE
================================ */

.dw-estimate-right {
  width: 70%;
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 60px;
}

.dw-estimate-card {
  width: 90%;
  max-width: 650px;
  background: #fff;
  border-radius: 12px;
  padding: 60px;
  box-shadow: none;
}

/* Heading */
.dw-estimate-card h4 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #141414;
}

/* Subtext */
.dw-subtext {
  font-size: 18px;
  color: #7a7a7a;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Label */
.dw-label {
  font-size: 18px;
  color: #141414;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ===============================
   TOGGLE BUTTONS 
================================ */

.dw-toggle-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dw-toggle-btns button {
  padding: 16px;
  flex: 1;
  height: 71px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  background: #f2f2f2;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #6b7280;
}

.dw-toggle-btns button.active {
  border: 2px solid #5B2C83;
  background-color: #9C7BD8;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Disabled */
.dw-toggle-btns button:disabled {
  opacity: 1;
  cursor: not-allowed;
}

/* ===============================
   INPUTS 
================================ */

.dw-estimate-card label {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  color: #141414;
}

.dw-estimate-card input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: none;
  background: #f3f3f3;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 400;
  margin-top: 8px;
  outline: none;
}

/* ===============================
   BUTTONS 
================================ */

.dw-next-btn {
  width: 100%;
  height: 72px;
  margin-top: 30px;
  background: black;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dw-next-btn.disabled {
  background: #999;
  cursor: not-allowed;
}

.dw-submit-btn {
  height: 56px;
  background: black;
  border: none;
  color: #fff;
  padding: 16px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
}

.dw-submit-btn.disabled {
  background: #999;
  cursor: not-allowed;
}

/* ===============================
   STEP 3 
================================ */

.dw-step-title {
  font-size: 34px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

/* Blocks */
.dw-radio-block {
  margin-top: 26px;
}

/* Section heading */
.dw-radio-block h6 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
}

/* Option Row */
.dw-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 14px;
}

.dw-custom-radio,
.dw-custom-checkbox {
  margin-right: 14px;
  position: relative;
  top: 1.5px;
}

/* Option Text */
.dw-option-text {
  font-size: 18px;
  font-weight: 400;
  color: #8b8b8b;
  line-height: 20px;
}

/* Hide default input */
.dw-option input {
  display: none;
}

/* ================= RADIO ================= */
.dw-custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #d6d6d6;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dw-option input[type="radio"]:checked + .dw-custom-radio {
  border-color: black;
}

.dw-option input[type="radio"]:checked + .dw-custom-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
}

/* ================= CHECKBOX ================= */
.dw-custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #d6d6d6;
  border-radius: 3px;
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dw-option input[type="checkbox"]:checked + .dw-custom-checkbox {
  background: #4D2C5E;;
  border-color: #4D2C5E;;
}

.dw-option input[type="checkbox"]:checked + .dw-custom-checkbox::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* ================= AUTHORITY BOX ================= */
.dw-authority-box {
  margin-top: 12px;
  margin-left: 32px;
  display: grid;
  grid-template-columns: 1fr;
}

.dw-authority-box .dw-option {
  margin-bottom: 0px;
}

.dw-authority-box .dw-option-text {
  font-size: 16px;
  color: #8b8b8b;
  text-align: center;
}

/* ================= BUTTON ROW ================= */
.dw-btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* Back button */
.dw-back-btn {
  height: 56px;
  border: none;
  background: #9aa3ab;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Next button */
.dw-next-btn {
  flex: 1;
  height: 56px;
  border: none;
  background: black;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.dw-next-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===============================
   BUTTON ROW (BACK + NEXT)
================================ */

.dw-btn-row {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.dw-back-btn {
  flex: 1;
  background: #9aa3aa;
  border: none;
  height: 56px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.dw-btn-row .dw-next-btn {
  flex: 2;
  margin-top: 0;
}

.dw-arrow {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: 1px;
  align-items: center;
}

.dw-back-btn,
.dw-next-btn,
.dw-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dw-btn-row button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 56px !important;
}

.dw-arrow {
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  position: relative !important;
  top: 0px !important;
  display: inline-block !important;
}

/* ===============================
   RESPONSIVE (MOBILE VIEW)
================================ */

/* ===============================
   TABLET VIEW (max 991px)
================================ */
@media (max-width: 991px) {
  .dw-estimate-wrapper {
    flex-direction: column !important;
    padding: 20px !important;
    min-height: auto !important;
  }

  .dw-estimate-left {
    width: 100% !important;
    padding: 30px 25px !important;
  }

  .dw-estimate-right {
    width: 100% !important;
    padding: 25px 0px !important;
    justify-content: center !important;
    align-items: flex-start !important;
  }

  .dw-estimate-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 35px 25px !important;
    border-radius: 12px !important;
  }

  .dw-step-item {
    margin-bottom: 50px !important;
  }

  .dw-step-icon::after {
    height: 80px !important;
  }
}

/* ===============================
   MOBILE VIEW (max 576px)
================================ */
@media (max-width: 576px) {
  .dw-estimate-wrapper {
    padding: 0px !important;
  }

  .dw-estimate-left {
    width: 100% !important;
    padding: 25px 18px !important;
  }

  .dw-estimate-left h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .dw-estimate-left p {
    font-size: 14px !important;
  }

  .dw-step-item {
    margin-bottom: 35px !important;
    gap: 15px !important;
  }

  .dw-step-item h6 {
    font-size: 16px !important;
  }

  .dw-step-item p {
    font-size: 12px !important;
  }

  .dw-step-circle {
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
  }

  .dw-step-icon::after {
    top: 38px !important;
    height: 65px !important;
  }

  .dw-estimate-right {
    width: 100% !important;
    padding: 0px !important;
    justify-content: center !important;
  }

  .dw-estimate-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0px !important;
    padding: 25px 18px !important;
    box-shadow: none !important;
  }

  .dw-estimate-card h4,
  .dw-step-title {
    font-size: 24px !important;
  }

  .dw-subtext {
    font-size: 13px !important;
    margin-bottom: 15px !important;
  }

  .dw-toggle-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .dw-toggle-btns button {
    height: 55px !important;
    font-size: 15px !important;
  }

  .dw-estimate-card input {
    height: 48px !important;
    font-size: 14px !important;
  }

  .dw-estimate-card label {
    font-size: 14px !important;
  }

  .dw-next-btn {
    height: 55px !important;
    font-size: 15px !important;
  }

  .dw-btn-row {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .dw-btn-row button {
    width: 100% !important;
  }

  .dw-submit-btn {
    width: 100% !important;
    height: 55px !important;
    font-size: 14px !important;
  }
}

/* ================= MODAL OVERLAY ================= */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 25px;
  font-family: Poppins;
}

/* ================= MAIN BOX ================= */
.contact-modal-box {
  width: 930px;
  max-width: 100%;
  height: 520px;
  background: #4D2C5E;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.4);
}

/* ================= LEFT SECTION ================= */
.contact-left {
  width: 48%;
  padding: 55px 45px;
  color: white;
}

.contact-left h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* Points */
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 50px;
}

.point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: white;
  color: #4D2C5E;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.point h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.point p {
  font-size: 14px;
  opacity: 0.85;
  margin: 4px 0 0 0;
  line-height: 1.4;
}

/* ================= RIGHT SECTION ================= */
.contact-right {
  width: 52%;
  background: white;
  padding: 50px 55px;
  position: relative;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
}

.contact-right h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}

/* Labels */
.contact-right label {
  font-size: 12px;
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 8px;
  margin-top: 18px;
}

/* Inputs */
.contact-right input,
.contact-right select {
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: #f3f4f6;
  border-radius: 4px;
  outline: none;
  font-size: 12px;
  color: #111;
}

/* Button */
.submit-btn {
  width: 100%;
  margin-top: 28px;
  background: rgba(255, 120, 45, 0.55);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.submit-btn span {
  font-size: 18px;
  margin-top: -2px;
}

.submit-btn:hover {
  background: #e8661f;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #111;
  font-weight: 300;
}

/* ================================================= */
/* ================= RESPONSIVE FIX ================= */
/* ================================================= */

/* ===== Tablet & Mobile ===== */
@media (max-width: 900px) {
  .contact-modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 18px 12px;
  }

  .contact-modal-box {
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .contact-left {
    width: 100%;
    padding: 30px 22px;
  }

  .contact-left h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .contact-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-points {
    gap: 16px;
    margin-bottom: 25px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .point h4 {
    font-size: 14px;
  }

  .point p {
    font-size: 11px;
  }

  .contact-right {
    width: 100%;
    padding: 28px 22px;
    border-left: none;
  }

  .contact-right h3 {
    font-size: 17px;
  }

  .form-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .contact-right label {
    font-size: 12px;
    margin-top: 14px;
  }

  .contact-right input,
  .contact-right select {
    font-size: 12px;
    padding: 11px 12px;
  }

  .submit-btn {
    font-size: 13px;
    padding: 12px;
    margin-top: 20px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    font-size: 20px;
  }
}

/* ===== Small Mobile Extra Fix ===== */
@media (max-width: 480px) {
  .contact-modal-overlay {
    padding: 12px 10px;
  }

  .contact-modal-box {
    max-height: 94vh;
  }

  .contact-left {
    padding: 26px 18px;
  }

  .contact-left h2 {
    font-size: 20px;
  }

  .contact-subtitle {
    font-size: 12px;
  }

  .contact-right {
    padding: 24px 18px;
  }

  .contact-right h3 {
    font-size: 16px;
  }

  .submit-btn {
    font-size: 12px;
    padding: 11px;
  }
}

/* ================= FOOTER BUTTON ================= */
.footer-contact-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}

.footer-contact-btn:hover {
  text-decoration: none;
  color: #fff;
}

.footer-link {
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: none;
  color: white;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 50%;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.scan-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}

/* each word */
.scan-word {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
}

/* Magnifier animation on each word (one by one) */
.scan-word {
  animation: wordFocus 6s infinite;
  transform-origin: center;
}

/* delay for each word */
.scan-word:nth-child(1) {
  animation-delay: 0s;
}

.scan-word:nth-child(2) {
  animation-delay: 1s;
}

.scan-word:nth-child(3) {
  animation-delay: 2s;
}

.scan-word:nth-child(4) {
  animation-delay: 3s;
}

.scan-word:nth-child(5) {
  animation-delay: 4s;
}

.scan-word:nth-child(6) {
  animation-delay: 5s;
}

/* focus effect */
@keyframes wordFocus {
  0% {
    transform: scale(1);
    color: white;
  }

  40% {
    transform: scale(1);
    color: white;
  }

  100% {
    transform: scale(1);
    color: white;
  }
}

/* Magnifier corners */
.scan-word::before,
.scan-word::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 120, 45, 0.55);
  opacity: 0;
}

/* top-left */
.scan-word::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* bottom-right */
.scan-word::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* extra corners using inner span trick */
.scan-word span::before,
.scan-word span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 120, 45, 0.55);
  opacity: 0;
}

/* top-right */
.scan-word span::before {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

/* bottom-left */
.scan-word span::after {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

/* show corners only during focus */
.scan-word {
  animation: wordFocus 6s infinite;
}

.scan-word::before,
.scan-word::after {
  animation: cornerFocus 6s infinite;
}

@keyframes cornerFocus {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* delay for corners also */
.scan-word:nth-child(1)::before,
.scan-word:nth-child(1)::after {
  animation-delay: 0s;
}

.scan-word:nth-child(2)::before,
.scan-word:nth-child(2)::after {
  animation-delay: 1s;
}

.scan-word:nth-child(3)::before,
.scan-word:nth-child(3)::after {
  animation-delay: 2s;
}

.scan-word:nth-child(4)::before,
.scan-word:nth-child(4)::after {
  animation-delay: 3s;
}

.scan-word:nth-child(5)::before,
.scan-word:nth-child(5)::after {
  animation-delay: 4s;
}

.scan-word:nth-child(6)::before,
.scan-word:nth-child(6)::after {
  animation-delay: 5s;
}

.float-wrapper {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* White rounded box */
.float-box {
  width: 55px;
  padding: 12px 0px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(77, 44, 94, 0.25);

  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.18);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;

  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: 0.4s ease;
}

/* show on hover + click */
.float-wrapper:hover .float-box,
.float-wrapper.active .float-box {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

/* icons */
.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s ease;
}

.float-icon.whatsapp {
  color: #25d366;
}

.float-icon.call {
  color: black;
}

.float-icon.mail {
  color: #ffc250;
}

.float-icon:hover {
  transform: scale(1.4);
}

/* MAIN BUTTON */
.float-main-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(77, 44, 94, 0.25);
  cursor: pointer;
  border-radius: 50px;
  padding: 8px 15px;

  color: #4D2C5E;
  font-size: 15px;
  font-weight: 600;
  font-family: Poppins;

  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.25);
  transition: 0.35s ease;

  animation: pulseGlow 1.6s infinite;
  position: relative;
  overflow: hidden;
}

/* Shine Effect */
.float-main-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90px;
  width: 70px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transform: skewX(-20deg);
  transition: 0.7s ease;
}

.float-main-btn:hover::after {
  left: 120%;
}

.float-main-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.float-text {
  font-family: Poppins;
}

/* circle icon inside */
.float-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4D2C5E, rgba(255, 120, 45, 0.55));
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;

  box-shadow: 0px 6px 18px rgba(255, 120, 45, 0.45);
}

/* when active */
.float-wrapper.active .float-main-btn {
  animation: none;
}

.float-wrapper.active .float-circle {
  background: linear-gradient(135deg, #000000, #4D2C5E);
}

/* mobile responsive */
@media (max-width: 768px) {
  .float-wrapper {
    bottom: 10px;
    right: 15px;
  }

  .float-text {
    display: none;
  }

  .float-main-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }

  .float-circle {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0px 0px 0px rgba(255, 120, 45, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0px 0px 35px rgba(255, 120, 45, 0.85);
    transform: scale(1.04);
  }

  100% {
    box-shadow: 0px 0px 0px rgba(255, 120, 45, 0.4);
    transform: scale(1);
  }
}


