*,
::before,
::after {
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
img {
  vertical-align: bottom;
}
iframe {
  border: none;
}
label {
  display: inline-block;
}
button {
  cursor: pointer;
  padding: 0;
}
:disabled {
  cursor: not-allowed;
}
table {
  border-collapse: collapse;
}
ul {
  list-style: none;
  padding: 0;
}
/* ============================= */
/* (WRAP-01)===HERO-SEC========= */
/* ============================= */
.casestudy-hero-section {
  padding: 50px 0 70px;
  position: relative;
  overflow: hidden;
  background: #f5f8ff;
}

.casestudy-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, #d1dcff, transparent 55%);
  filter: blur(32px);
  animation: casestudy-hero-blurMove 8s infinite alternate;
  z-index: 0;
}

@keyframes casestudy-hero-blurMove {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  100% {
    transform: translateY(28px);
    opacity: 1;
  }
}

.casestudy-hero-badge-wrapper {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

.casestudy-hero-badge {
  display: inline-block;
  padding: 12px 40px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #3249ff;
  animation: casestudy-hero-glowPulse 3s ease-in-out infinite;
}

@keyframes casestudy-hero-glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(80, 110, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 22px rgba(80, 110, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 rgba(80, 110, 255, 0.5);
  }
}

.casestudy-hero-left {
  z-index: 3;
  position: relative;
}

.casestudy-hero-logo {
  width: 250px;
  margin-bottom: 26px;
}

.casestudy-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a1b46;
  line-height: 1.33;
  max-width: 95%;
}

.casestudy-hero-img-frame {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 3;
}

.casestudy-hero-slider .owl-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.casestudy-hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px !important;
}

.casestudy-hero-slider .owl-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 16px 0px 0px 0px !important;
}

.casestudy-hero-slider .owl-dots .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #cdd6ff !important;
  display: block !important;
  transition: 0.3s;
}

.casestudy-hero-slider .owl-dots .owl-dot.active span {
  background: #3249ff !important;
  transform: scale(1.25);
}

@media (max-width: 992px) {
  .casestudy-hero-title {
    text-align: center;
    font-size: 28px;
  }
  .casestudy-hero-logo {
    margin: 0 auto;
    display: block;
  }
  .casestudy-hero-left {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .casestudy-hero-title {
    font-size: 22px;
  }
  .casestudy-hero-badge {
    padding: 10px 28px;
    font-size: 14px;
  }
}
/* ============================= */
/* (WRAP-02) CLIENT-OVERVIEW */
/* ============================= */

.casestudy-client-overview-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #e9f0ff, #dbe4ff, #f3e8ff);
}

.casestudy-client-overview-badge-wrapper {
  text-align: center;
  margin-bottom: 90px;
}

.casestudy-client-overview-badge {
  display: inline-block;
  padding: 10px 36px;
  background: linear-gradient(135deg, #4f8cff 0%, #ff4fb2 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 18px rgba(79, 140, 255, 0.35),
    0 0 15px rgba(255, 79, 178, 0.25);
  animation: casestudy-client-overview-badgeGlow 3s ease-in-out infinite;
}

@keyframes casestudy-client-overview-badgeGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 80, 165, 0.6),
      0 6px 18px rgba(79, 140, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 80, 165, 0.85),
      0 6px 25px rgba(79, 140, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 80, 165, 0.6),
      0 6px 18px rgba(79, 140, 255, 0.35);
  }
}

.casestudy-client-overview-row {
  display: flex;
  align-items: stretch;
}

.casestudy-client-overview-card {
  background: #ffffff;
  padding: 55px 25px 28px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.casestudy-client-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(10, 77, 255, 0.18);
}

.casestudy-client-overview-icon {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a4dff, #ff3b3b);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0px 6px rgba(255, 255, 255, 0.7),
    0 0 25px rgba(255, 59, 59, 0.45), 0 0 50px rgba(10, 77, 255, 0.35);
}

