/* Custom Variables (Based on color picking from the image) */
:root {
  --primary-dark: #372a5a;
  /* Deep Purple Background */
  --accent-light: #9c6cff;
  /* Vibrant Lavender/Light Purple Shape */
  --secondary-dark-blob: #5d4a8f;
  /* Slightly lighter purple for the second blob */
  --text-color: #f8f9fa;
  --button-bg: #a78bfa;
  --button-hover: #9371ff;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #f2f2f2;
}

html,
body {
  width: 100%;
  overflow-x: hidden !important;
}

/* --- Navigation Bar Styling --- */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;
  background-color: var(--primary-dark);
  padding: 6px 0;
}

.navbar img {
  height: 60px;
  width: auto;
}

@media (max-width: 512px) {
  .navbar img {
    height: 50px;
    width: auto;
  }
}

/* (Navigation styles are the same as before for consistency) */
.navbar-nav .nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent-light) !important;
}

.btn-get-started {
  background-color: var(--button-bg);
  color: var(--text-color);
  border: none;
  padding: 0.6rem 1.7rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background-color: var(--button-hover);
  color: var(--text-color);
}

@media (max-width: 576px) {
  .navbar-brand {
    white-space: normal;
    /* allow wrapping */
    line-height: 1.5;
    max-width: 140px;
    /* forces wrap into 2 lines */
  }
}

.custom-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}

.custom-navbar .navbar-toggler-icon {
  filter: invert(1);
  /* makes it white */
}

.navbar-toggler-icon {
  font-size: 10px !important;
}

/* --- Navbar Dropdown Styling --- */
.custom-navbar .dropdown-menu {
  background-color: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  padding: 0.6rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-navbar .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-light);
  padding-left: 1.5rem;
  /* Slide effect */
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
  .custom-navbar .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    margin-top: 0;
  }

  .custom-navbar .dropdown-item {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
  }

  .custom-navbar .dropdown-item:hover {
    background-color: transparent;
    padding-left: 10px;
  }
}

/* ================= ROOT VARIABLES ================= */
:root {
  --cs-stack-card-w: 320px;
  --cs-stack-card-h: 440px;
}

/* ================= HERO SECTION ================= */
.hero-section {
  background-color: var(--primary-dark);
  min-height: 700px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero-container {
  height: 100%;
  width: 80%;
}

/* ================= LEFT CONTENT ================= */
.hero-content-col {
  z-index: 20;
  min-height: 100px;
  display: flex;
}

.content-wrapper {
  margin-top: 100px;
}

.hero-subheading {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero-title {
  line-height: 1.3;
  font-size: 2.6rem;
  max-width: 90%;
  font-weight: 800;
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 85%;
}

.btn-discover-more {
  background-color: var(--button-bg);
  color: var(--text-color);
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-discover-more:hover {
  background-color: var(--button-hover);
}

/* ================= RIGHT IMAGE COLUMN ================= */
.hero-image-col {
  position: relative;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-bottom: 30px; */
  padding-top: 50px;
}

/* ================= SHAPES ================= */
.shape-wrapper {
  position: absolute;
  bottom: -250px;
  right: -100px;
  width: 750px;
  height: 520px;
  border-radius: 150px;
  transform: rotate(-25deg);
  z-index: 3;
  overflow: hidden;
}

.shape-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b89cf6;
  border-radius: 40px;
}

.darker-blob {
  position: absolute;
  bottom: -180px;
  right: -200px;
  width: 700px;
  height: 750px;
  background: #8ce6f2;
  border-radius: 150px;
  transform: rotate(-25deg);
  z-index: 2;
}

/* ================= HERO IMAGE (CENTER FIX) ================= */
.hero-image {
  position: relative;
  /* 🔑 critical fix */
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= CARD STACK ================= */
.cs-stack-wrapper {
  position: relative;
  width: var(--cs-stack-card-w);
  height: var(--cs-stack-card-h);
  perspective: 1200px;
}

.cs-stack-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* border: 2px solid var(--secondary-dark-blob); */

  height: 400px;
  margin-top: 50px;
  /* ✅ Correct spacing */
  padding: 20px;
  box-sizing: border-box;
}

.cs-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  /* keeps inner curve clean */
  margin: 0;
  /* 🔥 remove margin */
  background: #f5f5f7;
}

/* Stack states */
.cs-stack-pos-front {
  z-index: 3;
  transform: translate(0, 0);
}

.cs-stack-pos-mid {
  z-index: 2;
  transform: translate(15px, -15px) rotate(2deg);
  opacity: 0.8;
}

.cs-stack-pos-back {
  z-index: 1;
  transform: translate(30px, -30px) rotate(4deg);
  opacity: 0.5;
}

.cs-stack-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-light));
  color: white;

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  justify-content: center;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */

  text-align: center;
}

.cs-stack-card-info p {
  font-size: 1.2rem;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .shape-wrapper {
    width: 650px;
    height: 450px;
    right: -120px;
    bottom: -140px;
  }

  .darker-blob {
    width: 600px;
    height: 650px;
    right: -180px;
    bottom: -74px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-content-col {
    text-align: center;
  }

  .hero-title,
  .hero-description,
  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-col {
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .hero-content-col {
    padding: 2rem 1.5rem !important;
    text-align: center;
  }

  .content-wrapper {
    margin-top: 30px;
  }

  /* Make hero title left-aligned on mobile */
  .hero-title {
    font-size: 2.3rem;
  }



  .shape-wrapper {
    width: 650px;
    height: 420px;
    right: -400px;
    bottom: -90px;
  }

  .darker-blob {
    width: 600px;
    height: 700px;
    right: -450px;
    bottom: -150px;
  }
}

@media (max-width: 480px) {
  :root {
    --cs-stack-card-w: 260px;
    --cs-stack-card-h: 440px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .shape-wrapper {
    width: 550px;
    height: 350px;
    right: -200px;
    bottom: -70px;
  }

  .darker-blob {
    width: 500px;
    height: 600px;
    right: -250px;
    bottom: -120px;
  }
}

@media (max-width: 360px) {
  .cs-stack-card {
    height: 380px;
    margin-right: 20px;
  }
}

/* ================= CARD EXIT (RIGHT SIDE) ================= */

.cs-stack-exit-anim {
  z-index: 10;
  pointer-events: none;
  animation: csStackThrowOut 0.8s ease-in-out forwards;
}

@keyframes csStackThrowOut {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate(180%, 80px) rotate(25deg);
    opacity: 0;
  }
}

/* ==================================================
   ABOUT US SECTION
================================================== */

.about-us-section {
  background-color: #f6f6f8;
  position: relative;
  overflow: hidden;
  /* Prevent images bleeding into next section */
}

/* --------------------------------------------------
   TEXT STYLES
-------------------------------------------------- */

.about-title {
  color: var(--primary-dark);
  font-size: 2.2rem;
  line-height: 1.15;
}

.section-tagline {
  color: var(--accent-light);
}

/* --------------------------------------------------
   FEATURE LIST
-------------------------------------------------- */

.feature-list {
  border-left: 2px solid #e9ecef;
  padding-left: 1.5rem;
}

.feature-item h5 {
  color: #212529;
  font-size: 1.25rem;
}

.feature-item p {
  color: #6c757d;
}

.feature-icon {
  color: var(--accent-light);
  font-size: 2.5rem;
  width: 30px;
}

/* --------------------------------------------------
   VISUALS COLUMN (DESKTOP — UNCHANGED)
-------------------------------------------------- */

.about-visuals-col {
  position: relative;
  /* Required to contain absolute children */
  min-height: 600px;
}

.visuals-wrapper {
  position: absolute;
  inset: 0;
}

/* --------------------------------------------------
   IMAGE CARDS
-------------------------------------------------- */

.image-card {
  position: absolute;
  background-color: #fff;
  border-radius: 1rem;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

/* Main Image */
.main-image-card {
  width: 50%;
  right: 35%;
  bottom: 5%;
  z-index: 10;
  transition: transform 0.3s ease;
}

.main-image-card:hover {
  transform: translateY(-5px);
}

/* Top Image */
.top-image-card {
  width: 40%;
  top: 0;
  right: 0;
  z-index: 5;
}

/* Extra Image */
.extra-image-card {
  width: 50%;
  top: -3%;
  right: 45%;
  z-index: 5;
}

/* --------------------------------------------------
   OVERLAY CARDS
-------------------------------------------------- */

.overlay-card {
  position: absolute;
  background-color: #fff;
  border-radius: 0.75rem;
  z-index: 15;
}

/* Happy Clients */
.happy-clients-card {
  top: 5px;
  right: 8.5%;
  width: 150px;
  text-align: center;
}

.happy-clients-card h6 {
  font-size: 10px;
  color: var(--primary-dark);
}

.client-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Efficiency Card */
.efficiency-card {
  background-color: var(--accent-light);
  bottom: 10%;
  left: 60%;
  width: 180px;
  text-align: center;
  padding: 1rem;
}

.efficiency-percent {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

/* ==================================================
   MOBILE & TABLET FIX (NO DESKTOP IMPACT)
================================================== */

@media (max-width: 991.98px) {
  .about-visuals-col {
    min-height: auto;
    margin-bottom: 3rem;
  }

  .visuals-wrapper {
    position: relative;
  }

  /* Stack everything naturally */
  .image-card,
  .overlay-card {
    position: relative !important;
    width: 90% !important;
    margin: 1rem auto;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .feature-list {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 340px) {
  .about-title {
    font-size: 2.2rem;
  }
}

/* ==================================================
   TABLET VIEW — 3 IMAGES IN A ROW
================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {
  .visuals-wrapper {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
  }

  .image-card {
    position: relative !important;
    width: 30% !important;
    max-width: none;
    margin: 0;
  }

  .overlay-card {
    display: none;
  }

  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767.98px) {
  .visuals-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .image-card {
    position: relative !important;
    width: calc(50% - 0.375rem) !important;
    margin: 0;
  }

  .overlay-card {
    display: none;
  }

  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===== Section ===== */

/* ===== Section Heading ===== */
.section-head {
  max-width: 1500px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head h4 {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
  /* accent purple */
  margin-bottom: 8px;
  font-weight: 600;
}

.section-head h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* ===== Responsive Heading ===== */
@media (max-width: 768px) {
  .section-head {
    margin-bottom: 35px;
  }

  .section-head h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-head h2 {
    font-size: 1.75rem;
  }
}

.services-section {
  padding: 50px 20px;
  background: linear-gradient(rgba(24, 10, 30, 0.52), rgba(27, 10, 30, 0.71)),
    url("../images/services/service_back.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-grid {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 90px;
}

/* ===== Card ===== */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* ===== Header ===== */
.service-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.service-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #1f2937;
}

.service-header p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
}

/* .service-header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
} */

.service-header h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--accent-light);
}

.service-header h2 {
  font-size: 1rem;
  color: black;
  line-height: 1.5;
}

/* ===== Arrow Button ===== */
.service-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f1f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: all 0.3s ease;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  /* 👈 ALWAYS ON TOP */
}

.service-arrow-btn:hover {
  background: #6d28d9;
  color: #fff;
}

/* ===== Image Wrapper ===== */
.service-image-wrapper {
  position: relative;
  margin-top: 25px;
  border-radius: 16px;
  overflow: hidden;
}

/* Image */
.service-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

/* Purple overlay ONLY on image */
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(183, 153, 253, 0.266);
  opacity: 1;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.service-card:hover .service-image::after {
  opacity: 0;
}

/* ===== Icon Badge ===== */
.service-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
  /* 👈 ABOVE OVERLAY */
}

.service-icon i {
  font-size: 2.3rem;
  color: #6d28d9;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .service-card {
    padding: 22px;
  }

  .service-image {
    height: 200px;
  }

  .service-header h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 360px) {
  .services-grid {
    grid-template-columns: 1fr;
    /* force single column */
    gap: 16px;
  }

  .service-card {
    padding: 16px;
    border-radius: 16px;
  }

  .service-header h3 {
    font-size: 1.2rem;
  }

  .service-header p {
    font-size: 0.9rem;
  }

  .service-image {
    height: 160px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon i {
    font-size: 1.8rem;
  }

  .service-arrow-btn {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
}

/* -------------------------------------
-------------Banner Section 1---------------
--------------------------------------  */

/* Unique prefix 'sdp-' to prevent clashing */
.sdp-banner-wrapper {
  background: #f5f5f7;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Vertical Slider Logic */
.sdp-sliding-container {
  display: inline-flex;
  height: 1.2em;
  /* width: 140px; */
  overflow: hidden;
  vertical-align: middle;
  /* KEY FIX */
  max-width: 100%;
  font-size: clamp(1.5rem, 2.5vw, 0.8em);
}

.sdp-sliding-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-light);
  animation: sdp-vertical-loop 7s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  text-align: left;
}

.sdp-sliding-list li {
  height: 1.2em;
  display: flex;
  align-items: left;
  justify-content: left;
  line-height: 1;
  /* prevents baseline drop */
  font-weight: 800;
  white-space: nowrap;
}

.sdp-sliding-container {
  transform: translateX(-8px);
}

@keyframes sdp-vertical-loop {

  0%,
  15% {
    transform: translateY(0);
  }

  20%,
  35% {
    transform: translateY(-1.2em);
  }

  40%,
  55% {
    transform: translateY(-2.4em);
  }

  60%,
  75% {
    transform: translateY(-3.6em);
  }

  80%,
  95% {
    transform: translateY(-4.8em);
  }

  100% {
    transform: translateY(-6em);
  }

  /* clone */
}

/* Animated Illustration */
.sdp-visual-box {
  position: relative;
  width: 100%;
  height: 300px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  padding: 20px;
  animation: sdp-float 4s ease-in-out infinite;
}

.sdp-code-line {
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  margin-bottom: 15px;
  width: 80%;
  position: relative;
  overflow: hidden;
}

.sdp-code-line::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #6366f1, transparent);
  animation: sdp-scan 2s linear infinite;
}

@keyframes sdp-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes sdp-scan {
  100% {
    left: 100%;
  }
}

.sdp-cta-btn {
  background-color: var(--secondary-dark-blob);
  color: white !important;
  padding: 14px 40px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.sdp-cta-btn:hover {
  background-color: #6d28d9;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Container adjustments */
.sdp-visual-box {
  padding: 15px !important;
  /* Slightly tighter padding for image */
  height: auto !important;
  /* Let image dictate height or set a fixed one */
  max-width: 450px;
}

/* Image specific styling */
.sdp-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  /* Clips the image corners to match the box */
  line-height: 0;
  /* Removes bottom gap */
}

.sdp-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner-3-head {
  color: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .sdp-sliding-list li {
    justify-content: center;
  }
}

@media (max-width: 512px) {
  .sdp-visual-box {
    padding: 15px !important;
    /* Slightly tighter padding for image */
    height: auto !important;
    /* Let image dictate height or set a fixed one */
    max-width: 300px;
  }

  .sdp-hero-img {
    width: 90%;
    height: auto;
    display: block;
    object-fit: cover;
  }
}

/* Adds a subtle 'shimmer' or 'glass' feel over the image */
.sdp-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%);
  pointer-events: none;
}

