/* ==========================================================================
   CASE STUDY APPLICATION - CUSTOM STYLESHEET
   ========================================================================== */

/* --- 1. Font Families & Typography Base --- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap");

/* --- 2. Hero Section Container --- */
.cs-app-hero {
  position: relative;
  padding: 50px 0 50px 0;
  background: linear-gradient(180deg, #e9f6ff -15.14%, #3a92d0 82.94%);
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 90px);
  overflow: hidden;
}

/* Fallback/additional gradient glow behind the hero contents */
.cs-app-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(197, 224, 248, 0.2) 0%,
    rgba(33, 115, 192, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Ensures Bootstrap container sits correctly on top of background shapes */
.cs-app-hero .container {
  position: relative;
  z-index: 2;
}

/* --- Decorative Background Circle Ring Shapes --- */
.cs-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Shape 1 – Left: Single large partial ring */
.cs-hero-shape--left {
  position: absolute;
  left: -155px;
  top: 50%;
  transform: translateY(-65%);
  width: 611px;
  height: 611px;
  opacity: 0.4;
  border-radius: 50%;
  border: 90px solid transparent;
  background: linear-gradient(75deg, #87cdff 0%, rgba(135, 205, 255, 0) 100%)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
/* Shape 2 – Right: Outer ring (867px, 30px stroke) */
.cs-hero-shape--right {
  position: absolute;
  right: -155px;
  bottom: -155px;
  width: 867px;
  height: 867px;
  opacity: 0.7;
  border-radius: 50%;

  border: 30px solid transparent;
  background: linear-gradient(255deg, #87cdff 0%, rgba(135, 205, 255, 0) 100%)
    border-box;

  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.cs-hero-shape--right-inner {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 572px;
  height: 572px;
  opacity: 0.7;
  border-radius: 50%;
  border: 90px solid transparent;
  background: linear-gradient(255deg, #87cdff 0%, rgba(135, 205, 255, 0) 100%)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* --- 3. Hero Left Column Content --- */
/* .cs-app-hero-content {
  padding-right: 30px;
} */

/* The primary page title (H1) */
.cs-app-hero-title {
  font-family: "Inter", sans-serif;
  font-size: 74px;
  white-space: nowrap;
  font-weight: 900;
  line-height: 81px;
  letter-spacing: -0.02em;
  color: #022d52; /* Deep Navy Blue */
  margin-bottom: 25px;
}

/* Specific highlight span within the H1 title (colored white) */
.cs-app-hero-title .highlight-text {
  color: #ffffff;
  display: inline-block;
}

/* The hero paragraph / descriptive subtitle */
.cs-app-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 580px;
  opacity: 0.95;
}

/* --- 4. Hero CTA Buttons --- */
.cs-app-hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Base button properties for the hero buttons */
.cs-app-hero-btns .btn {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  padding: 16px 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Button hover arrow animation */
.cs-app-hero-btns .btn svg {
  transition: transform 0.3s ease;
}

.cs-app-hero-btns .btn:hover svg {
  transform: translateX(5px);
}

/* CTA Filled Button (Solid Blue) */
.btn-primary-gradient {
  position: relative;
  background-color: #54a9e4;
  color: #ffffff !important;
  border: none;
  /* border-radius: 10px; */
  box-shadow: 0 4px 15px rgba(26, 92, 157, 0.3);
  z-index: 1;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #378cdb 0%, #226fad 100%);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-primary-gradient:hover::before {
  transform: scaleX(1);
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 92, 157, 0.4);
}

/* CTA Outline Button (White Border) */
.btn-outline-white {
  position: relative;
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  z-index: 1;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-outline-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-outline-white:hover::before {
  transform: scaleX(1);
}

.btn-outline-white:hover {
  color: #1a5c9d !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* --- 5. Hero Right Column (Mockup Image) --- */
.cs-app-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner positioning element for images */
.cs-app-hero-images {
  position: relative;
  height: 100%;
  right: -40px;
  bottom: 20px;
}

@media (max-width: 1399px) {
  .cs-app-hero-images {
    right: -20px;
  }
}

/* The actual phone mockup image styling */
.cs-app-hero-mockup {
  max-width: 110% !important;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Laptop / Medium Desktops (max-width: 1399px) */
@media (max-width: 1399px) {
  .cs-app-hero-title {
    font-size: 52px;
    white-space: normal;
    line-height: 60px;
  }
  .cs-app-hero-subtitle {
    font-size: 18px;
    line-height: 32px;
  }

  /* Section Titles Reduction */
  .cs-project-overview .overview-title,
  .cs-key-features .features-title,
  .cs-cta-title,
  .cs-driver-app-title,
  .cs-consult-title,
  .cs-experience-title,
  .cs-feedback-title,
  .cs-color-system-title,
  .cs-typography-title,
  .cs-download-title,
  .cs-faq-title {
    font-size: 48px !important;
    line-height: 54px !important;
  }

  .cs-project-overview .tech-title {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .cs-overview-title,
  .cs-typography-subtitle {
    font-size: 38px !important;
    line-height: 46px !important;
  }

  .cs-download-subtitle {
    font-size: 22px !important;
  }
}

/* Tablets / Landcape Mobiles (max-width: 991px) */
@media (max-width: 991px) {
  .cs-app-hero {
    padding: 80px 0 80px 0;
    text-align: center;
    min-height: auto;
  }
  .cs-app-hero-content {
    /* padding-right: 0; */
    margin-bottom: 50px;
  }
  .cs-app-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cs-app-hero-btns {
    justify-content: center;
  }
  .cs-app-hero-image-wrapper {
    margin-top: 20px;
  }
  .cs-app-hero-images {
    right: 0;
    bottom: 0;
  }
  .cs-app-hero-mockup {
    max-width: 100% !important;
  }
}

/* Portrait Mobiles (max-width: 575px) */
@media (max-width: 575px) {
  .cs-app-hero-title {
    font-size: 38px;
    line-height: 46px;
  }
  .cs-app-hero-subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .cs-app-hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .cs-app-hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   7. PROJECT OVERVIEW & TOOLS/TECHNOLOGIES
   ========================================================================== */
.cs-project-overview {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.cs-project-overview .overview-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  color: #101011;
  margin-bottom: 30px;
}

.cs-project-overview .overview-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  color: #101011;
  margin: 0 auto 60px auto;
  letter-spacing: 0%;
}

.cs-project-overview .tech-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 61px;
  color: #101011;
  margin-bottom: 50px;
}

.cs-project-overview .tech-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.cs-project-overview .tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 120px;
}

.cs-project-overview .tech-logo-img-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-project-overview .tech-logo-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cs-project-overview .tech-logo-item:hover img {
  transform: scale(1.1);
}

.cs-project-overview .tech-logo-item span {
  font-family: "Lufga", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: #052c4d;
  white-space: nowrap;
}

/* Responsive styles */
@media (max-width: 991px) {
  .cs-project-overview {
    padding: 70px 0;
  }
  .cs-project-overview .overview-title {
    font-size: 48px;
    line-height: 52px;
  }
  .cs-project-overview .overview-text {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 45px;
  }
  .cs-project-overview .tech-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 35px;
  }
  .cs-project-overview .tech-logos-grid {
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .cs-project-overview {
    padding: 50px 0px 20px 0px;
  }
  .cs-project-overview .overview-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  .cs-project-overview .overview-text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
  }
  .cs-project-overview .tech-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .cs-project-overview .tech-logos-grid {
    gap: 30px 20px;
  }
  .cs-project-overview .tech-logo-item {
    width: 100px;
  }
  .cs-project-overview .tech-logo-item span {
    font-size: 16px;
  }
}

/* ==========================================================================
   8. KEY FEATURES SECTION
   ========================================================================== */
.cs-key-features {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.cs-key-features .features-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  color: #101011;
  margin-bottom: 25px;
}

.cs-key-features .features-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  max-width: 900px;
  margin: 0 auto 60px auto;
  opacity: 0.9;
}

.cs-key-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.cs-key-features .feature-card {
  padding: 30px;
  border-radius: 16px;
  border: 1.5px solid transparent;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.4s ease,
    border-color 0.4s ease;
}

/* Shine sweep pseudo-element */
.cs-key-features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0s;
  pointer-events: none;
  z-index: 1;
}

.cs-key-features .feature-card:hover::before {
  left: 130%;
  transition: left 0.65s ease;
}

/* Keep text above pseudo-elements */
.cs-key-features .feature-card-title,
.cs-key-features .feature-card-text {
  position: relative;
  z-index: 2;
}

.cs-key-features .feature-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.cs-key-features .feature-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #101011;
  margin-bottom: 15px;
}

.cs-key-features .feature-card-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #101011;
  margin-bottom: 0;
  opacity: 0.85;
}

/* ==========================================================================
   Card Accent Color Schemes
   ========================================================================== */

/* --- Green --- */
.cs-key-features .card-light-green {
  background-color: #f8ffe5;
  border-color: #c8e89a;
}
.cs-key-features .card-light-green:hover {
  background: linear-gradient(135deg, #8fba58 0%, #b5d96e 100%);
  border-color: #8fba58;
  box-shadow:
    0 20px 50px rgba(143, 186, 88, 0.45),
    0 6px 18px rgba(143, 186, 88, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-green:hover .feature-card-title,
.cs-key-features .card-light-green:hover .feature-card-text {
  color: #ffffff;
}

/* --- Blue-Purple --- */
.cs-key-features .card-light-blue-purple {
  background-color: #f2f3fe;
  border-color: #c5c3ef;
}
.cs-key-features .card-light-blue-purple:hover {
  background: linear-gradient(135deg, #6560c0 0%, #9b8fe8 100%);
  border-color: #6560c0;
  box-shadow:
    0 20px 50px rgba(101, 96, 192, 0.45),
    0 6px 18px rgba(101, 96, 192, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-blue-purple:hover .feature-card-title,
.cs-key-features .card-light-blue-purple:hover .feature-card-text {
  color: #ffffff;
}

/* --- Blue --- */
.cs-key-features .card-light-blue {
  background-color: #eaf8ff;
  border-color: #aadcf5;
}
.cs-key-features .card-light-blue:hover {
  background: linear-gradient(135deg, #3fa8d4 0%, #72caf0 100%);
  border-color: #3fa8d4;
  box-shadow:
    0 20px 50px rgba(63, 168, 212, 0.45),
    0 6px 18px rgba(63, 168, 212, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-blue:hover .feature-card-title,
.cs-key-features .card-light-blue:hover .feature-card-text {
  color: #ffffff;
}

/* --- Pink --- */
.cs-key-features .card-light-pink {
  background-color: #fdeeff;
  border-color: #e5b8ed;
}
.cs-key-features .card-light-pink:hover {
  background: linear-gradient(135deg, #b668c3 0%, #d99ce3 100%);
  border-color: #b668c3;
  box-shadow:
    0 20px 50px rgba(182, 104, 195, 0.45),
    0 6px 18px rgba(182, 104, 195, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-pink:hover .feature-card-title,
.cs-key-features .card-light-pink:hover .feature-card-text {
  color: #ffffff;
}

/* --- Teal --- */
.cs-key-features .card-light-teal {
  background-color: #e6fffa;
  border-color: #a0dcd6;
}
.cs-key-features .card-light-teal:hover {
  background: linear-gradient(135deg, #3da89f 0%, #68ccc4 100%);
  border-color: #3da89f;
  box-shadow:
    0 20px 50px rgba(61, 168, 159, 0.45),
    0 6px 18px rgba(61, 168, 159, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-teal:hover .feature-card-title,
.cs-key-features .card-light-teal:hover .feature-card-text {
  color: #ffffff;
}

/* --- Emerald --- */
.cs-key-features .card-light-emerald {
  background-color: #eefff4;
  border-color: #a5e0b5;
}
.cs-key-features .card-light-emerald:hover {
  background: linear-gradient(135deg, #3db865 0%, #6ed48a 100%);
  border-color: #3db865;
  box-shadow:
    0 20px 50px rgba(61, 184, 101, 0.45),
    0 6px 18px rgba(61, 184, 101, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-emerald:hover .feature-card-title,
.cs-key-features .card-light-emerald:hover .feature-card-text {
  color: #ffffff;
}

/* --- Rose --- */
.cs-key-features .card-light-rose {
  background-color: #fef2f2;
  border-color: #f2b8c4;
}
.cs-key-features .card-light-rose:hover {
  background: linear-gradient(135deg, #d45c7a 0%, #f08fa2 100%);
  border-color: #d45c7a;
  box-shadow:
    0 20px 50px rgba(212, 92, 122, 0.45),
    0 6px 18px rgba(212, 92, 122, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-rose:hover .feature-card-title,
.cs-key-features .card-light-rose:hover .feature-card-text {
  color: #ffffff;
}

/* --- Orange --- */
.cs-key-features .card-light-orange {
  background-color: #ffefdf;
  border-color: #f4c49a;
}
.cs-key-features .card-light-orange:hover {
  background: linear-gradient(135deg, #d4773a 0%, #f0a06a 100%);
  border-color: #d4773a;
  box-shadow:
    0 20px 50px rgba(212, 119, 58, 0.45),
    0 6px 18px rgba(212, 119, 58, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-orange:hover .feature-card-title,
.cs-key-features .card-light-orange:hover .feature-card-text {
  color: #ffffff;
}

/* --- Yellow --- */
.cs-key-features .card-light-yellow {
  background-color: #fff8e4;
  border-color: #f0d888;
}
.cs-key-features .card-light-yellow:hover {
  background: linear-gradient(135deg, #c9a620 0%, #e8cc55 100%);
  border-color: #c9a620;
  box-shadow:
    0 20px 50px rgba(201, 166, 32, 0.45),
    0 6px 18px rgba(201, 166, 32, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cs-key-features .card-light-yellow:hover .feature-card-title,
.cs-key-features .card-light-yellow:hover .feature-card-text {
  color: #ffffff;
}

/* Responsive key features */
@media (max-width: 1199px) {
  .cs-key-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .cs-key-features {
    padding: 70px 0;
  }
  .cs-key-features .features-title {
    font-size: 48px;
    line-height: 52px;
  }
  .cs-key-features .features-subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 45px;
  }
  .cs-key-features .feature-card {
    padding: 30px 25px;
  }
  .cs-key-features .feature-card-title {
    font-size: 22px;
    line-height: 32px;
  }
  .cs-key-features .feature-card-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .cs-key-features .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .cs-key-features {
    padding: 50px 0px 20px 0px;
  }
  .cs-key-features .features-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
  }
}

/* ==========================================================================
   9. OVERVIEW CONTENT SECTION
   ========================================================================== */
.cs-overview-content {
  position: relative;
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  /* overflow: hidden; */
}

/* Decorative background circle — Figma: 625px, border 110px, -15°, opacity 20%, #3A92D0 */
.cs-overview-deco-circle {
  position: absolute;
  width: 725px;
  height: 725px;
  /* top: 50%; */
  bottom: -75%;
  left: -325px;
  transform: translateY(-50%) rotate(-15deg);
  border-radius: 50%;
  border: 110px solid transparent;
  background: linear-gradient(180deg, #3a92d0 0%, rgba(58, 146, 208, 0) 100%)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.cs-overview-deco-circle1 {
  position: absolute;
  width: 610px;
  height: 610px;
  top: 65%;
  right: -150px;
  transform: translateY(-50%) rotate(14.22deg);
  border-radius: 50%;
  border: 110px solid transparent;
  background: linear-gradient(180deg, #3a92d0 0%, rgba(58, 146, 208, 0) 100%)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.cs-overview-deco-circle3 {
  position: absolute;
  width: 672px;
  height: 672px;
  bottom: -45%;
  left: -262px;
  transform: translateY(-50%) rotate(-12.61deg);
  border-radius: 50%;
  border: 120px solid transparent;
  background: linear-gradient(20deg, #3a92d0 0%, rgba(58, 146, 208, 0) 100%)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.cs-overview-deco-circle4 {
  position: absolute;
  width: 525px;
  height: 525px;
  /* top: 50%; */
  bottom: -7%;
  left: 400px;
  transform: translateY(-50%) rotate(90deg);
  border-radius: 50%;
  border: 120px solid transparent;
  background: linear-gradient(180deg, #3a92d0 0%, rgba(58, 146, 208, 0) 100%)
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* Ensure container is above deco circle */
.cs-overview-content .container {
  position: relative;
  z-index: 1;
}

/* --- Image Column --- */
.cs-overview-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs-overview-mockup {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.22));
}

/* --- Text Column --- */
.cs-overview-text-col {
  padding-left: 20px;
}

/* Title — Inter Bold 700, 48px, line-height 54px, #101011 */
.cs-overview-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: 0%;
  color: #101011;
  margin-bottom: 25px;
}

/* Description — Inter Regular 400, 18px, line-height 30px, #101011 */
.cs-overview-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #101011;
  margin-bottom: 25px;
}

/* Feature items grid — 2 columns */
.cs-overview-features {
  display: flex;
  gap: 16px 24px;
}

.cs-overview-features .left,
.cs-overview-features .right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual feature item */
.cs-overview-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-overview-feature-item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Feature text — Inter Regular 400, 18px, line-height 30px, #101011 */
.cs-overview-feature-item span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .cs-overview-content {
    padding: 70px 0;
  }
  .cs-overview-text-col {
    /* padding-left: 0; */
    margin-top: 20px;
  }
  .cs-overview-title {
    font-size: 38px;
    line-height: 46px;
  }
  .cs-overview-desc {
    font-size: 16px;
    line-height: 27px;
  }
  .cs-overview-deco-circle,
  .cs-overview-deco-circle1,
  .cs-overview-deco-circle3,
  .cs-overview-deco-circle4 {
    display: none;
  }
}

@media (max-width: 575px) {
  .cs-overview-content {
    padding: 50px 0px 20px 0px;
  }
  .cs-overview-title {
    font-size: 30px;
    line-height: 38px;
  }
  .cs-overview-features {
    flex-direction: column;
    gap: 12px;
  }
  .cs-overview-feature-item span {
    font-size: 16px;
  }
}

/* ==========================================================================
   10. CTA SECTION – READY TO BUILD
   ========================================================================== */
.cs-cta-section {
  position: relative;
  padding: 80px 0;
  background: #3a92d0 url("../img/casestudy-application/cta-bg.png") center
    center / cover no-repeat;
  color: #ffffff; /* Added: Ensures text is readable against the blue background */
  text-align: center;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* Optional overlay to deepen background if needed */
.cs-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 110, 190, 0.08);
  pointer-events: none;
}

.cs-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title — Inter ExtraBold 800, 64px, line-height 80px, letter-spacing -2%, #FFFFFF */
.cs-cta-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  margin-bottom: 25px;
}

/* Subtitle — Inter Regular 400, 24px, line-height 38px, letter-spacing -1%, #FFFFFF */
.cs-cta-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: -0.01em;
  color: #ffffff;
  /* margin: 0; */
  opacity: 0.92;
  max-width: 1100px;
  margin-bottom: 25px;
}

/* Contact info pill — bordered container */
.cs-cta-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 10px;
  padding: 15px 18px;
  background: #1f7abb;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

/* Each contact item (email / phone) */
.cs-cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0%;
  color: #ffffff;
  white-space: nowrap;
}

.cs-cta-phone-second {
  /* Standard styles */
}

.cs-cta-phone-icon-second {
  display: none;
}

@media (min-width: 992px) {
  .cs-cta-phone-second::before {
    content: ", ";
    margin-right: 2px;
  }
}

/* Icon inside contact items */
.cs-cta-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* Make icons white */
}

/* "or" separator */
.cs-cta-or {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

/* CTA Button — Inter SemiBold 600, 18px, outline style */
.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0%;
  color: #ffffff;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 21px 32px;
  background: transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.cs-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

.cs-cta-btn-arrow {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.cs-cta-btn:hover .cs-cta-btn-arrow {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .cs-cta-section {
    padding: 70px 0;
  }
  .cs-cta-title {
    font-size: 48px;
    line-height: 60px;
  }
  .cs-cta-subtitle {
    font-size: 20px;
    line-height: 32px;
  }
  .cs-cta-contact-item {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .cs-cta-section {
    padding: 50px 0;
  }
  .cs-cta-title {
    font-size: 32px;
    line-height: 42px;
  }
  .cs-cta-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .cs-cta-contact-pill {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 20px;
  }
  .cs-cta-contact-item {
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }
  .cs-cta-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

/* ==========================================================================
   11. DRIVER MOBILE APP SECTION
   ========================================================================== */
.cs-driver-app {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  text-align: center;
}

/* Title — Inter ExtraBold 800, 64px, line-height 61px, #101011 */
.cs-driver-app-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  letter-spacing: 0%;
  color: #101011;
  margin-bottom: 50px;
}

/* 3-column grid of feature items */
.cs-driver-app-grid {
  display: flex;
/*   flex-direction: column; */
  flex-wrap: wrap;
  gap: 10px;
justify-content: space-between;
}

.content-1 {
  display: flex;
  justify-content: space-evenly;
   flex-direction: column;
}

@media (max-width: 575px) {
  .content-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
/* Individual feature item */
.cs-driver-app-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.cs-driver-app-item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Feature text — Inter Regular 400, 18px, line-height 30px, #101011 */
.cs-driver-app-item span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .cs-driver-app {
    padding: 70px 0;
  }
  .cs-driver-app-title {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 40px;
  }
  .cs-driver-app-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
  }
}

@media (max-width: 575px) {
  .cs-driver-app {
    padding: 50px 0px 20px 0px;
  }
  .cs-driver-app-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  .cs-driver-app-grid {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .content-1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .cs-driver-app-item span {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ==========================================================================
   12. CONSULTATION / BUILD TOGETHER SECTION
   ========================================================================== */
.cs-consultation-section {
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  position: relative;
}

.cs-consultation-section .container {
  position: relative;
  z-index: 2;
}

.cs-consult-img-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  max-width: 586px;
  margin: 0 auto;
}

.cs-consult-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cs-consult-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-consult-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 80px;
  letter-spacing: -0.02em;
  color: #131415;
  margin-bottom: 30px;
}

.cs-consult-desc {
  font-size: 32px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.02em;
  color: #2a2c2f;
  margin-bottom: 30px;
}

/* Contact info pill */
.cs-consult-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 15px 15px;
  background-color: #3a92d0;
  width: fit-content;
  white-space: nowrap;
  margin-bottom: 30px;
}

.cs-consult-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  color: #ffffff;
}

.cs-consult-contact-item a {
  color: #ffffff;
  text-decoration: none;
}

.cs-consult-phone-second {
  /* Standard styles */
}

.cs-consult-phone-icon-second {
  display: none;
}

@media (min-width: 992px) {
  .cs-consult-phone-second::before {
    content: ", ";
    margin-right: 2px;
  }
}

.cs-consult-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.cs-consult-or {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #ffffff;
  margin: 0 8px;
}

/* Button */
.cs-consult-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #3a92d0;
  text-decoration: none !important;
  border: 1.5px solid #3a92d0;
  border-radius: 12px;
  padding: 21px 32px;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-consult-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3a92d0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cs-consult-btn:hover::before {
  transform: scaleX(1);
}

.cs-consult-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 146, 208, 0.25);
}

.cs-cta-btn-arrow-blue {
  width: 18px;
  height: 18px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* Only the arrow moves on hover; no background change */
.cs-consult-btn:hover .cs-cta-btn-arrow-blue {
  transform: translateX(4px);
  filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .cs-consult-title {
    font-size: 48px;
    line-height: 60px;
  }
  .cs-consult-desc {
    font-size: 26px;
    line-height: 40px;
  }
  .cs-consult-contact-item {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .cs-consultation-section {
    padding: 70px 0;
  }
  .cs-consult-img-wrapper {
    margin-bottom: 40px;
    max-width: 380px;
  }
  .cs-consult-text-col {
    padding-left: 0;
  }
  .cs-consult-title {
    font-size: 40px;
    line-height: 50px;
  }
  .cs-consult-desc {
    font-size: 22px;
    line-height: 34px;
  }
  .cs-consult-contact-pill {
    flex-wrap: wrap;
    padding: 14px 20px;
    white-space: normal;
  }
  .cs-consult-contact-item {
    white-space: normal;
  }
  .cs-consult-phone-icon-second {
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .cs-consultation-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-consult-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cs-consult-desc {
    font-size: 18px;
    line-height: 28px;
  }
  .cs-consult-contact-pill {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
    white-space: normal;
  }
  .cs-consult-contact-item {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
    justify-content: center;
  }
  .cs-consult-or {
    margin: 0;
    align-self: center;
  }
  .cs-consult-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   13. EXPERIENCE THE PRODUCT SECTION
   ========================================================================== */
.cs-experience-section {
  padding: 0px 0px 100px 0px;
  text-align: center;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.cs-experience-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  color: #101011;
  margin-bottom: 24px;
}

.cs-experience-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  max-width: 960px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.cs-experience-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.cs-experience-tab {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 20px;
  padding: 16px 40px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  border: 1.5px solid #cfd1d2;
  color: #101011;
  font-weight: 400;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cs-experience-tab:hover {
  border-color: #101011;
  color: #101011;
}

.cs-experience-tab.active {
  background-color: #3a92d0;
  border-color: #3a92d0;
  color: #ffffff;
  font-weight: 700;
}

/* Tab contents displaying images */
.cs-experience-content-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ddf1ff;
}

.cs-experience-tab-content {
  display: none;
  width: 100%;
}

.cs-experience-tab-content.active {
  display: block;
  animation: csFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cs-experience-app-img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes csFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cs-experience-section {
    padding: 60px 0 0 0;
  }
  .cs-experience-title {
    font-size: 48px;
    line-height: 52px;
  }
  .cs-experience-desc {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .cs-experience-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-experience-title {
    font-size: 36px;
    line-height: 42px;
  }
  .cs-experience-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .cs-experience-tab {
    width: 100%;
    max-width: 280px;
    font-size: 18px;
  }
}

/* ==========================================================================
   14. CLIENT FEEDBACK SECTION
   ========================================================================== */
.cs-feedback-section {
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.cs-feedback-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  color: #101011;
  text-align: center;
  margin-bottom: 30px;
}

.cs-feedback-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  margin: auto;
  text-align: center;
}

.cs-feedback-row {
  margin: 0 auto;
}

.cs-google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cs-google-logo {
  max-width: 100%;
  height: auto;
}

.cs-google-rating {
  font-size: 28px;
  font-weight: 700;
  color: #101011;
  line-height: 100%;
}

.cs-google-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.cs-google-stars svg {
  width: 24px;
  height: 24px;
}

.cs-feedback-right {
  position: relative;
  padding-left: 30px;
}

.cs-feedback-quote-icon {
  margin-bottom: 20px;
}

.cs-quote-img {
  width: 50px;
  height: auto;
}

.cs-feedback-quote-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  letter-spacing: -0.02em;
  color: #101011;
  margin-bottom: 30px;
  border-left: none;
  padding-left: 0;
}

.cs-feedback-author-name {
  font-family: "Lufga", "Inter", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 18px;
  color: #131415;
  margin-bottom: 10px;
}

.cs-feedback-author-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 18px;
  color: #3a92d0;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cs-feedback-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-feedback-title {
    font-size: 48px;
    line-height: 52px;
  }
  .cs-feedback-quote-text {
    font-size: 28px;
    line-height: 42px;
  }
  .cs-feedback-author-name {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .cs-feedback-left {
    margin-bottom: 40px;
  }
  .cs-feedback-right {
    padding-left: 15px;
    text-align: center;
  }
  .cs-feedback-quote-icon {
    display: flex;
    justify-content: center;
  }
  .cs-feedback-author-title {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .cs-feedback-title {
    font-size: 36px;
    line-height: 42px;
  }
  .cs-feedback-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .cs-feedback-quote-text {
    font-size: 20px;
    line-height: 32px;
  }
  .cs-feedback-author-name {
    font-size: 20px;
  }
}

/* ==========================================================================
   15. COLOR SYSTEM SECTION
   ========================================================================== */
.cs-color-system-section {
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.cs-color-system-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  color: #101011;
  margin-bottom: 30px;
}

.cs-color-system-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  margin: 0 auto 50px auto;
  text-align: center;
}

.cs-color-system-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.cs-color-card {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cs-color-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cs-color-block {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cs-color-system-section {
    padding: 70px 0;
  }
  .cs-color-system-title {
    font-size: 48px;
    line-height: 52px;
  }
  .cs-color-system-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .cs-color-system-grid {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .cs-color-system-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-color-system-title {
    font-size: 36px;
    line-height: 42px;
  }
  .cs-color-system-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 12px;
    padding: 0 15px;
  }
  .cs-color-card {
    min-width: unset;
    max-width: 100%;
  }
}

/* ==========================================================================
   16. TYPOGRAPHY WITH PURPOSE SECTION
   ========================================================================== */
.cs-typography-section {
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.cs-typography-img-wrapper {
  margin: 0 auto;
  max-width: 500px;
}

.cs-typography-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 500px;
}

.cs-typography-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-typography-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 82px;
  color: #101011;
  margin-bottom: 20px;
}

.cs-typography-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  margin-bottom: 35px;
}

.cs-typography-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  color: #101011;
  margin-bottom: 30px;
}

.cs-typography-weights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-weight-pill {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 24px;
  padding: 16px 32px;
  background-color: #d8efff;
  letter-spacing: 0%;
  color: #101011;
  border-radius: 10px;
  display: inline-block;
}

.weight-regular {
  font-weight: 400;
}

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

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

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

.weight-extrabold {
  font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cs-typography-section {
    padding: 70px 0;
  }
  .cs-typography-title {
    font-size: 48px;
    line-height: 60px;
  }
  .cs-typography-subtitle {
    font-size: 36px;
    line-height: 36px;
  }
  .cs-typography-img-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .cs-typography-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-typography-title {
    font-size: 36px;
    line-height: 46px;
  }
  .cs-typography-subtitle {
    font-size: 28px;
    line-height: 28px;
  }
  .cs-weight-pill {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 20px;
  }
}

/* ==========================================================================
   17. APP DOWNLOAD SECTION
   ========================================================================== */
.cs-app-download-section {
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.cs-download-img-wrapper {
  /* max-width: 460px; */
  margin: 0 auto;
}

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

.cs-download-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-download-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 75px;
  color: #101011;
  margin-bottom: 25px;
}

.cs-download-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #101011;
  margin-bottom: 25px;
}

.cs-download-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  margin-bottom: 30px;
}

.cs-download-availability {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #101011;
  margin-bottom: 15px;
}

.cs-download-subtext {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  margin-bottom: 30px;
}

.cs-download-badges {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cs-badge-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cs-badge-link:hover {
  transform: translateY(-3px);
}

.cs-download-badge-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cs-app-download-section {
    padding: 0px 0px 70px 0px;
  }
  .cs-download-title {
    font-size: 48px;
    line-height: 58px;
  }
  .cs-download-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .cs-download-img-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .cs-app-download-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-download-title {
    font-size: 36px;
    line-height: 44px;
  }
  .cs-download-subtitle {
    font-size: 22px;
    letter-spacing: 0;
  }
  .cs-download-availability {
    font-size: 20px;
  }
  .cs-download-badge-img {
    height: 50px;
  }
}

/* ==========================================================================
   18. FAQ SECTION
   ========================================================================== */
.cs-faq-section {
  padding: 0px 0px 100px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.cs-faq-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 61px;
  color: #101011;
  margin-bottom: 24px;
}

.cs-faq-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #101011;
  margin: 0 auto 50px auto;
}

.cs-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-faq-item {
  background: #ffffff;
  border: 1px solid #e2f2fc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cs-faq-item.active {
  border-color: #3a92d0;
  box-shadow: 0 4px 20px rgba(58, 146, 208, 0.08);
}

.cs-faq-header {
  margin: 0;
}

.cs-faq-button {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #101011;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.cs-faq-button:focus {
  outline: none;
  box-shadow: none;
}

.add_plus,
.add_min {
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.cs-faq-item.active .add_min {
  color: #3a92d0;
}

.cs-faq-button.collapsed .add_min {
  display: none;
}

.cs-faq-button:not(.collapsed) .add_plus {
  display: none;
}

.cs-faq-body {
  padding: 0 30px 24px 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #555555;
  border-top: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cs-faq-section {
    padding: 0 0 70px 0;
  }
  .cs-faq-title {
    font-size: 48px;
    line-height: 52px;
  }
  .cs-faq-button {
    font-size: 18px;
    padding: 20px;
  }
  .cs-faq-body {
    padding: 0 20px 20px 20px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .cs-faq-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-faq-title {
    font-size: 36px;
    line-height: 42px;
  }
  .cs-faq-button {
    font-size: 16px;
    padding: 16px;
  }
  .cs-faq-body {
    padding: 0 16px 16px 16px;
    font-size: 15px;
  }
  .cs-faq-icon-circle {
    width: 28px;
    height: 28px;
  }
  .add_plus,
  .add_min {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   10. CTA SECTION – READY TO BUILD
   ========================================================================== */
.cs-cta-section1 {
  position: relative;
  padding: 80px 0;
  background: #9886ff url("../img/casestudy-application/cta-bg.png") center
    center / cover no-repeat;
  color: #ffffff; /* Added: Ensures text is readable against the blue background */
  text-align: center;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* Optional overlay to deepen background if needed */
.cs-cta-section1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 110, 190, 0.08);
  pointer-events: none;
}

.cs-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title — Inter ExtraBold 800, 64px, line-height 80px, letter-spacing -2%, #FFFFFF */
.cs-cta-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  margin-bottom: 25px;
}

/* Subtitle — Inter Regular 400, 24px, line-height 38px, letter-spacing -1%, #FFFFFF */
.cs-cta-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: -0.01em;
  color: #ffffff;
  /* margin: 0; */
  opacity: 0.92;
  max-width: 1100px;
  margin-bottom: 25px;
}

/* Contact info pill — bordered container */
.cs-cta-contact-pill1 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 10px;
  padding: 15px 18px;
  background: #7c68f1;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

/* Each contact item (email / phone) */
.cs-cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0%;
  color: #ffffff;
  white-space: nowrap;
}

.cs-cta-contact-item a {
  color: #ffffff;
  text-decoration: none;
}

/* Icon inside contact items */
.cs-cta-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* Make icons white */
}

/* "or" separator */
.cs-cta-or {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 22px;
}

/* CTA Button — Inter SemiBold 600, 18px, outline style */
.cs-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0%;
  color: #ffffff;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 21px 32px;
  background: transparent;
  z-index: 1;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.cs-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cs-cta-btn:hover::before {
  transform: scaleX(1);
}

.cs-cta-btn:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #3a92d0;
}

.cs-cta-btn-arrow {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.cs-cta-btn:hover .cs-cta-btn-arrow {
  transform: translateX(4px);
  filter: invert(55%) sepia(87%) saturate(541%) hue-rotate(167deg)
    brightness(87%) contrast(93%);
}

@media (max-width: 991px) {
  .cs-cta-section {
    padding: 70px 0;
  }
  .cs-cta-title {
    font-size: 48px;
    line-height: 60px;
  }
  .cs-cta-subtitle {
    font-size: 20px;
    line-height: 32px;
  }
  .cs-cta-contact-pill,
  .cs-cta-contact-pill1 {
    flex-wrap: wrap;
    white-space: normal;
  }
  .cs-cta-contact-item {
    font-size: 18px;
    white-space: normal;
  }
  .cs-cta-phone-icon-second {
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .cs-cta-section {
    padding: 50px 0px 20px 0px;
  }
  .cs-cta-title {
    font-size: 32px;
    line-height: 42px;
  }
  .cs-cta-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .cs-cta-contact-pill,
  .cs-cta-contact-pill1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    width: 100%;
    white-space: normal;
  }
  .cs-cta-contact-item {
    font-size: 15px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .cs-cta-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}