.casestudy-client-overview-icon img {
  width: 42px;
}

.casestudy-client-overview-content {
  flex: 1;
}

.casestudy-client-overview-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0;
  padding-top: 10px;
}

@media (max-width: 575px) {
  .casestudy-client-overview-section {
    padding: 50px 0;
  }

  .casestudy-client-overview-icon {
    width: 70px;
    height: 70px;
    top: -35px;
  }

  .casestudy-client-overview-icon img {
    width: 30px;
  }

  .casestudy-client-overview-card-wrapper {
    margin-bottom: 80px;
  }

  .casestudy-client-overview-card {
    padding: 60px 18px 25px;
  }
}
/* ============================================= */
/* (WRAP-)===CTA-BTN=APP==PLAYSTORE==WEBSITE==== */
/* ============================================= */

.casecs-hcta-section {
  position: relative;
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.casecs-hcta-animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.casecs-hcta-blob {
  position: absolute;
  width: 260px;
  height: 260px;
  filter: blur(80px);
  opacity: 0.45;
  border-radius: 50%;
  animation: blobMove 16s infinite linear;
}

.casecs-apps-blob1 {
  background: #00c3ff;
  top: -60px;
  left: -80px;
}

.casecs-apps-blob2 {
  background: #ff5edb;
  bottom: -70px;
  right: -50px;
  animation-duration: 20s;
}

@keyframes blobMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.15);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.casecs-hcta-line {
  position: absolute;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e0e7ff, transparent);
  animation: moveLines 12s infinite linear;
  opacity: 0.35;
}

.casecs-apps-line1 {
  top: 30%;
  left: -20%;
}

.casecs-apps-line2 {
  top: 70%;
  left: -20%;
  animation-duration: 18s;
}

@keyframes moveLines {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40%);
  }
}

.casecs-hcta-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.casecs-hcta-title {
  font-size: 32px;
  font-weight: 800;
  color: #0a1a2f;
}

.casecs-hcta-desc {
  font-size: 16px;
  max-width: 450px;
  opacity: 0.9;
  color: #41536a;
}

.casecs-hcta-buttons {
  display: flex;
  gap: 18px;
  z-index: 10;
}

.casecs-hcta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #f6f9fc;
  border: 1px solid #e0e5ef;
  border-radius: 14px;
  font-weight: 700;
  color: #0a1a2f;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.casecs-hcta-btn:hover {
  background: #ffffff;
  border-color: #c9d6e4;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.casecs-hcta-icon {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .casecs-hcta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .casecs-hcta-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .casecs-hcta-section {
    padding: 50px 0px;
  }
}

@media (max-width: 520px) {
  .casecs-hcta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .casecs-hcta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================== */
/* (WRAP-03) PHASE-01 THE FIRST MEETING */
/* ==================================== */
.casestudy-phaseone-section {
  padding: 100px 0;
  background: #0d0d0f;
  color: #e8e8e8;
}
.casestudy-phaseone-header {
  margin-bottom: 50px;
}

.casestudy-phaseone-badge {
  display: inline-block;
  padding: 8px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-radius: 40px;
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  box-shadow: 0 6px 20px rgba(255, 79, 178, 0.35),
    0 6px 20px rgba(79, 140, 255, 0.35);
  margin-bottom: 18px;
}

.casestudy-phaseone-title-center {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #8ab4ff, #ff77c8);
  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.casestudy-phaseone-divider {
  width: 80px;
  height: 4px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  margin-top: 12px;
  box-shadow: 0 0 12px rgba(255, 79, 178, 0.6), 0 0 12px rgba(79, 140, 255, 0.5);
}

.pone-center-divider {
  margin-left: auto !important;
  margin-right: auto !important;
}

.casestudy-phaseone-text {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: #cfcfcf;
}

.casestudy-phaseone-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 35px;
}

.casestudy-phaseone-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: #dbdbdb;
}

.casestudy-phaseone-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0;
  top: 8px;
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 79, 178, 0.6);
}