/* Floating animation stays the same as before */
@keyframes sdp-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* -------------------------------------
-------------Banner Section 2---------------
--------------------------------------  */

/* 1. Background with Dark Image Overlay */
.dv-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: linear-gradient(rgba(24, 10, 30, 0.512), rgba(27, 10, 30, 0.71)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  overflow: hidden;
}

/* 2. Pill-Style Slider Design */
.dv-slider-window {
  display: inline-flex;
  height: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0 25px;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: 5px;
}

.dv-slider-list {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: dv-pill-slide 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.dv-slider-list li {
  height: 50px;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  /* safe for multiline */
}

@keyframes dv-pill-slide {

  0%,
  20% {
    transform: translateY(0);
  }

  25%,
  45% {
    transform: translateY(-50px);
  }

  50%,
  70% {
    transform: translateY(-100px);
  }

  75%,
  95% {
    transform: translateY(-150px);
  }

  100% {
    transform: translateY(-200px);
  }
}

/* 3. 3D Perspective Image (Tilted to face right) */
.dv-perspective-container {
  perspective: 1200px;
  position: relative;
}

.dv-3d-card {
  /* Tilted opposite way for left-side placement */
  transform: rotateY(15deg) rotateX(5deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 25px 25px 60px rgba(0, 0, 0, 0.6);
  animation: dv-float-left 6s ease-in-out infinite;
}

.dv-3d-card:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: rgba(129, 140, 248, 0.5);
}

.dv-main-img {
  width: 100%;
  border-radius: 18px;
  display: block;
  filter: brightness(0.9);
}

@keyframes dv-float-left {

  0%,
  100% {
    transform: rotateY(15deg) rotateX(5deg) translateY(0px);
  }

  50% {
    transform: rotateY(12deg) rotateX(3deg) translateY(-25px);
  }
}

/* Glow Button */
.dv-btn-glow {
  /* background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%); */
  background: var(--secondary-dark-blob);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transition: 0.3s ease;
}

.dv-btn-glow:hover {
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
  transform: translateY(-3px);
  color: white;
}

@media (max-width: 991.98px) {
  .dv-perspective-container {
    padding-top: 80px;
  }
}

/* -------------------------------------
-------------Banner Section 3---------------
--------------------------------------  */
.dm-hero-wrapper {
  background-color: #f5f5f7;
  background-image: radial-gradient(#e5e7eb 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  padding: 60px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* FIXED SLIDER LOGIC */
.dm-focus-slider {
  display: inline-block;
  height: 60px;
  /* Exact height of one line */
  overflow: hidden;
  vertical-align: bottom;
  margin-left: 10px;
  padding-left: 15px;
  border-left: 5px solid #000;
}

.dm-slider-items {
  list-style: none;
  padding: 0;
  margin: 0;
  /* 4 items total (including the loop duplicate) */
  animation: dm-slide-fixed 8s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

.dm-slider-items li {
  height: 60px;
  /* Matches container height */
  line-height: 60px;
  /* Vertically centers text */
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-light);
  white-space: nowrap;
}

/* The math: Move by -60px for each item */
@keyframes dm-slide-fixed {

  0%,
  20% {
    transform: translateY(0);
  }

  25%,
  45% {
    transform: translateY(-60px);
  }

  50%,
  70% {
    transform: translateY(-120px);
  }

  75%,
  95% {
    transform: translateY(-180px);
  }

  100% {
    transform: translateY(-240px);
  }
}

/* Image Stack Design */
.dm-image-stack {
  position: relative;
  padding: 20px;
}

.dm-main-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f4f6;
  transition: transform 0.5s ease;
}

.dm-main-card:hover {
  transform: scale(1.02);
}

.dm-floating-stat {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  animation: dm-float-subtle 4s ease-in-out infinite;
  border: 1px solid #eee;
}

@keyframes dm-float-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.dm-btn-black {
  background: var(--secondary-dark-blob);
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.dm-btn-black:hover {
  background: var(--accent-light);
  /* box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3); */
}

@media (max-width: 768px) {
  .dm-slider-items li {
    font-size: 1.8rem;
  }

  .dm-focus-slider {
    height: 50px;
  }

  .dm-slider-items li {
    height: 50px;
    line-height: 50px;
  }

  @keyframes dm-slide-fixed {

    0%,
    20% {
      transform: translateY(0);
    }

    25%,
    45% {
      transform: translateY(-50px);
    }

    50%,
    70% {
      transform: translateY(-100px);
    }

    75%,
    95% {
      transform: translateY(-150px);
    }

    100% {
      transform: translateY(-200px);
    }
  }
}

/* -------------------------------------
-------------Banner Section 4---------------
--------------------------------------    */
/* 1. Dark Section with Professional Background */
.it-training-hero {
  position: relative;
  padding: 50px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,
      rgba(22, 10, 30, 0.53) 30%,
      rgba(24, 10, 30, 0.777) 100%),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

/* 2. Left Side Content Polish */
.it-accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-light);
  margin-bottom: 25px;
  border-radius: 2px;
}

.it-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.it-highlight {
  color: var(--accent-light);
  /* Electric Blue */
}

/* 3. Modern Image Design (Consultant/Training) */
.it-image-container {
  position: relative;
  z-index: 1;
}

.it-main-frame {
  border-radius: 30px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
}

/* Floating Badge Over Image */
.it-training-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(107, 42, 129, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  /* box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3); */
  animation: it-hover-float 4s ease-in-out infinite;
}

@keyframes it-hover-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* 4. Button Styling */
.it-btn-primary {
  background: var(--secondary-dark-blob);
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
  /* box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); */
}

.it-btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  /* box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5) */
  color: white;
}

.it-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

@media (max-width: 768px) {
  .it-headline {
    font-size: 2.2rem;
  }
}

/* --- Full-Width Banner / CTA Section --- */
/* .cta-banner-section {
    position: relative;
    min-height: 500px;
    background-image: url('images/services/ecom.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}


.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(55, 42, 90, 0.85);
    z-index: 1;
}


.cta-banner-section .cta-content-wrapper {
    position: relative;
    z-index: 2;
}


.cta-content-wrapper {
    max-width: 900px;
    padding-left: 3rem;
}


.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 80%;
}


.btn-discover-more {
    background-color: var(--accent-light);
    color: var(--text-color);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-discover-more:hover {
    background-color: var(--button-hover);
}


@media (max-width: 991.98px) {
    .cta-banner-section {
        min-height: 420px;
    }

    .cta-content-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    .cta-description {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .cta-banner-section {
        text-align: center;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .cta-content-wrapper {
        padding: 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
} */

/* --- Dual Slider Section Styles --- */
.dual-slider-section {
  background-color: #f8f9fa;
}

.section-heading {
  color: var(--primary-dark);
  font-size: 2.2rem;
}

/* --- Carousel Structure --- */
.logo-carousel-track {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
  user-select: none;
}

.logo-carousel-track:active {
  cursor: grabbing;
}

.logo-list {
  display: flex;
  will-change: transform;
}

/* Individual logo container */
.logo-item {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 6px;
  flex-shrink: 0;
}

/* Logo image */
.client-logo {
  max-height: 120px;
  width: auto;
  max-width: 100%;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ----------------------------------
   IMPORTANT
   ❌ REMOVED CSS ANIMATIONS
   ✔ JS WILL HANDLE MOVEMENT
----------------------------------- */

/* --- Mobile Adjustments --- */
@media (max-width: 767.98px) {
  .logo-item {
    width: 100px;
    padding: 2px 4px;
  }

  .client-logo {
    max-height: 80px;
  }

  .dual-slider-section .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* --- Tablet Adjustments --- */
@media (max-width: 991.98px) and (min-width: 768px) {
  .logo-item {
    width: 110px;
  }

  .client-logo {
    max-height: 100px;
  }
}

/* --- Banner Section Styles --- */
/* --- Banner Section Styles (Updated) --- */
.banner-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  /* Background Image and Overlay configuration */
  background-image:
    /* 1. The Dark Purple Overlay (for text readability and styling) */
    linear-gradient(90deg,
      rgba(55, 42, 90, 0.85),
      rgba(87, 71, 132, 0.85)),
    /* 2. Your Background Image goes here */
    url("../images/services/uiux.png");
  /* <-- REPLACE THIS PATH */

  background-size: cover;
  /* Ensures the image covers the whole section */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
}

/* * IMPORTANT: Keep the rest of the previous CSS 
* (for .content-box, .title, .cta-button, etc.)
* unchanged in your stylesheet.
*/

@media (max-width: 768px) {
  .banner-section {
    height: 60vh;
  }
}

@media (max-width: 490px) {
  .banner-section {
    height: 80vh;
  }
}

@media (max-width: 390px) {
  .banner-section {
    height: 90vh;
  }
}

/* The White Content Box */
.content-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 50px 70px;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Subtitle/Pre-header */
.subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #8a2be2;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Layout for Main Title and Description/CTA */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Main Title */
.title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin: 0;
  flex: 1.5;
}

/* Description and CTA Column */
.description-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* Description Text */
.description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 400px;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  background-color: var(--secondary-dark-blob);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #6a1fae;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .content-box {
    padding: 40px 50px;
  }

  .main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .title {
    font-size: 2.5rem;
    flex: auto;
    max-width: 100%;
  }

  .description-group {
    align-items: center;
    text-align: center;
    flex: auto;
  }

  .description {
    margin-bottom: 20px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    min-height: 400px;
  }

  .content-box {
    padding: 30px;
  }

  .title {
    font-size: 1.8rem;
  }
}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 80px 20px;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-dark);
}

/* ================= FAQ LIST ================= */

.faq-list {
  text-align: left;
  margin-bottom: 30px;
}

/* ================= FAQ ITEM ================= */

.faq-item {
  background-color: var(--secondary-dark-blob);
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: var(--secondary-dark-blob);
}

/* ================= FAQ QUESTION ================= */

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-color);
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

/* ================= ICON ================= */

.faq-question .icon {
  font-size: 1.6rem;
  color: var(--accent-light);
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item[open] .icon {
  transform: rotate(45deg);
}

/* ================= FAQ ANSWER (SMOOTH HEIGHT) ================= */

.faq-answer {
  /* height: 0; */
  overflow: hidden;
}

/* Inner wrapper for padding */
.faq-answer-inner {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

/* Divider when open */
.faq-item[open]>.faq-question {
  border-bottom: 1px solid var(--border-color);
}

/* ================= CONTACT TEXT ================= */

.faq-contact-text {
  margin-top: 40px;
  font-size: 1rem;
  color: var(--primary-dark);
  text-align: center;
}

.faq-contact-link {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-contact-link:hover {
  color: var(--button-hover);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .faq-heading {
    font-size: 2.1rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .faq-answer-inner {
    padding: 14px 20px 18px;
  }
}

@media (max-width: 480px) {
  .faq-heading {
    font-size: 1.9rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

.testimonial-section {
  padding: 80px 0;
  background-color: var(--primary-dark);
  color: var(--text-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary-dark);
}

.section-title1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

/* --- Slider Core Styles --- */
.slider-container {
  width: 100%;
  overflow: hidden;
  /* Crucial: hides the overflow items */
  padding: 20px 0;
}

.slider-track {
  display: flex;
  /* We handle the movement (transform: translateX) via JavaScript */
  /* This transition smooths the jump when cloning/resetting the track */
  transition: transform 0.01s linear;
}

/* --- Testimonial Card Styles (Eye-Catching Design) --- */
.testimonial-card {
  width: 400px;
  max-width: 100%;
  margin: 0 20px;
  padding: 30px;
  background-color: var(--text-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  color: var(--text-dark);
  border-top: 5px solid var(--accent-light);
  flex-shrink: 0;

  display: flex;
  flex-direction: column;

  min-height: 300px;
  /* 🔑 adjust if needed */
}

/* .testimonial-card {
    width: 400px;
    max-width: 100%;
    margin: 0 20px;
    padding: 30px;
    border-radius: 12px;
    flex-shrink: 0;
} */

/* Tablet */
@media (max-width: 768px) {
  .testimonial-card {
    width: 80vw;
    margin: 0 10px;
  }
}

/* Mobile */
@media (max-width: 512px) {
  .testimonial-card {
    width: 90vw;
    max-width: 350px;
  }
}

/* Quote Icon Styling */
.quote-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--button-hover);
  opacity: 0.7;
  line-height: 0.8;
}

.quote-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  /* Ensure text is above the icon */
  color: var(--primary-dark);
}

/* Client Info Area */
.client-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  /* 🔑 THIS pushes it to the bottom */
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  /* Circular border accent */
  border: 3px solid var(--accent-light);
}

.client-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.client-title {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive adjustments (display 1 card on small screens) */
/* @media (max-width: 768px) {
    .testimonial-card {
        min-width: 50vw; 
        margin: 0 10px;
    }
}


@media (max-width: 512px) {
    .testimonial-card {
        min-width: 40vw;
        margin: 0 10px;
    }
} */

.team-section {
  /* background: #0a0a0a; */
  padding: 100px 0;
  overflow: hidden;
}

.team-track {
  display: flex;
  gap: 40px;
  padding: 0 20px;
  will-change: transform;
}

.team-item {
  position: relative;
  min-width: 290px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--accent-light);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

/* 3D Tilt Effect Container */
.card-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.team-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) brightness(0.8);
  transition: 0.6s ease;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 2;
}

.member-name {
  color: white;
  font-size: 1.4rem;
  margin: 20px 0;
  transform: translateY(20px);
  transition: 0.5s ease;
  text-wrap: nowrap;
}

.hidden-bio {
  max-height: 0;
  opacity: 0;
  color: #fff;
  font-size: 0.95rem;
  transition: 0.5s ease;
  clip-path: inset(0 0 100% 0);
}

/* Hover States */
.team-item:hover {
  border-color: var(--primary-dark);
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
}

.team-item:hover img {
  transform: scale(1.1);
  filter: saturate(1) brightness(1);
}

.team-item.active {
  min-width: 330px;
  /* Expand card width on click */
}

.team-item.active img {
  transform: scale(1.1);
  filter: blur(4px) saturate(1) brightness(1);
}

.team-item.active .hidden-bio {
  max-height: 150px;
  opacity: 1;
  margin-top: 15px;
  clip-path: inset(0 0 0 0);
}

.team-item.active .member-name {
  transform: translateY(0);
  color: var(--accent-light);
  background-color: #000;
}

#infiniteContainer {
  cursor: grab;
}

#infiniteContainer:active {
  cursor: grabbing;
}

#teamTrack {
  will-change: transform;
}

.social-links {
  font-size: 25px;
}

.social-links a {
  text-decoration: none;
  color: #fff;
}

/* --- Tech Stack Section Styles --- */
/* .tech-stack-section {
    background-color: var(--ts-bg-light); 
    padding: 100px 20px;
    text-align: center;
}

.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
}


.tech-stack-header {
    margin-bottom: 60px;
}

.tech-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ts-heading-color);
    margin-bottom: 15px;
}

.tech-subheading {
    font-size: 1.1rem;
    color: var(--ts-text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


.tech-stack-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 10px; 
    min-width: 120px; 
}


.icon-circle {
    width: 90px;
    height: 90px;
    background-color: var(--ts-icon-circle-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.stack-item:hover .icon-circle {
   
    background-color: #c0c8dd; 
}


.tech-icon {
 
    display: block;
    width: 50px;
    height: 50px;
   
    background-color: var(--ts-accent-dark); 
    border-radius: 50%;
  
}


.tech-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ts-accent-dark);
    margin: 0;
}


@media (max-width: 768px) {
    .tech-stack-grid {
        gap: 15px;
    }
    .stack-item {
        min-width: 100px; 
    }
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    .tech-heading {
        font-size: 2rem;
    }
}
 */

/* --- Contact Section Styles --- */
.contact-section {
  padding: 40px 20px;
  background-color: var(--form-bg);
  /* Use a light color for overall background */
  font-family: "Montserrat", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.contact-subheading {
  font-size: 1.1rem;
  color: var(--secondary-dark-blob);
  margin-bottom: 50px;
}

/* --- Two-Column Layout --- */
.contact-content-wrapper {
  display: flex;
  box-shadow: 0 10px 30px var(--shadow-light);
  border-radius: 12px;
  overflow: hidden;
  /* Contains the sharp corners */
  text-align: left;
}

/* --- 1. Contact Info Column (Deep Purple Background) --- */
.contact-info {
  flex: 1;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  border-left: 4px solid var(--accent-light);
  /* Accent bar */
  padding-left: 20px;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-light);
  margin: 0 0 5px 0;
}

.info-detail {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.info-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--button-bg);
}

/* --- 2. Contact Form Column (White Background) --- */
.contact-form {
  flex: 1.5;
  /* Takes up slightly more space for the form */
  background-color: #580bf173;
  padding: 50px 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  color: var(--primary-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(156, 108, 255, 0.2);
  /* Light purple focus ring */
  outline: none;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #372a5a;
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.submit-button:hover {
  background-color: var(--button-hover);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

  /* Stack columns vertically on tablets/smaller devices */
  .contact-content-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: auto;
    padding: 40px 30px;
  }

  .contact-info {
    gap: 20px;
    /* Adjust vertical spacing when stacked */
  }

  .map-placeholder {
    margin-top: 20px;
    /* Add space above the map */
  }
}

/* --- Footer Section Styles --- */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--text-color);
  padding: 60px 20px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1450px;
  margin: 0 auto;
}

/* --- Column Layout --- */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.footer-col {
  flex: 1;
  min-width: 200px;
  /* Ensures columns don't get too narrow */
}

/* --- Logo/About Column --- */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--text-color);
}

.accent-text {
  color: var(--accent-light);
  /* Highlight part of the brand name */
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Links */
.footer-social-links {
  display: flex;
  gap: 10px;
}

/* .footer-social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--secondary-dark-blob, rgba(255, 255, 255, 0.1));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: background-color 0.3s ease;
} */

.footer-social-links i {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--secondary-dark-blob, rgba(255, 255, 255, 0.1));
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50%;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.footer-social-links .social-icon:hover {
  background-color: var(--accent-light);
}

/* --- Links/Contact Columns --- */
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--link-hover);
}

/* Contact Column Specifics (You'd replace these with font icons like Font Awesome) */
.footer-links li i {
  margin-right: 8px;
  color: var(--accent-light);
}

/* This makes the last 'Schedule' link stand out */
.accent-link a {
  color: var(--accent-light) !important;
  font-weight: 600;
}

/* --- Copyright Bar --- */
.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .footer-columns {
    /* Switch to wrapping layout */
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .footer-col {
    /* Allow columns to take up half the width on medium screens */
    flex: 1 1 40%;
    margin-bottom: 30px;
    min-width: 250px;
  }

  .about-col {
    flex: 1 1 100%;
    /* Make the logo/about column full width on medium screens */
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }
}

@media (max-width: 550px) {
  .footer-columns {
    flex-direction: column;
    /* Stack all columns vertically on mobile */
    text-align: center;
  }

  .footer-col {
    min-width: 100%;
    margin-bottom: 25px;
  }

  .footer-links {
    text-align: center;
  }
}

/* -------------------------
----------ABOUT PAGE--------
------------------------  */

/* Breadcrumb Hero Container */
.breadcrumb-hero {
  position: relative;
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0f30 100%);
  padding: 120px 0 80px 0;
  overflow: hidden;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* Container for alignment */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Beautiful Glowing Shapes */
.shape-blob {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(197, 179, 250, 0.801);
  /* Soft Purple */
  filter: blur(80px);
  border-radius: 50%;
}

.shape-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: #a474fcbe;
  /* Soft Blue hint */
  filter: blur(80px);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .shape-blob {
    width: 300px;
    height: 300px;
    filter: blur(60px);
  }

  .shape-blob-2 {
    width: 200px;
    height: 200px;
    filter: blur(60px);
  }
}

@media (max-width: 480px) {
  .shape-blob {
    width: 200px;
    height: 200px;
    filter: blur(40px);
  }

  .shape-blob-2 {
    width: 150px;
    height: 150px;
    filter: blur(40px);
  }
}

/* Text Content Styling */
.breadcrumb-wrapper {
  position: relative;
  z-index: 5;
  margin-top: 35px;
}

.breadcrumb-subtitle {
  color: #9d7cff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.breadcrumb-title {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-title {
    font-size: 2.4rem;
  }
}

/* Breadcrumb Navigation Links */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #9d7cff;
}

.breadcrumb-nav .separator {
  color: #9d7cff;
  font-weight: bold;
}

.breadcrumb-nav .current-page {
  color: #ffffff;
  font-weight: 500;
}

/* -------------------------
----------CEO Section--------
------------------------  */

/* Section Container */
.ceo-section {
  padding: 100px 0;
  background: #f5f5f7;
  overflow: hidden;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image Styling & Glow Animation */
.ceo-image-wrapper {
  position: relative;
  z-index: 1;
}

.ceo-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #9d7cff;
  filter: blur(100px);
  opacity: 0.2;
  z-index: -1;
}

.ceo-image-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.ceo-image-card:hover {
  transform: translateY(-10px);
}