.casestudy-phaseone-image .item img {
  width: 100%;
  border-radius: 10px !important;
  overflow: hidden;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.casestudy-phaseone-image {
  padding-bottom: 35px !important;
}

.casestudy-phaseone-image .owl-dots {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  text-align: center;
}

.casestudy-phaseone-image .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 4px;
  background: #4f8cff !important;
  border-radius: 50%;
  display: inline-block;
}

.casestudy-phaseone-image .owl-dot.active span {
  background: #ffffff !important;
}

@media (max-width: 767px) {
  .casestudy-phaseone-title-center {
    font-size: 26px;
  }
  .casestudy-phaseone-section {
    padding: 40px 0;
  }
  .casestudy-phaseone-image {
    margin-top: 25px;
  }
}
/* =========================================== */
/* (WRAP-04) PHASE-02  Building the Foundation */
/* =========================================== */
.casestudy-phasetwo-section {
  padding: 100px 0;
  background: #f7f9ff;
}

.casestudy-phasetwo-badge {
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  padding: 8px 28px;
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(79, 140, 255, 0.32),
    0 6px 20px rgba(255, 79, 178, 0.28);
}

.casestudy-phasetwo-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.casestudy-phasetwo-intro {
  font-size: 18px;

  color: #444;
  margin-bottom: 45px;
}

.casestudy-phasetwo-cards-wrapper {
  margin-bottom: 55px;
}

.casestudy-phasetwo-card {
  background: #fff;
  padding: 35px 32px;
  border-radius: 18px;
  border-left: 6px solid #4f8cff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.casestudy-phasetwo-card-heading {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.casestudy-phasetwo-card-heading img {
  width: 28px;
}

.casestudy-phasetwo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.casestudy-phasetwo-list li {
  position: relative;
  font-size: 16px;
  color: #333;
  padding-bottom: 6px;
  margin-bottom: 18px;
}

.casestudy-phasetwo-list li .line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #d0d0d0;
  opacity: 0.65;
}

.casestudy-phasetwo-story {
  margin-top: 20px;
}

.casestudy-phasetwo-quote {
  background: #f1eaff;
  padding: 18px 20px;
  border-left: 5px solid #7d39ff;
  border-radius: 14px;
  color: #541fba;
  font-size: 17px;
  margin: 30px 0;
  font-style: italic;
}

.cs2-gallery-carousel .item img {
  width: 100%;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: block;
}

.cs2-gallery-carousel .owl-dots {
  text-align: center;
  margin-top: 18px !important;
}

.cs2-gallery-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 4px;
  display: inline-block;
  border-radius: 50%;
  background: #bfc7ff;
  transition: 0.4s ease;
}

.cs2-gallery-carousel .owl-dot.active span {
  background: linear-gradient(135deg, #4f8cff, #ff4fb2) !important;
  box-shadow: 0 0 10px rgba(79, 140, 255, 0.6), 0 0 10px rgba(255, 79, 178, 0.6);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .cs-phasetwo-mb {
    margin-bottom: 50px;
  }
  .casestudy-phasetwo-section {
    padding: 50px 0px;
  }
}
/* =========================================== */
/* (WRAP-05) PHASE-03  The Brain of the System */
/* =========================================== */
.phasethree-section {
  padding: 100px 0;
  background: #eef2ff;
  font-family: "Inter", sans-serif;
}

.phasethree-colmb {
  margin-bottom: 100px;
}

.phasethree-subtitle {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.phasethree-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.phasethree-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.phasethree-card img {
  width: 26px;
  height: 26px;
}

.phasethree-card span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.phasethree-desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

/* Carousel Images */
.phasethree-carousel-one img,
.phasethree-carousel-two img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 5px solid #fff;
  display: block;
}

.phasethree-section .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 20px !important;
  position: relative;
  z-index: 5;
}

.phasethree-section .owl-dot {
  display: inline-block !important;
  margin: 0 5px !important;
}

.phasethree-section .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: #cdd5ff !important;
  border-radius: 50%;
  display: block;
  transition: 0.3s ease;
  opacity: 1 !important;
}

.phasethree-section .owl-dot.active span {
  background: linear-gradient(45deg, #6366f1, #818cf8) !important;
  width: 14px !important;
  height: 14px !important;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}
@media (max-width: 767px) {
  .phasethree-mobile-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .phasethree-section {
    padding: 50px 0px;
  }
}

/* ==================================== */
/* (WRAP-06) PHASE-04 The Android App   */
/* ==================================== */
.csphase4-section {
  background: #f7f7f7;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.csphase4-split {
  row-gap: 40px;
  margin-bottom: 70px;
}

.csphase4-img-carousel img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
  display: block;
}

.csphase4-section .owl-dots {
  margin-top: 16px !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  gap: 10px;
  position: relative;
  z-index: 10;
}

.csphase4-section .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  display: block;
  background: linear-gradient(135deg, #6a5af9, #ff3f6c) !important;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.csphase4-section .owl-dot.active span {
  opacity: 1 !important;
  transform: scale(1.25);
  box-shadow: 0px 0px 8px rgba(255, 63, 108, 0.5);
}

.csphase4-section .owl-dot:hover span {
  opacity: 0.8;
  transform: scale(1.15);
}

.csphase4-img-wrap,
.csphase4-img-carousel {
  overflow: visible !important;
}

.csphase4-subtitle {
  font-size: 22px;
  font-weight: 700;
}

.csphase4-goals {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.csphase4-goal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.csphase4-goal-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csphase4-goal-icon {
  width: 18px;
  height: 18px;
}

.csphase4-goal-text {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.csphase4-incidents-title {
  font-size: 22px;
  margin: 30px 0 15px;
  font-weight: 700;
}

.csphase4-incidents {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.csphase4-incident-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  align-items: center;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
}

.csphase4-incident-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.csphase4-incident-icon {
  width: 18px;
  opacity: 0.8;
}

.csphase4-incident-text {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}

.csphase4-story-row {
  row-gap: 40px;
  margin-bottom: 70px;
}

.csphase4-story-box {
  background: #ffffff;
  padding: 42px;

  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef0ff;
}

.csphase4-story-title {
  font-size: 22px;
  font-weight: 800;
}

.csphase4-story-text {
  opacity: 0.85;
  line-height: 1.6;
  margin-top: 20px;
}

.csphase4-story-img img {
  width: 100%;

  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.1);
}

.csphase4-results {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.csphase4-result-card {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 28px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.06);
}

.csphase4-res-icon {
  width: 28px;
  opacity: 0.8;
}

.csphase4-res-num {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 800;
  /* background: linear-gradient(135deg, #f8ff00, #ffbf00); */
  background: linear-gradient(135deg, #120f2d, #2b2565);

  -webkit-background-clip: text;
  color: transparent;
}

.csphase4-res-label {
  font-size: 15px;
  opacity: 0.7;
  font-weight: 700;
}

@media (max-width: 900px) {
  .csphase4-story-row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .csphase4-section {
    padding: 50px 0px;
  }
}

/* =========================================== */
/* (WRAP-07) PHASE-05 The iOS Challenge === */
/* =========================================== */

.casestudy-phasefive-section {
  padding: 90px 0;
  background: #000;
  color: #fff;
  position: relative;
}

.casestudy-phasefive-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.2), transparent 70%);
  top: -80px;
  left: 30%;
  filter: blur(90px);
}

.casestudy-phasefive-badge {
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  padding: 8px 28px;
  font-weight: 700;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

.casestudy-phasefive-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.casestudy-phasefive-intro {
  font-size: 16px;
  color: #e3e3e3;

  line-height: 1.7;
  margin-bottom: 25px;
}

.casestudy-phasefive-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.phase5-carousel img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.casestudy-phasefive-section .owl-dots {
  margin-top: 14px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
  position: relative;
  z-index: 5;
  padding-top: 8px;
}

.casestudy-phasefive-section .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f8cff, #ff4fb2) !important;
  opacity: 0.4;
  transition: 0.3s ease;
  display: block;
}