.ceo-image-card img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
  border-radius: 24px;
  box-shadow: 0 0px 40px #371c5ac5;
}

.ceo-image-card:hover img {
  filter: grayscale(0%);
}

/* Floating Badge Animation */
.ceo-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #9d7cff;
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(157, 124, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Content Styling */
.ceo-tag {
  color: #9d7cff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.ceo-name {
  font-size: 42px;
  color: #2d1b4e;
  margin: 10px 0 5px 0;
}

.ceo-role {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.ceo-quote {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}

.quote-icon {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: #9d7cff;
  opacity: 0.3;
  font-family: serif;
}

.ceo-quote p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
}

/* Signature & Button */
.signature-text {
  font-family: "Brush Script MT", cursive;
  font-size: 32px;
  color: #2d1b4e;
  display: block;
  margin-bottom: 30px;
}

.ceo-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #2d1b4e;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
}

.ceo-btn:hover {
  background: #9d7cff;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .ceo-quote {
    padding-left: 0;
  }

  .quote-icon {
    display: none;
  }

  .ceo-experience-badge {
    right: 20px;
  }
}

/* -------------------------
----------MVO Section--------
------------------------  */

.mvo-advanced-section {
  position: relative;
  padding: 120px 0;
  color: #f5f5f7;
  overflow: hidden;
  background: #1a0f3027;
  /* Fallback */
}

/* Background Image with Parallax Effect */
.mvo-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url("../images/services/service_back.png") no-repeat center center;
  background-size: cover;
  z-index: -2;
  transform: translateY(-10%);
}

.mvo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(26, 15, 48, 0.9),
      rgba(45, 27, 78, 0.8));
  z-index: -1;
}

.mvo-header {
  text-align: center;
  margin-bottom: 70px;
}

.mvo-tag {
  color: #9d7cff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 13px;
}

.mvo-main-title {
  font-size: 50px;
  margin-top: 10px;
}

/* Glassmorphism Cards */
.mvo-flex-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.mvo-glass-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.mvo-glass-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #9d7cff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Moving Shimmer Effect on Card */
.mvo-glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(157, 124, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  transition: 0.8s;
}

.mvo-glass-card:hover::before {
  left: 100%;
}

.card-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9d7cff, #6a4bc2);
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.5s;
}

.mvo-glass-card:hover .card-icon-box {
  transform: rotateY(360deg) scale(1.1);
}

.mvo-glass-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.mvo-glass-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 16px;
}

.card-line {
  width: 40px;
  height: 4px;
  background: #9d7cff;
  margin: 25px auto 0;
  border-radius: 2px;
  transition: width 0.4s;
}

.mvo-glass-card:hover .card-line {
  width: 100px;
}

/* -------------------------
-----hOW WE WORK Section----
------------------------  */

.work-process-section {
  padding: 100px 0;
  background-color: #f5f5f7;
  /* Light, clean background */
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-subtitle {
  color: #9d7cff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.process-title {
  color: #2d1b4e;
  font-size: 42px;
  font-weight: 800;
  margin-top: 10px;
}

/* Horizontal Flow Layout */
.process-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
}

/* Connecting Dashed Line (Desktop Only) */
@media (min-width: 992px) {
  .process-row::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: repeating-linear-gradient(to right,
        #9d7cff 0,
        #9d7cff 5px,
        transparent 5px,
        transparent 10px);
    z-index: 0;
  }
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Step Number Badge */
.step-number {
  width: 40px;
  height: 40px;
  background: #2d1b4e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
  border: 4px solid #f8f9ff;
}

/* Icon Card */
.step-icon {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #9d7cff;
  box-shadow: 0 10px 30px rgba(157, 124, 255, 0.15);
  transition: all 0.4s ease;
}

.process-step:hover .step-icon {
  background: #9d7cff;
  color: #fff;
  transform: translateY(-10px) rotate(10deg);
}

.process-step h3 {
  font-size: 20px;
  color: #2d1b4e;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .process-row {
    flex-direction: column;
    gap: 50px;
  }

  .process-step {
    max-width: 100%;
  }
}

/* -------------------------
-----Products Section-------
------------------------  */
/* --- Root Variables & Reset --- */
:root {
  --primary: #2d1b4e;
  /* Your Deep Purple */
  --accent: #a389f4;
  /* Your Lavender */
  --teal: #72eae1;
  /* Your Teal */
  --card-white: #ffffff;
  --card-height: 550px;
  /* Fixed height for all cards */
}

/* --- New Heading Styles --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.sub-heading {
  color: var(--accent);
  /* Lavender */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.main-heading {
  color: #f5f5f7 !important;
  font-size: 2.8rem;
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

/* Mobile Fix for Headings */
@media (max-width: 768px) {
  .detailed-slider-section {
    flex-direction: column;
    /* Ensures header stays on top */
  }

  .main-heading {
    font-size: 2rem;
    padding: 0 10px;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

.detailed-slider-section {
  background-color: #2d1b4e;
  background-image: linear-gradient(rgba(45, 27, 78, 0.644),
      rgba(45, 27, 78, 0.712)),
    url("../images/services/licensed-image.jpg");
  background-size: cover;
  background-position: center;
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* --- Container Logic --- */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: var(--card-height);
  /* Force wrapper to the fixed height */
}

/* --- Card Base Styling --- */
.p-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* All cards fill the 550px wrapper */
  opacity: 0;
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(30px);
}

.p-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.p-card-inner {
  background: var(--card-white);
  border-radius: 40px;
  display: flex;
  height: 100%;
  /* Ensures internal layout fills the card */
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* --- Content Styling --- */
.p-content {
  flex: 1.2;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Keeps content centered vertically */
}

.p-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.p-content h2 {
  font-size: 3rem;
  color: var(--primary);
  margin: 10px 0;
}

.p-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.p-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(15px);
}

/* Staggered Feature Animation */
.p-card.active .p-features li {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease forwards;
}

.p-card.active .p-features li:nth-child(1) {
  transition-delay: 0.4s;
}

.p-card.active .p-features li:nth-child(2) {
  transition-delay: 0.5s;
}

.p-card.active .p-features li:nth-child(3) {
  transition-delay: 0.6s;
}

.p-features i {
  color: var(--teal);
  margin-right: 12px;
  font-size: 1.1rem;
}

.p-btn {
  align-self: flex-start;
  padding: 15px 35px;
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.p-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(163, 137, 244, 0.3);
}

/* --- Visual Area (Right Side) --- */
.p-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* --- Navigation Buttons --- */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 112%;
  left: -6%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  transform: translateY(-50%);
}

.ctrl-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--accent);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.ctrl-btn:hover {
  background: var(--accent);
}

/* --- RESPONSIVE FIX (The Mobile Overhaul) --- */
@media (max-width: 768px) {
  :root {
    --card-height: 620px;
    /* Slightly taller for stacked content on mobile */
  }

  .detailed-slider-section {
    padding: 70px 15px;
  }

  .slider-wrapper {
    max-width: 100%;
  }

  .p-card-inner {
    flex-direction: column;
    /* Stacks image on top of text */
  }

  .p-visual {
    flex: 0.4;
    /* Takes 40% of the card height */
    width: 100%;
    clip-path: none;
    /* Removes the desktop slant */
    font-size: 4rem;
  }

  .p-content {
    flex: 0.6;
    /* Takes 60% of the card height */
    padding: 25px;
    text-align: center;
  }

  .p-content h2 {
    font-size: 1.8rem;
  }

  .p-features {
    text-align: left;
    display: inline-block;
    margin-bottom: 20px;
  }

  .p-btn {
    align-self: center;
    /* Center button on mobile */
    width: 100%;
    text-align: center;
  }

  /* Move arrows to the bottom on mobile so they don't hide the card */
  .slider-controls {
    width: 100%;
    left: 0;
    top: auto;
    bottom: -90px;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
}

@media (max-height: 700px) and (max-width: 768px) {

  /* Special fix for very short phones */
  :root {
    --card-height: 520px;
  }

  .p-content p {
    display: none;
  }

  /* Hides description to keep card short */
}

/* -------------------------
----------Stats Section--------
------------------------  */

.counter-section {
  padding: 80px 0;
  background: #f5f5f7;
  border-top: 1px solid #eee;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.counter-item {
  padding: 20px;
}

.counter-icon {
  font-size: 40px;
  color: #9d7cff;
  margin-bottom: 15px;
}

.counter-item h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2d1b4e;
  margin-bottom: 5px;
}

.counter-item p {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Add a subtle hover lift */
.counter-item:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.team-culture-section {
  background-color: #f0f2f7;
  /* Very light background */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #2d1b4e;
}

/* Subtle Background Pattern */
.team-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.3"></path></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern-grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.team-tag {
  color: #9d7cff;
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.team-title {
  font-size: 48px;
  font-weight: 800;
  margin-top: 15px;
  color: #2d1b4e;
}

.team-content-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Team Image Panel */
.team-image-panel {
  /* flex: 1; */
  position: relative;
  padding: 15px;
  /* Space for the glow */
}

.team-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(157, 124, 255, 0.4);
  filter: blur(50px);
  border-radius: 20px;
  z-index: -1;
  animation: image-pulse 3s infinite alternate;
}

@keyframes image-pulse {
  0% {
    transform: scale(0.98);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.02);
    opacity: 1;
  }
}

.team-image-panel img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Team Description Panel */
.team-description-panel {
  flex: 1;
  max-width: 550px;
}

.team-description-panel h3 {
  font-size: 36px;
  color: #2d1b4e;
  margin-bottom: 25px;
  font-weight: 700;
}

.lead-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

.team-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Two columns */
  gap: 15px;
}

.team-highlights li {
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-highlights li i {
  color: #9d7cff;
  font-size: 20px;
}

.btn-meet-team {
  padding: 15px 35px;
  background: #9d7cff;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-meet-team:hover {
  background: #2d1b4e;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(157, 124, 255, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .team-content-layout {
    flex-direction: column;
    text-align: center;
  }

  .team-image-panel img {
    max-width: 100%;
  }

  .team-description-panel {
    max-width: 100%;
  }

  .team-highlights {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .team-highlights li {
    justify-content: center;
  }
}

/* -------------------------
---------Software page--------
------------------------  */
:root {
  --brand-purple: #2d1b4e;
  --brand-lavender: #a389f4;
  --brand-teal: #72eae1;
  --light-bg: #f9f8ff;
  /* Soft Lavender Tint */
  --white: #ffffff;
}

.software-page-container {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.software-row {
  padding: 100px 10%;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Light/Dark Theming */
.light-sec {
  background-color: var(--light-bg);
  color: var(--brand-purple);
}

.dark-sec {
  background-color: var(--brand-purple);
  color: var(--white);
}

.software-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Reversing the grid for even-numbered sections */
.reverse {
  direction: rtl;
}

.reverse .soft-info {
  direction: ltr;
}

/* Visual Elements */
.glass-frame {
  height: 400px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9rem;
  transition: 0.5s ease;
}

.light-shadow {
  background: var(--white);
  box-shadow: 0 0px 60px rgba(45, 27, 78, 0.596);
  color: var(--brand-lavender);
}

.dark-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--brand-teal);
  box-shadow: 0 0px 60px #a489f496;
}

/* Typography */
.badge {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand-lavender);
  margin-bottom: 20px;
  display: inline-block;
}

h2 {
  font-size: 3.8rem;
  margin-bottom: 25px;
  line-height: 1.1;
}

p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Text colors for light and dark sections */
.light-sec p,
.light-sec h2,
.light-sec .soft-info {
  color: var(--brand-purple);
}

.dark-sec p,
.dark-sec h2,
.dark-sec .soft-info {
  color: var(--white);
}

.light-sec .feature-stagger li {
  color: var(--brand-purple);
}

.dark-sec .feature-stagger li {
  color: var(--white);
}

/* Staggered Feature List */
.feature-stagger {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-stagger li {
  margin-bottom: 18px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.feature-stagger i {
  margin-right: 15px;
  color: var(--brand-teal);
  font-size: 1.3rem;
}

/* Scroll Animations Trigger Classes */
.active .feature-stagger li {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease-out forwards;
}

.active li:nth-child(1) {
  transition-delay: 0.2s;
}

.active li:nth-child(2) {
  transition-delay: 0.4s;
}

.active li:nth-child(3) {
  transition-delay: 0.6s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.active .reveal-left,
.active .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

/* CTA Button */
.cta-btn {
  padding: 16px 45px;
  border: none;
  border-radius: 12px;
  background: var(--brand-lavender);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(163, 137, 244, 0.2);
}

/* Mobile Fix */
@media (max-width: 968px) {
  .software-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .reverse {
    direction: ltr;
  }

  h2 {
    font-size: 2.5rem;
  }

  .glass-frame {
    height: 280px;
    font-size: 6rem;
  }

  .feature-stagger {
    display: inline-block;
    text-align: left;
  }
}

/* -------------------------
---------Website page--------
------------------------  */
.web-dev-features {
  padding: 100px 0;
  background: #ffffff;
  color: #2d1b4e;
}

.web-dev-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.service-label {
  color: #9d7cff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
}

.web-content-side h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.text-purple {
  color: #9d7cff;
}

.section-desc {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Feature Items */
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 45px;
}

.check-item {
  display: flex;
  gap: 20px;
}

.check-icon {
  width: 50px;
  height: 50px;
  background: rgba(157, 124, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9d7cff;
  font-size: 20px;
  flex-shrink: 0;
}

.check-text h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #2d1b4e;
}

.check-text p {
  font-size: 15px;
  color: #777;
}

/* Tech Stack Floating Grid */
.tech-stack-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-card {
  background: #f8f9ff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.tech-card i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #9d7cff;
  display: block;
}

.tech-card span {
  font-weight: 700;
  font-size: 14px;
  color: #2d1b4e;
}

.tech-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(157, 124, 255, 0.15);
  border-color: #9d7cff;
}

/* Button */
.btn-primary-web {
  display: inline-block;
  padding: 16px 40px;
  background: #2d1b4e;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .btn-primary-web {
    display: block;
    margin: 30px auto 0;
    text-align: center;
  }
}


.btn-primary-web:hover {
  background: #9d7cff;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .web-dev-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .check-item {
    flex-direction: column;
    align-items: center;
  }
}





:root {
  --primary-dark: #372a5a;
  --accent-light: #9c6cff;
  --secondary-dark-blob: #5d4a8f;
  --text-color: #f8f9fa;
  --accent-pink: #ad86f7;
}

/* ===============================
   SECTION
================================ */
.website-types {
  background-color: var(--primary-dark);
  padding: 80px 5%;
  color: var(--text-color);
}

/* ===============================
   GRID
================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* ===============================
   CARD WRAPPER
================================ */
.type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}

/* ===============================
   CONTENT BOX (EQUAL HEIGHT ONLY)
================================ */
.content-box {
  border-left: 2px dotted rgba(255, 255, 255, 0.2);
  border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
  padding: 40px 20px 25px 25px;
  width: 100%;
  min-height: 140px;

  /* ONLY additions */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ===============================
   HEADING (UNCHANGED STYLES)
================================ */
.content-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 700;
}

/* ===============================
   DOT (UNCHANGED)
================================ */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  /* 🔴 THIS FIXES THE ISSUE */
}


.dot.purple {
  background: var(--accent-light);
}

.dot.pink {
  background: var(--accent-pink);
}

/* ===============================
   TEXT (UNCHANGED)
================================ */
.content-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(80, 80, 80, 0.829);
}

/* ===============================
   CONNECTOR LINE
================================ */
.connector-line {
  width: 2px;
  height: 40px;
  border-left: 2px dotted rgba(255, 255, 255, 0.4);
  margin-top: -2px;
}

/* ===============================
   ICON CIRCLE
================================ */
.circle-icon {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.inner-circle {
  width: 110px;
  height: 110px;
  background: var(--secondary-dark-blob);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #fff;
  z-index: 2;
  border: 4px solid var(--primary-dark);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Accent items */
.type-item.accent .inner-circle {
  background: var(--accent-pink);
}

/* ===============================
   ROTATING BORDER
================================ */
.rotating-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===============================
   HOVER
================================ */
.type-item:hover .inner-circle {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(156, 108, 255, 0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .types-grid {
    grid-template-columns: 1fr;
  }
}









:root {
  --primary-dark: #372a5a;
  --accent-light: #9c6cff;
  --secondary-dark-blob: #5d4a8f;
  --text-muted: #636e72;
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.process-section {
  padding: 60px 5%;
  background: #ffffff;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 100px;
}

.sub-label {
  color: var(--accent-light);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.header-desc {
  color: var(--text-muted);
  margin-top: 15px;
  font-size: 1.1rem;
}

.process-flow-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The Connecting Line (Improved UI) */
.flow-line {
  position: absolute;
  top: 50px;
  /* Center of the 100px icon */
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0.2;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.process-card {
  text-align: center;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-connector {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border: 2px solid #f1f2f6;
  border-radius: 30px;
  /* Modern squircle look */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-dark);
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-light);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.card-content h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.card-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Hover State - High End UI */
.process-card:hover {
  transform: translateY(-10px);
}

.process-card:hover .icon-wrapper {
  border-color: var(--accent-light);
  color: var(--accent-light);
  box-shadow: 0 15px 30px rgba(156, 108, 255, 0.2);
  transform: rotate(-5deg);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .flow-line {
    display: none;
  }

  .process-grid {
    gap: 60px;
  }
}











/* Isolated Dark Portfolio Styles */
:root {
  --primary-dark: #372a5a;
  --accent-light: #9c6cff;
  --secondary-dark-blob: #5d4a8f;
  --text-color: #f8f9fa;
  --button-bg: #a78bfa;
}

.dt-portfolio-section {
  padding: 100px 5%;
  background-color: var(--primary-dark);
  color: var(--text-color);
}

.dt-portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dt-portfolio-header {
  text-align: center;
  margin-bottom: 80px;
}

.dt-portfolio-tag {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.dt-portfolio-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 15px 0;
}

.dt-portfolio-gradient {
  color: var(--accent-light);
}

.dt-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Card Alignment Fix */
.dt-portfolio-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image Core Fix: No Cropping */
.dt-portfolio-img-container {
  position: relative;
  height: 250px;
  /* Fixed height for image area */
  width: 100%;
  background-color: #000;
  /* Fills empty space for vertical shots */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dt-portfolio-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ENTIRE image is visible */
  transition: transform 0.6s ease;
}

.dt-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(156, 108, 255, 0.85);
  /* Accent color overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
}

.dt-portfolio-overlay i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Metadata Area */
.dt-portfolio-info {
  padding: 30px;
  background: var(--secondary-dark-blob);
  flex-grow: 1;
  /* Ensures card bottoms always align */
}

.dt-portfolio-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.dt-portfolio-info p {
  color: var(--button-bg);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hover Animation */
.dt-portfolio-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dt-portfolio-card:hover .dt-portfolio-overlay {
  opacity: 1;
}

.dt-portfolio-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .dt-portfolio-grid {
    grid-template-columns: 1fr;
  }
}








/* Unique Scope for CTA to prevent class clashing */
.digi-cta-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.digi-container {
  max-width: 1200px;
  margin: 0 auto;
}

.digi-cta-card {
  background: var(--primary-dark);
  border-radius: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 30px 60px rgba(55, 42, 90, 0.3);
}

.digi-cta-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}

.digi-cta-sub {
  color: var(--button-bg);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
}

.digi-cta-heading {
  color: #fff !important;
  /* Forces color if global styles interfere */
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  margin: 20px 0 !important;
  font-weight: 800;
  line-height: 1.2;
}

.digi-text-gradient {
  background: linear-gradient(90deg, var(--accent-light), var(--button-bg));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.digi-cta-text {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.2rem !important;
  margin-bottom: 40px !important;
}

/* Namespaced Button Styling */
.digi-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.digi-btn {
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.digi-btn-primary {
  background: var(--button-bg);
  color: var(--primary-dark) !important;
}

.digi-btn-primary:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(167, 139, 250, 0.4);
  color: var(--primary-dark) !important;
}

.digi-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

.digi-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-5px);
  color: #ffffff !important;
}

/* Decorative Blobs */
.digi-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
}

.digi-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  top: -100px;
  left: -100px;
}

.digi-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-dark-blob);
  bottom: -150px;
  right: -100px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .digi-cta-card {
    padding: 50px 20px;
    border-radius: 30px;
  }

  .digi-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}






/* -----------------------------------
--------Digital Marketing page--------
----------------------------------  */

.marketing-service-page {
  background: #ffffff;
  /* Clean light background */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.marketing-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(157, 124, 255, 0.1) 0%,
      transparent 70%);
  z-index: 0;
}

.marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.m-badge {
  background: #9d7cff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(to right, #9d7cff, #2d1b4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marketing-text-box h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2d1b4e;
  margin-bottom: 25px;
}

/* Stats Section */
.growth-stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.stat-box h4 {
  font-size: 32px;
  color: #9d7cff;
  display: inline-block;
}

.stat-box span {
  font-size: 24px;
  color: #9d7cff;
  font-weight: 800;
}

.stat-box p {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
}

/* Floating Visuals */
.marketing-visual {
  position: relative;
}

.marketing-visual img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0px 60px rgba(103, 81, 168, 0.712);
}

.f-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9d7cff;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.637);
  animation: floating 3s infinite ease-in-out;
  z-index: 2;
}

.icon-1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 1s;
}