.casestudy-phasefive-section .owl-dot.active span {
  opacity: 1 !important;
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(255, 79, 178, 0.5);
}

.casestudy-phasefive-reason-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 35px;
}

.casestudy-phasefive-reason-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: calc(50% - 9px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: 0.3s ease-in-out;
}

.casestudy-phasefive-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.casestudy-phasefive-reason-icon {
  min-width: 55px;
  min-height: 55px;
  max-width: 55px;
  max-height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f8cff44, #ff4fb244);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(79, 140, 255, 0.35),
    inset 0 0 15px rgba(255, 79, 178, 0.25);
}

.casestudy-phasefive-reason-icon img {
  width: 26px;
  filter: brightness(1.5);
}

.casestudy-phasefive-reason-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 992px) {
  .casestudy-phasefive-reason-card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .casestudy-phasefive-section {
    padding: 50px 0px;
  }
}

@media (max-width: 576px) {
  .casestudy-phasefive-title {
    font-size: 26px;
  }

  .casestudy-phasefive-subtitle {
    font-size: 18px;
  }
}

/* =========================================== */
/* (WRAP-08) PHASE-06 The Cloud Era===========
/* =========================================== */
.casestudy-phasesix-section {
  padding: 80px 0;
  background: #fafbff;
}

.casestudy-phasesix-badge {
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  padding: 8px 26px;
  font-weight: 700;
  color: #fff;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 18px;
}

.casestudy-phasesix-title {
  font-size: 34px;
  font-weight: 800;
  color: #0a1b46;
  margin-bottom: 12px;
}

.casestudy-phasesix-intro {
  font-size: 16px;
  color: #000;
  margin-bottom: 35px;
  line-height: 1.7;
}

.casestudy-phasesix-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.casestudy-phasesix-card:hover {
  transform: translateY(-4px);
}

.casestudy-phasesix-card-icon {
  min-width: 55px;
  min-height: 55px;
  max-width: 55px;
  max-height: 55px;
  background: #f1f4ff;
  border-radius: 50%;
  border: 2px solid #e1e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casestudy-phasesix-card-icon img {
  width: 28px;
}

.casestudy-phasesix-card-text {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.55;
}

.casestudy-phasesix-mainimage-row {
  margin: 40px 0 45px;
}

.casestudy-phasesix-mainimage {
  width: 100%;
  margin-bottom: 25px;
}

.casestudy-phasesix-mainimage img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  height: auto;
}

.casestudy-phasesix-quote-box p {
  background: #eef3ff;
  border-left: 5px solid #4f8cff;
  padding: 18px 20px;
  border-radius: 12px;
  color: #0a1b46;
  font-weight: 700;
  line-height: 1.65;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .casestudy-phasesix-title {
    font-size: 26px;
  }
  .casestudy-phasesix-card {
    padding: 18px;
  }
  .casestudy-phasesix-section {
    padding: 50px 0px;
  }
}

/* =========================================== */
/* (WRAP-09) PHASE-07 The Result =============
/* =========================================== */

.casestudy-phaseseven-section {
  padding: 80px 0;
  background: #e5e5e6;
}

.casestudy-phaseseven-badge {
  background: linear-gradient(135deg, #4f8cff, #ff4fb2);
  padding: 8px 26px;
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 18px;
}

.casestudy-phaseseven-title {
  font-size: 34px;
  font-weight: 800;
  color: #0a1b46;
  margin-bottom: 40px;
}

.casestudy-phaseseven-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.casestudy-phaseseven-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  gap: 18px;
}

.casestudy-phaseseven-iconbox {
  width: 52px;
  height: 52px;
  background: #f1f4ff;
  border-radius: 12px;
  border: 2px solid #e1e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casestudy-phaseseven-iconbox img {
  width: 26px;
}