.icon-3 {
  top: 50%;
  right: -30px;
  animation-delay: 2s;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Service Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.pillar-card {
  background: #fff;
  border: 1px solid #2d1b4e;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 0px 20px #9d7cff77;
}

.pillar-card:hover {
  background: linear-gradient(135deg, #2d1b4e, #9d7cff);
  color: #fff;
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(157, 124, 255, 0.3);
}

.pillar-card h4 {
  background: linear-gradient(135deg, #2d1b4e, #9d7cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover */
.pillar-card:hover h4 {
  background: none;
  -webkit-text-fill-color: #f5f5f7;
  color: #f5f5f7;
  /* fallback */
}

.pillar-card:hover p {
  color: #c2c2c2;
}

.pillar-card i {
  font-size: 35px;
  color: #9d7cff;
  margin-bottom: 20px;
  transition: 0.4s;
}

.pillar-card:hover i {
  color: #fff;
  transform: scale(1.2);
}

.marketing-btn {
  padding: 16px 40px;
  background: #2d1b4e;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.marketing-btn:hover {
  background: #9d7cff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .marketing-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .growth-stats {
    justify-content: center;
  }

  .marketing-visual {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .marketing-text-box h2 {
    font-size: 32px;
  }
}





.dt-growth-area {
  padding: 120px 5%;
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.dt-growth-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header UI */
.dt-growth-header {
  text-align: center;
  margin-bottom: 100px;
}

.dt-growth-badge {
  background: rgba(156, 108, 255, 0.1);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.dt-growth-header h2 {
  color: #fff;
  font-size: 3rem;
  margin: 20px 0;
  font-weight: 800;
}

.dt-growth-highlight {
  color: var(--accent-light);
  position: relative;
}

.dt-growth-header p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Timeline/Grid UI */
.dt-growth-timeline {
  position: relative;
  padding-top: 50px;
}

.dt-timeline-track {
  position: absolute;
  top: 100px;
  /* Center of circles */
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.dt-timeline-progress {
  width: 0%;
  height: 100%;
  background: var(--accent-light);
  box-shadow: 0 0 15px var(--accent-light);
  transition: width 2s ease-in-out;
}

.dt-growth-area.active .dt-timeline-progress {
  width: 100%;
}

.dt-growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Node Styling */
.dt-growth-node {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dt-node-circle {
  width: 100px;
  height: 100px;
  background: var(--primary-dark);
  border: 2px solid rgba(156, 108, 255, 0.3);
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  transition: all 0.4s ease;
}

/* Pulsing effect on hover */
.dt-growth-node:hover .dt-node-circle {
  border-color: var(--accent-light);
  box-shadow: 0 0 30px rgba(156, 108, 255, 0.4);
  transform: scale(1.1);
}

.dt-node-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  flex: 1;
}

.dt-node-step {
  color: var(--accent-light);
  font-weight: 800;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.dt-node-content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.dt-node-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Fixes */
@media (max-width: 992px) {
  .dt-growth-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dt-timeline-track {
    display: none;
  }
}







.digi-tools-badge {
  color: #3a2759;
  font-weight: 700;
  padding: 5px;
  border: 1px solid #3a2759;
  border-radius: 20px;

}

/* Isolated Namespace to prevent Card Clashes */


.digi-head-div {
  margin-bottom: 15px;
}

.digi-tools-title {
  color: #3a2759;
  font-weight: 700;
}


.digi-tools-section {
  padding: 100px 5%;
  background-color: #fcfaff;
  /* Requested Background */
  overflow: hidden;
}

.digi-tools-container {
  max-width: 1200px;
  margin: 0 auto;
}

.digi-tools-header {
  text-align: center;
  margin-bottom: 70px;
}

.digi-tools-gradient {
  background: linear-gradient(90deg, var(--accent-light), var(--button-bg));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.digi-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.digi-tools-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 45px 20px;
  text-align: center;
  border: 1px solid rgba(156, 108, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: default;
  box-shadow: 0 5px 20px #3a2759;
}

/* 3D Flip Icon logic */
.digi-tools-flip-icon {
  font-size: 3.2rem;
  color: var(--accent-light);
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Hover Animations */
.digi-tools-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-light);
  box-shadow: 0 25px 50px #ae86f73f;
}

.digi-tools-card:hover .digi-tools-flip-icon {
  transform: rotateY(360deg);
  /* The 3D Flip */
}

.digi-tools-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0;
}

/* Reveal Script Support */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay);
}

@media (max-width: 768px) {
  .digi-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digi-tools-card {
    padding: 30px 15px;
  }
}










.dt-metrics-section {
  padding: 80px 5%;
  background-color: #fcfaff;
  /* Very light purple tint for the background */
  border-top: 1px solid #f0eaff;
  border-bottom: 1px solid #f0eaff;
}

.dt-metrics-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dt-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.dt-metrics-card {
  text-align: center;
  padding: 30px;
  background: transparent;
  transition: transform 0.3s ease;
}

.dt-metrics-card:hover {
  transform: translateY(-5px);
}

.dt-metrics-icon {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 15px;
  opacity: 0.8;
}

.dt-metrics-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.dt-metrics-number span {
  color: var(--accent-light);
  font-size: 2rem;
  margin-left: 2px;
}

.dt-metrics-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dt-metrics-subtext {
  font-size: 0.85rem;
  color: #888;
  display: block;
}

/* Animations matching your existing structure */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay);
}

@media (max-width: 768px) {
  .dt-metrics-number {
    font-size: 2.8rem;
  }
}




/* Isolated Namespace */
.why-dt-section {
  padding: 120px 5%;
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.why-dt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-dt-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-dt-tag {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.why-dt-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 15px 0;
}

.why-dt-gradient {
  background: linear-gradient(90deg, var(--accent-light), #a78bfa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-dt-subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid and Path Styling */
.why-dt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.why-dt-card {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.why-dt-card:hover {
  background: rgba(156, 108, 255, 0.05);
  border-color: var(--accent-light);
  transform: translateY(-10px);
}

/* The L-Shape Connector Logic */
.why-dt-connector {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 2px;
  height: 40px;
  border-left: 2px dotted rgba(156, 108, 255, 0.4);
  z-index: 1;
}

.why-dt-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(156, 108, 255, 0.3);
}

.why-dt-content h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-dt-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
}

/* Scroll Animation matching your existing structure */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay);
}

@media (max-width: 768px) {
  .why-dt-connector {
    display: none;
  }

  .why-dt-title {
    font-size: 2.2rem;
  }
}

/* Isolated Namespace for Growth Marketing CTA */
.gm-cta-section {
  padding: 120px 5%;
  background-color: #ffffff;
  /* Light background for high contrast */
}

.gm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gm-cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark-blob) 100%);
  border-radius: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 80px rgba(55, 42, 90, 0.25);
}

.gm-cta-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 0 auto;
}

.gm-cta-badge {
  color: var(--button-bg);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.gm-cta-title {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin: 25px 0 !important;
}

.gm-text-white {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.gm-cta-description {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.25rem !important;
  margin-bottom: 50px !important;
  line-height: 1.6;
}

/* Button UI */
.gm-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.gm-btn {
  padding: 20px 40px;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gm-btn-white {
  background-color: #ffffff;
  color: var(--primary-dark) !important;
}

.gm-btn-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
  background-color: var(--accent-light);
  color: #ffffff !important;
}

.gm-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
}

.gm-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
}

/* Decorative Circles */
.gm-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-light);
  filter: blur(100px);
  opacity: 0.3;
}

.gm-circle-1 {
  width: 350px;
  height: 350px;
  top: -150px;
  right: -100px;
}

.gm-circle-2 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: -50px;
  background: var(--button-bg);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .gm-cta-card {
    padding: 60px 20px;
    border-radius: 30px;
  }

  .gm-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .gm-btn {
    width: 100%;
    justify-content: center;
  }
}












/* -----------------------------------
--------E-commerce page--------
----------------------------------  */

.service-detail-section {
  padding: 120px 0;
  background: #ffffff;
  /* Clean white for readability */
  overflow: hidden;
}

.service-flex-container {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

/* Visual Side */
.service-visual-box {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.image-accent-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle,
      rgba(157, 124, 255, 0.15) 0%,
      transparent 70%);
  z-index: -1;
}

.image-wrapper img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  height: 350px;
}

.floating-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.floating-badge i {
  font-size: 24px;
  color: #9d7cff;
}

.floating-badge span {
  display: block;
  font-weight: 800;
  color: #2d1b4e;
  font-size: 14px;
}

.floating-badge p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* Content Side */
.service-content-box {
  flex: 1;
}

.service-subtitle {
  color: #9d7cff;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.service-title {
  font-size: 45px;
  font-weight: 800;
  color: #2d1b4e;
  margin-bottom: 25px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(to right, #9d7cff, #2d1b4e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Points List */
.service-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

.service-feature-list i {
  color: #9d7cff;
  font-size: 18px;
  margin-top: 3px;
}

/* CTA Buttons */
.service-cta-group {
  display: flex;
  gap: 20px;
}

.btn-main {
  padding: 16px 40px;
  background: #9d7cff;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline {
  padding: 16px 40px;
  border: 2px solid #2d1b4e;
  color: #2d1b4e;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  background: #2d1b4e;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(157, 124, 255, 0.2);
}

.btn-outline:hover {
  background: #2d1b4e;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .service-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .service-cta-group {
    justify-content: center;
  }

  .service-feature-list li {
    justify-content: center;
    text-align: left;
  }

  .floating-badge {
    display: none;
  }
}








/* Container & Base Styles */
.dti-process-wrapper {
  background-color: var(--primary-dark);
  color: var(--text-color);
  padding: 100px 5%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  /* Matching your modern look */
}

.dti-text-center {
  text-align: center;
  margin-bottom: 60px;
}

.dti-subtitle {
  color: var(--accent-light);
  font-weight: 700;
  /* letter-spacing: 3px; */
  font-size: 1.4rem;
}

.dti-main-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 10px;
  font-weight: 800;
}

/* Process Grid */
.dti-process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.dti-process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(156, 108, 255, 0.2);
  padding: 40px 25px;
  border-radius: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dti-process-card:hover {
  background: rgba(156, 108, 255, 0.08);
  border-color: var(--accent-light);
  transform: translateY(-12px) scale(1.02);
}

/* Animated Number Badges */
.dti-number-badge {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-light);
  display: block;
  margin-bottom: 20px;
}

.dti-process-card h3 {
  color: var(--button-bg);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.dti-process-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.7;
}

/* Animations */
@keyframes dtiFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-animate-in {
  animation: dtiFadeInUp 0.8s ease forwards;
  opacity: 0;
  /* Starts hidden for animation */
}

/* Staggering the cards */
.dti-animate-in:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-animate-in:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-animate-in:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-animate-in:nth-child(4) {
  animation-delay: 0.4s;
}

.dti-animate-in:nth-child(5) {
  animation-delay: 0.5s;
}

/* Pulse Animation for active feel */
@keyframes dtiPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(167, 139, 250, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
  }
}

.dti-process-card:first-child {
  border-color: var(--button-bg);
  animation: dtiFadeInUp 0.8s ease forwards, dtiPulse 2s infinite;
}












.dti-detailed-why {
  background-color: #ffffff;
  padding: 80px 5%;
}

.dti-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dti-header {
  text-align: center;
  margin-bottom: 50px;
}

.dti-pill {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--accent-light);
  border: 1px solid rgba(156, 108, 255, 0.3);
  padding: 5px 15px;
  border-radius: 50px;
}

.dti-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 20px;
}

.dti-text-purple {
  color: var(--accent-light);
}

/* Grid logic: 2 columns on desktop, 1 on mobile */
.dti-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

/* Horizontal Card Design */
.dti-feat-card {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dti-feat-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 10px 40px rgba(55, 42, 90, 0.05);
  transform: scale(1.02);
}

/* Icon Styling */
.dti-icon-side {
  min-width: 60px;
  height: 60px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 25px;
  transition: 0.3s;
}

.dti-feat-card:hover .dti-icon-side {
  background: var(--accent-light);
  transform: rotate(-5deg);
}

/* Text Detail Styling */
.dti-info-side h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.dti-info-side p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Entrance Animations */
@keyframes dtiSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[class*="dti-stagger-"] {
  animation: dtiSlideUp 0.7s ease-out forwards;
  opacity: 0;
}

.dti-stagger-1 {
  animation-delay: 0.1s;
}

.dti-stagger-2 {
  animation-delay: 0.2s;
}

.dti-stagger-3 {
  animation-delay: 0.3s;
}

.dti-stagger-4 {
  animation-delay: 0.4s;
}

.dti-stagger-5 {
  animation-delay: 0.5s;
}

/* Mobile Adjustments */
@media (max-width: 500px) {
  .dti-detailed-grid {
    grid-template-columns: 1fr;
  }

  .dti-feat-card {
    flex-direction: column;
    text-align: left;
  }

  .dti-icon-side {
    margin-bottom: 20px;
  }
}










.dti-usecase-section {
  background-color: var(--primary-dark);
  padding: 100px 5%;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.dti-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dti-header {
  text-align: center;
  margin-bottom: 60px;
}

.dti-label {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.dti-main-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.dti-gradient {
  background: linear-gradient(to right, var(--accent-light), var(--button-bg));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dti-sub-desc {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  font-size: 1.1rem;
}

/* Industry Grid */
.dti-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Glass Card Effect */
.dti-industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.dti-industry-card:hover {
  background: rgba(156, 108, 255, 0.08);
  border-color: var(--accent-light);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dti-icon-box {
  width: 65px;
  height: 65px;
  background: var(--secondary-dark-blob);
  color: white;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: 0.3s;
}

.dti-industry-card:hover .dti-icon-box {
  background: var(--accent-light);
  transform: scale(1.1) rotate(10deg);
}

.dti-industry-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--button-bg);
}

.dti-industry-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.6;
}

/* Animations */
@keyframes dtiFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-fade-up {
  opacity: 0;
  animation: dtiFadeUp 0.8s ease-out forwards;
}

/* Staggering the industry cards */
.dti-fade-up:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-fade-up:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-fade-up:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-fade-up:nth-child(4) {
  animation-delay: 0.4s;
}

.dti-fade-up:nth-child(5) {
  animation-delay: 0.5s;
}

/* Wrapper to force absolute center alignment */
.dti-center-banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0 100px 0;
  /* Extra bottom padding for the section end */
}

/* The Horizontal Rectangle Card */
.dti-horizontal-rect {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 95%;
  max-width: 1000px;
  /* Long horizontal shape */
  min-height: 120px;

  background: rgba(156, 108, 255, 0.05);
  border: 1px dashed rgba(167, 139, 250, 0.5);
  border-radius: 20px;
  padding: 20px 40px;
  gap: 30px;

  transition: all 0.4s ease;
  position: relative;
}