.casestudy-phaseseven-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.55;
}

.casestudy-phaseseven-footertext {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  line-height: 1.6;
}

.casestudy-phaseseven-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  display: block;
}

.casestudy-phaseseven-section .owl-dots {
  margin-top: 14px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
  padding-top: 8px;
  position: relative;
  z-index: 5;
}

.casestudy-phaseseven-section .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f8cff, #ff4fb2) !important;
  opacity: 0.45;
  transition: 0.3s ease;
  display: block;
}

.casestudy-phaseseven-section .owl-dot.active span {
  opacity: 1 !important;
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(255, 79, 178, 0.5);
}

@media (max-width: 768px) {
  .casestudy-phaseseven-title {
    font-size: 26px;
  }

  .casestudy-phaseseven-item {
    padding: 14px;
  }
  .casestudy-phaseseven-section {
    padding: 50px 0px;
  }
  .casestudy-phaseseven-footertext {
    padding-bottom: 20px;
  }
}

/* =========================================== */
/* (WRAP-10) -CLIENT-FEEDBACK=================
/* =========================================== */
.casestudy-clientfeedback-section {
  position: relative;
  padding: 120px 20px;
  background: #f7faff;
  overflow: hidden;
}

.casestudy-clientfeedback-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #7aa5ff55, #ff70c855, transparent 70%);
  filter: blur(90px);
  border-radius: 50%;
  animation: casestudy-clientfeedback-moveBlob 10s infinite alternate
    ease-in-out;
  z-index: 1;
}

.casestudy-clientfeedback-blob1 {
  top: 10%;
  left: 10%;
}

.casestudy-clientfeedback-blob2 {
  bottom: 10%;
  right: 12%;
  animation-duration: 12s;
}

@keyframes casestudy-clientfeedback-moveBlob {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, -60px);
  }
}

.casestudy-clientfeedback-card {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 55px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.08);
  animation: casestudy-clientfeedback-cardDrop 1.1s ease-out both;
}

@keyframes casestudy-clientfeedback-cardDrop {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.casestudy-clientfeedback-photo {
  min-width: 260px;
  height: 260px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #7aa5ff, #ff70c8, #5eead4) border-box;

  animation: casestudy-clientfeedback-floatPhoto 4s infinite ease-in-out
    alternate;
}

@keyframes casestudy-clientfeedback-floatPhoto {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

.casestudy-clientfeedback-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casestudy-clientfeedback-content h2 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #5271ff, #ff77c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.casestudy-clientfeedback-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  animation: casestudy-clientfeedback-fadeInText 1.6s ease both;
}

@keyframes casestudy-clientfeedback-fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.casestudy-clientfeedback-author {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.casestudy-clientfeedback-author span {
  color: #5271ff;
}

.casestudy-clientfeedback-quote {
  position: absolute;
  top: 35px;
  left: 40px;
  font-size: 110px;
  font-weight: 800;
  opacity: 0.15;
  color: #5271ff;
  z-index: 2;
  animation: casestudy-clientfeedback-quoteFloat 4s infinite alternate
    ease-in-out;
}

@keyframes casestudy-clientfeedback-quoteFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-15px) scale(1.05);
  }
}

@media (max-width: 991px) {
  .casestudy-clientfeedback-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .casestudy-clientfeedback-photo {
    min-width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .casestudy-clientfeedback-section {
    padding: 60px 0px;
  }
}

@media (max-width: 576px) {
  .casestudy-clientfeedback-card {
    padding: 25px;
    border-radius: 25px;
  }

  .casestudy-clientfeedback-content h2 {
    font-size: 28px;
  }

  .casestudy-clientfeedback-content p {
    font-size: 16px;
  }

  .casestudy-clientfeedback-photo {
    min-width: 160px;
    height: 160px;
  }

  .casestudy-clientfeedback-quote {
    font-size: 80px;
    left: 20px;
    top: 10px;
  }
}
/* ================================ */
/* ((WRAP-11) KEY-TAKEAWAYS========
/* ================================ */
.takeaway-section {
  background: #0d1117;
  padding: 90px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.takeaway-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(79, 140, 255, 0.25),
    transparent 70%
  );
  filter: blur(80px);
}