.dti-horizontal-rect:hover {
  background: rgba(156, 108, 255, 0.1);
  border-style: solid;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Icon with a pulsing background effect */
.dti-rect-icon {
  position: relative;
  font-size: 2.5rem;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dti-icon-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.2;
  animation: dtiPing 2s infinite;
}

@keyframes dtiPing {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Content Area */
.dti-rect-content {
  flex: 2;
}

.dti-rect-content h3 {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.dti-rect-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 0;
}

/* Glow Button Area */
.dti-rect-action {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.dti-btn-glow {
  background: var(--accent-light);
  color: white !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(156, 108, 255, 0.4);
  transition: all 0.3s ease;
}

.dti-btn-glow:hover {
  background: var(--button-hover);
  box-shadow: 0 0 30px rgba(156, 108, 255, 0.6);
  transform: scale(1.05);
}

/* Responsive: Stack on small mobile only */
@media (max-width: 850px) {
  .dti-horizontal-rect {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .dti-rect-action {
    justify-content: center;
  }
}





/* Unique Outer Wrapper - White Background */
.dti-cta-v2-outer {
  background-color: #ffffff;
  /* Strong contrast from dark sections */
  padding: 120px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  /* Fallback */
}

.dti-cta-v2-container {
  max-width: 1100px;
  width: 100%;
}

/* The Main Gradient Card */
.dti-cta-v2-main-card {
  position: relative;
  background: linear-gradient(135deg, #372a5a 0%, #5d4a8f 100%);
  /* Using your palette */
  border-radius: 40px;
  padding: 80px 40px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 80px rgba(55, 42, 90, 0.25);
  animation: dtiCtaV2FadeIn 1s ease-out forwards;
}

/* Background Glow Decorations */
.dti-cta-v2-glow-top {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: #9c6cff;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.dti-cta-v2-glow-bottom {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: #a78bfa;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

/* Content Styles */
.dti-cta-v2-inner-content {
  position: relative;
  z-index: 5;
}

.dti-cta-v2-badge {
  color: #a78bfa;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 20px;
}

.dti-cta-v2-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.dti-cta-v2-accent {
  color: #a78bfa;
  /* Using your button-bg color */
}

.dti-cta-v2-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 45px;
  line-height: 1.6;
}

/* Action Buttons */
.dti-cta-v2-action-area {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.dti-cta-v2-btn-solid {
  background: #ffffff;
  color: #372a5a !important;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dti-cta-v2-btn-solid:hover {
  transform: translateY(-5px);
  background: #9c6cff;
  color: #ffffff !important;
}

.dti-cta-v2-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 15px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dti-cta-v2-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* Trust Row */
.dti-cta-v2-trust-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dti-cta-v2-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.dti-cta-v2-trust-item i {
  color: #9c6cff;
  font-size: 1.2rem;
}

/* Animations */
@keyframes dtiCtaV2FadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .dti-cta-v2-action-area {
    flex-direction: column;
  }

  .dti-cta-v2-main-card {
    padding: 60px 20px;
  }

  .dti-cta-v2-trust-row {
    gap: 15px;
  }

  .dti-cta-v2-btn-solid,
  .dti-cta-v2-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 340px) {
  .dti-cta-v2-main-card {
    padding: 40px 15px;
  }

  .dti-cta-v2-btn-solid,
  .dti-cta-v2-btn-ghost {
    padding: 14px 15px;
    font-size: 0.9rem;
  }
}


















/* -----------------------------------
--------uiux page--------
----------------------------------  */

/* Layout Reversal for Variety */
.flex-reverse {
  flex-direction: row-reverse;
}

.design-stack-wrapper {
  position: relative;
  padding: 20px;
}

.design-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle,
      rgba(157, 124, 255, 0.1) 0%,
      transparent 60%);
  z-index: -1;
}

.main-design-img {
  width: 100%;
  border-radius: 40px 10px 40px 10px;
  /* Stylized corners for design page */
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Design Tools Animation */
.floating-tool {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: floatingDesign 4s infinite ease-in-out;
}

.figma {
  top: 10%;
  right: -20px;
  color: #f24e1e;
}

.adobe {
  bottom: 15%;
  left: -20px;
  color: #ff0000;
  animation-delay: 2s;
}

@keyframes floatingDesign {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Mobile Fix for Reversal */
@media (max-width: 991px) {
  .flex-reverse {
    flex-direction: column;
  }

  /* Stack normally on mobile */
}








/* Section Base */
.dti-ux-section {
  background-color: var(--primary-dark);
  padding: 100px 5%;
  color: #ffffff;
  overflow: hidden;
}

.dti-ux-container {
  max-width: 1100px;
  margin: 0 auto;
}

.dti-ux-header {
  text-align: center;
  margin-bottom: 70px;
}

.dti-ux-label {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.dti-ux-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.dti-ux-intro {
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.6;
}

/* Vertical List Layout */
.dti-ux-content-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 850px;
  margin: 0 auto;
}

/* UX Item Styling */
.dti-ux-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.dti-ux-item:hover {
  background: rgba(156, 108, 255, 0.08);
  border-color: var(--accent-light);
  transform: translateX(10px);
}

.dti-ux-icon {
  min-width: 55px;
  height: 55px;
  background: var(--secondary-dark-blob);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-light);
  margin-right: 25px;
}

.dti-ux-text h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--button-bg);
}

.dti-ux-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.6;
}

/* Animations */
@keyframes dtiUxReveal {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dti-reveal-left {
  opacity: 0;
  animation: dtiUxReveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Staggering the items */
.dti-reveal-left:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-reveal-left:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-reveal-left:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-reveal-left:nth-child(4) {
  animation-delay: 0.4s;
}

.dti-reveal-left:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .dti-ux-item {
    flex-direction: column;
    text-align: left;
  }

  .dti-ux-icon {
    margin-bottom: 15px;
  }
}







.dti-use-section {
  background-color: #ffffff;
  padding: 100px 5%;
  overflow: hidden;
}

.dti-use-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dti-use-header {
  text-align: center;
  margin-bottom: 60px;
}

.dti-use-badge {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 1rem;
  border: 1px solid rgba(156, 108, 255, 0.2);
  padding: 6px 15px;
  border-radius: 50px;
  display: inline-block;
}

.dti-use-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--primary-dark);
  margin-top: 20px;
  font-weight: 800;
}