.takeaway-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 32px;
}

.takeaway-wrapper {
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.06);
}
.takeaway-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.9s ease forwards;
}

.takeaway-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.takeaway-item:nth-child(1) {
  animation-delay: 0.1s;
}
.takeaway-item:nth-child(2) {
  animation-delay: 0.25s;
}
.takeaway-item:nth-child(3) {
  animation-delay: 0.4s;
}
.takeaway-item:nth-child(4) {
  animation-delay: 0.55s;
}

.takeaway-item:last-child {
  border-bottom: none;
}

.takeaway-icon img {
  width: 26px;
}

.takeaway-icon.green {
  background: linear-gradient(135deg, #00ff99, #00d18a);
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.55);
}

.takeaway-icon.blue {
  background: linear-gradient(135deg, #4f8cff, #00d0ff);
  box-shadow: 0 0 20px rgba(79, 140, 255, 0.55);
}

.takeaway-icon.orange {
  background: linear-gradient(135deg, #ff8a00, #ff4f00);
  box-shadow: 0 0 20px rgba(255, 128, 0, 0.55);
}

.takeaway-icon.pink {
  background: linear-gradient(135deg, #ff4fb2, #ff2e8d);
  box-shadow: 0 0 20px rgba(255, 79, 178, 0.55);
}

.takeaway-text {
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .takeaway-section {
    padding: 50px 0px;
  }
  .takeaway-title {
    font-size: 26px;
  }
  .takeaway-wrapper {
    padding: 25px;
  }
  .takeaway-item {
    gap: 14px;
  }
}

/* =========================================== */
/* (WRAP- 12) FINAL-WORDS-SECTION  ===========
/* =========================================== */
.final-words-sec {
  padding: 80px 0;
}
.final-words-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.final-words-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #ff4b6e, #3f79ff);
}
.final-words-title {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4b6e, #3f79ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.final-words-text p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 15px;
  color: #333;
}
.final-words-text p strong {
  background: linear-gradient(135deg, #ff4b6e33, #3f79ff33);
  padding: 4px 8px;
  border-radius: 6px;
}
.final-words-image-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}
.final-words-image-box:hover {
  transform: translateY(-4px);
}
.final-words-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}
.final-words-image-box:hover img {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .final-words-sec {
    padding: 50px 0px;
  }
  .final-words-title {
    font-size: 26px;
    text-align: center;
  }
  .final-words-text p {
    text-align: center;
  }
  .final-words-card {
    padding: 28px;
  }
  .final-words-image-box {
    margin-top: 35px;
  }
}


/* =========================================== */
/* (WRAP-)  =========CTA-BUTTON===============
/* =========================================== */

.casestudy-cta-bg-section {
  position: relative;
  padding: 40px 0;
  background: url("https://images.unsplash.com/photo-1522199755839-a2bacb67c546?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.casestudy-cta-bg-section .casestudy-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.casestudy-cta-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.casestudy-cta-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.casestudy-cta-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.casestudy-cta-desc {
  font-size: 16px;
  max-width: 450px;
  opacity: 0.92;
}
.casestudy-cta-right {
  display: flex;
  gap: 18px;
}

.casestudy-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
.casestudy-cta-email {
  background: linear-gradient(90deg, #00a2ff, #0066ff);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 120, 255, 0.35);
}
.casestudy-cta-email:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 120, 255, 0.45);
}
.casestudy-cta-call {
  background: #fff;
  color: #003c99;
  border: 2px solid #fff;
}
.casestudy-cta-call:hover {
  background: #003c99;
  color: #fff;
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .casestudy-cta-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .casestudy-cta-right {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .casestudy-cta-right {
    flex-direction: column;
    width: 100%;
  }

  .casestudy-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========================================================================================= */
/* =========CASE-STUDY-MAIN-PAGE========CASE-STUDY-MAIN-PAGE=========CASE-STUDY-MAIN-PAGE=== */
/* ========================================================================================= */
.cs-mainpage-wrapper {
  background: linear-gradient(135deg, #f0f2ff, #ffffff);
}

.cs-mainpage-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 15px;
}

.cs-mainpage-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff005d, #ff8a00);
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 15px rgba(255, 0, 90, 0.35);
}

.cs-mainpage-heading {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #222, #ff005d, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-mainpage-subtitle {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(135deg, #444, #777, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-mainpage-block {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 45px;
  margin-bottom: 55px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cs-mainpage-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.cs-mainpage-block.mnpg.reverse {
  flex-direction: row-reverse;
}
.cs-mainpage-wrapper a {
  text-decoration: none !important;
}

.cs-mainpage-wrapper a:hover {
  text-decoration: none !important;
}

.cs-mainpage-imgbox img {
  width: 420px;
  height: 260px;
  border-radius: 5px 50px 5px 50px;
  object-fit: cover;
  transition: 0.5s ease;
}

.cs-mainpage-block:hover .cs-mainpage-imgbox img {
  transform: scale(1.08);
  filter: brightness(0.92);
}

.cs-mainpage-textbox h3 {
  font-size: 29px;
  font-weight: 800;
}

.cs-mainpage-textbox p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.cs-mainpage-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff0058, #ff6a00);
  padding: 12px 24px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: 0.35s ease;
  box-shadow: 0 6px 18px rgba(255, 0, 90, 0.4);
}

.cs-mainpage-btn:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 22px rgba(255, 0, 90, 0.5);
}

.cs-mainpage-btn .arrow {
  font-size: 20px;
  transition: 0.35s ease;
}

.cs-mainpage-btn:hover .arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .cs-mainpage-block,
  .cs-mainpage-block.mnpg.reverse {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .cs-mainpage-imgbox img {
    width: 100%;
    height: 230px;
  }

  .cs-mainpage-heading {
    font-size: 26px;
  }

  .cs-mainpage-subtitle {
    font-size: 14px;
  }
}

/* ========================================================================================= */
/* =================Design & Development Expertise============ */
/* ========================================================================================= */
  .techsummery {
        padding: 80px 0;
        background: #fafbff;
      }
 
      /* WRAPPER */
      .techsummery-wrapper {
        width: 100%;
      }
 
      /* HEADING */
      .techsummery-heading {
        text-align: center;
        margin-bottom: 50px;
      }
 
      .techsummery-tag {
        display: inline-block;
        background: #e8f3ff;
        color: #0a6cb8;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.4px;
      }
 
      .techsummery-title {
        font-size: 38px;
        font-weight: 800;
        margin-top: 12px;
        color: #1f3b57;
      }
 
      .techsummery-title span {
        color: #0a6cb8;
      }
 
      /* CARD */
      .techsummery-card {
        background: #ffffff;
        padding: 35px;
        border-radius: 15px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
        transition: 0.3s ease;
      }
 
      .techsummery-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
      }
 
      /* HEADINGS & PARAGRAPH */
      .techsummery-subhead {
        margin-top: 22px;
        font-size: 18px;
        font-weight: 600;
        color: #0a6cb8;
      }
 
      .techsummery-para {
        font-size: 15px;
        margin-top: 6px;
        line-height: 1.6;
        color: #444;
      }
 
      /* FLOAT */
      @keyframes techsummery-float {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-12px);
        }
        100% {
          transform: translateY(0);
        }
      }
 
      /* RESPONSIVE */
      @media (max-width: 768px) {
        .techsummery-title {
          font-size: 28px;
        }
        .techsummery-card {
          margin-bottom: 25px;
        }
      }
 
      /* small padding override */
      .techsummery {
        padding: 50px 0;
      }