.dti-use-gradient {
  background: linear-gradient(45deg, var(--primary-dark), var(--accent-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dti-use-desc {
  max-width: 600px;
  margin: 15px auto 0;
  color: #666;
  line-height: 1.6;
}

/* Grid Layout */
.dti-use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Card Styling */
.dti-use-card {
  background: #fcfcfc;
  border: 2px solid #f0f0f0;
  padding: 40px;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dti-use-card:hover {
  background: #ffffff;
  transform: translateY(-12px);
  border-color: var(--accent-light);
  box-shadow: 0 20px 40px rgba(55, 42, 90, 0.08);
}

.dti-use-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--primary-dark);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.dti-use-card:hover .dti-use-icon-wrap {
  background: var(--accent-light);
  transform: rotate(10deg) scale(1.1);
}

.dti-use-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.dti-use-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Entrance Animations */
@keyframes dtiPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dti-anim-pop {
  opacity: 0;
  animation: dtiPopIn 0.8s forwards;
}

/* Staggered Delay */
.dti-anim-pop:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-anim-pop:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-anim-pop:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-anim-pop:nth-child(4) {
  animation-delay: 0.4s;
}

.dti-anim-pop:nth-child(5) {
  animation-delay: 0.5s;
}

.dti-anim-pop:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .dti-use-grid {
    grid-template-columns: 1fr;
  }

  .dti-use-card {
    padding: 30px;
  }
}







.dti-flip-section {
  background-color: var(--primary-dark);
  padding: 80px 5%;
  perspective: 1000px;
  /* Essential for 3D effect */
}

.dti-flip-container {
  max-width: 1000px;
  margin: 0 auto;
}

.dti-flip-header {
  text-align: center;
  margin-bottom: 50px;
}

.dti-flip-badge {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.7rem;
}

.dti-flip-title {
  color: white;
  font-size: 2.2rem;
  margin-top: 10px;
}

/* Grid logic */
.dti-flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

/* Flip Card Core */
.dti-flip-card {
  height: 180px;
  /* Small area */
  cursor: pointer;
}

.dti-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.dti-flip-card:hover .dti-flip-inner {
  transform: rotateY(180deg);
}

.dti-flip-front,
.dti-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Front Styling */
.dti-flip-front {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.dti-flip-front i {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.dti-flip-front h3 {
  font-size: 1rem;
  margin: 0;
}

/* Back Styling */
.dti-flip-back {
  background: var(--accent-light);
  color: white;
  transform: rotateY(180deg);
}

.dti-flip-back p {
  font-size: 0.85rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}


/* Outer Section - Clean White Background */
.dti-final-cta-outer {
  background-color: #ffffff;
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.dti-final-cta-container {
  max-width: 900px;
  width: 100%;
}

/* The Central CTA Box */
.dti-final-card {
  position: relative;
  background-color: var(--primary-dark);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(55, 42, 90, 0.15);
}

.dti-final-content {
  position: relative;
  z-index: 2;
}

.dti-final-heading {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.dti-final-span {
  color: var(--accent-light);
}

.dti-final-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Layout */
.dti-final-btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.dti-final-btn-main {
  background-color: var(--button-bg);
  color: #ffffff !important;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
  animation: dtiPulseGlow 2s infinite;
}

.dti-final-btn-main:hover {
  background-color: var(--button-hover);
  transform: scale(1.05);
}

.dti-final-btn-sub {
  background-color: transparent;
  color: #ffffff !important;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  transition: all 0.3s ease;
}

.dti-final-btn-sub:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Decorative Background Element */
.dti-final-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary-dark-blob);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
}

/* Animations */
@keyframes dtiPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(167, 139, 250, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
  }
}

@keyframes dtiFinalReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-final-reveal {
  animation: dtiFinalReveal 0.8s ease-out forwards;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .dti-final-btn-group {
    flex-direction: column;
  }

  .dti-final-card {
    padding: 40px 20px;
  }
}
















/* -----------------------------------
-------IT Consultation page--------
----------------------------------  */
/* Hero Wrapper */
.dti-train-hero {
  background-color: #ffffff;
  padding: 100px 5%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dti-train-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}


.dti-float-icon span {
  color: #000;
}

/* Badge & Typography */
.dti-train-badge {
  color: var(--accent-light);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  border-left: 3px solid var(--accent-light);
  padding-left: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.dti-train-main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--primary-dark);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.dti-train-gradient {
  background: linear-gradient(45deg, var(--primary-dark), var(--accent-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dti-train-lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 35px;
  max-width: 500px;
}

/* Highlights List */
.dti-train-highlights {
  margin-bottom: 40px;
}

.dti-train-tick {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}

.dti-train-tick i {
  color: var(--accent-light);
  font-size: 1.3rem;
}

/* Buttons */
.dti-train-actions {
  display: flex;
  gap: 20px;
}

.dti-train-btn-primary {
  background: var(--button-bg);
  color: white !important;
  padding: 18px 35px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(167, 139, 250, 0.3);
  transition: all 0.3s ease;
}

.dti-train-btn-primary:hover {
  background: var(--button-hover);
  transform: translateY(-5px);
}

.dti-train-btn-secondary {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark) !important;
  padding: 18px 35px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.dti-train-btn-secondary:hover {
  background: rgba(55, 42, 90, 0.05);
}

/* Visuals & Floating Icons */
.dti-train-visual {
  position: relative;
}

.dti-train-main-img-wrapper {
  position: relative;
  z-index: 2;
}

.dti-main-learner-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Icon Styles */
.dti-float-icon {
  position: absolute;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(167, 139, 250, 0.623);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
  animation: dtiFloat 3s ease-in-out infinite;
}

.dti-float-icon i {
  color: var(--accent-light);
  font-size: 1.2rem;
}

.dti-icon-py {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.dti-icon-js {
  top: 40%;
  right: -20px;
  animation-delay: 0.5s;
}

.dti-icon-react {
  bottom: 10%;
  left: 0px;
  animation-delay: 1s;
}

.dti-icon-db {
  top: 70%;
  left: -40px;
  animation-delay: 1.5s;
}

@keyframes dtiFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Mobile Fixes */
@media (max-width: 992px) {
  .dti-train-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dti-train-lead,
  .dti-train-highlights {
    margin-left: auto;
    margin-right: auto;
  }

  .dti-train-actions {
    justify-content: center;
  }

  .dti-train-visual {
    margin-top: 50px;
  }

  .dti-float-icon {
    display: none;
  }

  /* Hide icons on small mobile to avoid clutter */
}






/* Container & Background */
.dti-train-qa-wrapper {
  background-color: var(--primary-dark);
  padding: 100px 5%;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.dti-train-qa-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Typography & Accent Styles */
.dti-train-qa-tag {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 1rem;
  display: block;
  margin-bottom: 15px;
}

.dti-train-qa-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.dti-train-qa-accent {
  color: var(--button-bg);
}

.dti-train-qa-desc {
  font-size: 1.15rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Promise Box with Animation */
.dti-train-qa-promise {
  position: relative;
  background: rgba(156, 108, 255, 0.1);
  padding: 25px;
  border-radius: 0 20px 20px 0;
  border-left: 4px solid var(--accent-light);
}

.dti-train-qa-glow-bar {
  position: absolute;
  top: 0;
  left: -4px;
  height: 100%;
  width: 4px;
  background: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-light);
  animation: dti-bar-glow 2s infinite;
}

@keyframes dti-bar-glow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Card Stack & Hover Animations */
.dti-train-qa-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dti-train-qa-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dti-train-qa-item:hover {
  background: rgba(156, 108, 255, 0.12);
  border-color: var(--accent-light);
  transform: translateX(-15px) scale(1.02);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

.dti-train-qa-icon {
  min-width: 55px;
  height: 55px;
  background: var(--secondary-dark-blob);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-light);
  transition: 0.3s;
}

.dti-train-qa-item:hover .dti-train-qa-icon {
  transform: rotate(360deg);
  background: var(--accent-light);
  color: #fff;
}

.dti-train-qa-body h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.dti-train-qa-body p {
  font-size: 0.9rem;
  opacity: 0.6;
  margin: 0;
}

/* Entrance Animations */
@keyframes dti-qa-slide-in {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[class*="dti-train-qa-anim-"] {
  opacity: 0;
  animation: dti-qa-slide-in 0.8s ease forwards;
}

.dti-train-qa-anim-1 {
  animation-delay: 0.2s;
}

.dti-train-qa-anim-2 {
  animation-delay: 0.3s;
}

.dti-train-qa-anim-3 {
  animation-delay: 0.4s;
}

.dti-train-qa-anim-4 {
  animation-delay: 0.5s;
}

.dti-train-qa-anim-5 {
  animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dti-train-qa-container {
    grid-template-columns: 1fr;
  }

  .dti-train-qa-item:hover {
    transform: translateY(-10px);
  }
}





.dti-tracks-section {
  background-color: #ffffff;
  padding: 100px 5%;
  overflow: hidden;
}

.dti-tracks-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dti-tracks-header {
  text-align: center;
  margin-bottom: 60px;
}

.dti-tracks-badge {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1rem;
  border: 1px solid rgba(156, 108, 255, 0.2);
  padding: 5px 15px;
  border-radius: 50px;
}

.dti-tracks-title {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin: 20px 0;
  font-weight: 800;
}

.dti-tracks-highlight {
  color: var(--accent-light);
}

.dti-tracks-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.dti-tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

/* Track Card Styling */
.dti-track-card {
  background: #fdfdff;
  border: 1px solid #f0f0f8;
  padding: 40px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(55, 42, 90, 0.316);
}

.dti-track-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-light);
  box-shadow: 0 20px 40px rgba(55, 42, 90, 0.08);
}

.dti-track-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.dti-track-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-dark);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.dti-track-duration {
  background: rgba(156, 108, 255, 0.1);
  color: var(--accent-light);
  padding: 5px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
}

.dti-track-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.dti-track-tools {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.dti-track-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.dti-track-outcome {
  color: var(--secondary-dark-blob);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Entrance Animations */
@keyframes dtiPopUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-tracks-reveal {
  opacity: 0;
  animation: dtiPopUp 0.8s ease forwards;
}

/* Staggered Delay */
.dti-tracks-reveal:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-tracks-reveal:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-tracks-reveal:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-tracks-reveal:nth-child(4) {
  animation-delay: 0.4s;
}

.dti-tracks-reveal:nth-child(5) {
  animation-delay: 0.5s;
}

.dti-tracks-reveal:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .dti-tracks-grid {
    grid-template-columns: 1fr;
  }
}






.dti-tech-section {
  background-color: var(--primary-dark);
  padding: 100px 5%;
  color: #ffffff;
  overflow: hidden;
}

.dti-tech-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dti-tech-header {
  text-align: center;
  margin-bottom: 60px;
}

.dti-tech-pill {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
}

.dti-tech-title {
  font-size: 2.8rem;
  margin: 15px 0;
  font-weight: 800;
}

.dti-tech-accent {
  color: var(--button-bg);
}

.dti-tech-desc {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.6;
}

/* Grid logic */
.dti-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card Styling */
.dti-tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0px 15px #00000067;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.dti-tech-card:hover {
  background: rgba(156, 108, 255, 0.08);
  border-color: var(--accent-light);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dti-tech-icon-circle {
  width: 60px;
  height: 60px;
  background: var(--secondary-dark-blob);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--accent-light);
}

.dti-tech-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Tag Cloud Styling */
.dti-tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.dti-tech-tags span {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.dti-tech-card:hover .dti-tech-tags span {
  background: rgba(156, 108, 255, 0.15);
  color: white;
  border-color: var(--accent-light);
}

/* Entrance Animation */
@keyframes dtiTechFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-tech-anim {
  opacity: 0;
  animation: dtiTechFade 0.8s ease forwards;
}

.dti-tech-anim:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-tech-anim:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-tech-anim:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-tech-anim:nth-child(4) {
  animation-delay: 0.4s;
}




.dti-for-section {
  background-color: #ffffff;
  padding: 80px 5%;
  overflow: hidden;
}

.dti-for-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dti-for-header {
  text-align: center;
  margin-bottom: 50px;
}

.dti-for-pill {
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1rem;
  border: 1px solid rgba(156, 108, 255, 0.2);
  padding: 5px 15px;
  border-radius: 50px;
}

.dti-for-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-top: 20px;
  font-weight: 800;
}

.dti-for-accent {
  color: var(--accent-light);
}

/* Horizontal Row Logic */
.dti-for-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Minimalist Card Styling */
.dti-for-card {
  background: #fdfdff;
  border: 2px solid #f0f0f5;
  padding: 30px 20px;
  border-radius: 20px;
  width: 220px;
  /* Fixed width for consistent row look */
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  ;
}

.dti-for-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-light);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(55, 42, 90, 0.05);
}

.dti-for-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
  transition: 0.3s;
}

.dti-for-card:hover .dti-for-icon {
  background: var(--accent-light);
  transform: scale(1.1);
}

.dti-for-card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.dti-for-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Simple Reveal Animation */
@keyframes dtiForFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-for-anim {
  opacity: 0;
  animation: dtiForFade 0.6s ease forwards;
}

.dti-for-anim:nth-child(1) {
  animation-delay: 0.1s;
}

.dti-for-anim:nth-child(2) {
  animation-delay: 0.2s;
}

.dti-for-anim:nth-child(3) {
  animation-delay: 0.3s;
}

.dti-for-anim:nth-child(4) {
  animation-delay: 0.4s;
}

.dti-for-anim:nth-child(5) {
  animation-delay: 0.5s;
}

/* Mobile View */
@media (max-width: 768px) {
  .dti-for-card {
    width: 100%;
    max-width: 350px;
  }
}






/* Outer Background - Pure White */
.dti-train-final-wrapper {
  background-color: #ffffff;
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.dti-train-final-container {
  max-width: 1000px;
  width: 100%;
}

/* Central Card - Dark Gradient */
.dti-train-final-card {
  position: relative;
  background: linear-gradient(135deg, #372a5a 0%, #5d4a8f 100%);
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(55, 42, 90, 0.2);
}

/* Background Blurs */
.dti-train-final-blur-1,
.dti-train-final-blur-2 {
  position: absolute;
  border-radius: 50%;
  background: #9c6cff;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
}

.dti-train-final-blur-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.dti-train-final-blur-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

.dti-train-final-content {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.dti-train-final-tag {
  color: #a78bfa;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 20px;
  display: block;
}

.dti-train-final-h2 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.dti-train-final-gradient {
  color: #9c6cff;
}

.dti-train-final-p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Buttons */
.dti-train-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dti-train-final-btn-main {
  background-color: #ffffff;
  color: #372a5a !important;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: dtiPulseFinal 2s infinite;
}

.dti-train-final-btn-main:hover {
  transform: translateY(-5px);
  background-color: #9c6cff;
  color: #ffffff !important;
}

.dti-train-final-btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 15px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.dti-train-final-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* Footer Stats */
.dti-train-final-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dti-train-final-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.dti-train-final-stat i {
  color: #9c6cff;
  font-size: 1.2rem;
}

/* Animations */
@keyframes dtiPulseFinal {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes dtiFinalReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dti-train-final-reveal {
  animation: dtiFinalReveal 0.8s ease-out forwards;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .dti-train-final-actions {
    flex-direction: column;
  }

  .dti-train-final-footer {
    gap: 15px;
  }

  .dti-train-final-card {
    padding: 60px 20px;
  }
}

















/* ==================================================
   CONTACT PAGE STYLES
================================================== */

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f6f8 0%, #ffffff 100%);
}

.contact-info-section .section-header {
  margin-bottom: 60px;
}

.contact-info-section .section-subtitle {
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.contact-info-section .section-title {
  color: var(--primary-dark);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-section .section-description {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(156, 108, 255, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(156, 108, 255, 0.15);
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-light), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #ffffff;
}

.contact-info-card .card-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info-card .card-content {
  text-align: center;
}

.contact-info-card .card-content p {
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.office-location {
  margin-bottom: 20px;
}

.office-location:last-child {
  margin-bottom: 0;
}

.office-location h4 {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.office-location p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-link {
  display: block;
  color: var(--accent-light);
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.contact-link i {
  margin-right: 8px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.05;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-left-content .form-subtitle {
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.form-left-content .form-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.form-left-content .form-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-features {
  margin-bottom: 40px;
}

.contact-features .feature-item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-features .feature-item i {
  color: var(--accent-light);
  font-size: 24px;
  margin-top: 3px;
}

.contact-features .feature-item h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-features .feature-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.social-connect h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-light);
  transform: translateY(-5px);
}

/* Modern Contact Form */
.modern-contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.form-group .required {
  color: var(--accent-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  /* background: rgba(255, 255, 255, 0.08); */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  /* color: #ffffff; */
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  background: rgba(237, 233, 238, 0.668);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--primary-dark);
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: var(--accent-light);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 108, 255, 0.3);
}

.submit-btn i {
  font-size: 18px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f6f6f8;
}

.map-header {
  margin-bottom: 50px;
}

.map-title {
  color: var(--primary-dark);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.map-description {
  color: #6c757d;
  font-size: 1.1rem;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--secondary-dark-blob) 100%);
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/services/service_back.png");
  opacity: 0.05;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 35px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn.primary {
  background: var(--accent-light);
  color: #ffffff;
}

.cta-btn.primary:hover {
  background: var(--button-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(156, 108, 255, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-left-content {
    text-align: center;
  }

  .contact-features .feature-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-info-section .section-title {
    font-size: 2.2rem;
  }

  .form-left-content .form-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modern-contact-form {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-info-section .section-title {
    font-size: 1.8rem;
  }

  .form-left-content .form-title {
    font-size: 1.6rem;
  }

  .map-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .web-dev-features {
    padding: 60px 0;
  }

  .web-content-side h2 {
    font-size: 2.2rem;
  }

  .tech-stack-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tech-card {
    padding: 20px;
  }
}