/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: 644px;
  display: block;
}

/* Container Utility */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  /* Extra bold for headings to match design */
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.text-primary {
  color: var(--color-primary);
}

.text-purple {
  color: #1e65ab;
}

.text-purple-light {
  color: #ddd6fe;
}

.text-blue {
  color: #3b82f6;
}

.text-pink {
  color: #ec4899;
}

.text-orange {
  color: #f97316;
}

.text-yellow {
  color: #eab308;
}

.text-white {
  color: #ffffff;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-md {
  margin-top: var(--space-md);
}

.pt-0 {
  padding-top: 0 !important;
}

.bg-light {
  background-color: var(--color-bg-light);
}

/* Gradients for Process circles */
.bg-process-1 {
  background: #1e65ab;
  color: white;
}

.bg-process-2 {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: white;
}

.bg-process-3 {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  color: white;
}

.bg-process-4 {
  background: linear-gradient(135deg, #f97316, #fdba74);
  color: white;
}

.bg-process-5 {
  background: linear-gradient(135deg, #eab308, #fde047);
  color: white;
}

/* Glowing shadows for process circles */
.shadow-process-1 {
  box-shadow: 0 10px 25px rgba(89, 50, 234, 0.4);
}

.shadow-process-2 {
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.shadow-process-3 {
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.shadow-process-4 {
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.shadow-process-5 {
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

/* Badges for Case Studies */
.badge-ecommerce-bg {
  background-color: var(--color-badge-ecommerce-bg);
}

.badge-ecommerce {
  background-color: var(--color-badge-ecommerce-bg);
  color: var(--color-badge-ecommerce-text);
}

.badge-healthcare-bg {
  background-color: var(--color-badge-healthcare-bg);
}

.badge-healthcare {
  background-color: var(--color-badge-healthcare-bg);
  color: var(--color-badge-healthcare-text);
}

.badge-education-bg {
  background-color: var(--color-badge-education-bg);
}

.badge-education {
  background-color: var(--color-badge-education-bg);
  color: var(--color-badge-education-text);
}

/* Button Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  /* Matches 8px from design */
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: #1e65ab;
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.btn-icon {
  margin-left: 0.5rem;
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  background: #fff;
}

/* TOP */

.top-text,
.bottom-text {
  overflow: hidden;
  width: 100%;
}

.top-text {
  margin-bottom: 50px;
}

.bottom-text {
  margin-top: 50px;
}

.track {
  display: flex;
  gap: 80px;
  width: max-content;
}

.top-text .track {
  animation: leftMove 15s linear infinite;
}

.bottom-text .track {
  animation: rightMove 15s linear infinite;
}

.track span {
  font-size: 24px;
  font-weight: 900;
  color: rgba(24, 2, 120, 0.7);
  white-space: nowrap;
  letter-spacing: 3px;
}

/* CENTER */

.slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.slide-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.slide {
  flex: 0 0 auto;
}

.slide img {
  width: 150px;
  height: 80px;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* Section Utility */
.section {
  padding: var(--space-xl) 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.8125rem;
  /* ~13px */
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  display: inline-block;
}

/* -------------------------------------
   HEADER & NAVIGATION
-------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  /* Taller header */
}

/* =========================================
   SERVICES MEGA MENU
========================================= */

.services-dropdown {
  position: static;
}

/* =========================================
   SERVICES LINK
========================================= */

.services-link {
  display: flex;
  align-items: center;
  gap: 7px;
}

.services-link .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* =========================================
   MEGA MENU
========================================= */

.services-mega-menu {
  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;

  background: transparent;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-10px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 9999;
}

/* =========================================
   SHOW ON HOVER
========================================= */

.services-dropdown:hover .services-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-dropdown:hover .services-link .arrow {
  transform: rotate(180deg);
}

/* =========================================
   INNER
========================================= */

.services-mega-inner {
  width: calc(100% - 80px);

  max-width: 1600px;

  margin: 0 auto;

  padding: 24px;

  background: #ffffff;

  border-radius: 0 0 18px 18px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* =========================================
   CATEGORY ROW
========================================= */

.service-category-row {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 16px;

  margin-bottom: 24px;
}

/* =========================================
   CATEGORY
========================================= */

.service-category {
  min-height: 72px;

  padding: 12px 14px;

  display: flex;

  align-items: center;

  gap: 12px;

  border: 1px solid #e8edf1;

  border-radius: 15px;

  background: #ffffff;

  color: #161616;

  text-decoration: none;

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.05);

  transition: 0.25s ease;
}

.service-category:hover {
  transform: translateY(-3px);

  border-color: #b9ddf4;

  background: #f5fbff;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* =========================================
   ACTIVE CATEGORY
========================================= */

.service-category.active {
  border-color: #b9ddf4;

  background: #f5fbff;
}

/* =========================================
   CATEGORY ICON
========================================= */

.service-category-icon {
  width: 40px;

  height: 40px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 25px;

  color: #fcb03b;
}

/* =========================================
   CATEGORY TEXT
========================================= */

.service-category-title {
  font-size: 15px;

  line-height: 1.3;

  font-weight: 500;
}

/* =========================================
   DROPDOWN CONTENT
========================================= */

.services-dropdown-content {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    375px;

  gap: 24px;

  align-items: stretch;
}

/* =====================================================
   IMPORTANT FIX
   ONLY ONE SERVICE PANEL WILL BE VISIBLE
===================================================== */

.services-links-area.service-panel {
  display: none !important;
}

/* ACTIVE SERVICE PANEL ONLY */

.services-links-area.service-panel.active {
  display: block !important;
}

/* =========================================
   SERVICE PANEL ANIMATION
========================================= */

.services-links-area.service-panel.active {
  animation: servicePanelFade 0.25s ease;
}

@keyframes servicePanelFade {
  from {
    opacity: 0;

    transform: translateY(5px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================
   PANELS WRAPPER
========================================= */

.services-panels {
  width: 100%;
}

/* =========================================
   LINKS AREA
========================================= */

.services-links-area {
  background: #edf8fd;

  border-radius: 18px;

  padding: 28px 25px;

  min-height: 330px;
}

.services-links-area h3 {
  font-size: 21px;

  margin-top: 0;

  margin-bottom: 22px;

  color: #18232d;
}

/* =========================================
   LINK COLUMNS
========================================= */

.services-link-columns {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.service-link-column {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.service-link-column a {
  font-size: 16px;

  color: #172b3a;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.service-link-column a:hover {
  color: #0878b9;

  transform: translateX(4px);
}

/* =========================================
   PROMO CARD
========================================= */

.services-promo-card {
  min-height: 330px;

  padding: 28px 25px;

  border-radius: 18px;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.8) 2px,
      transparent 3px
    ),
    #e1f4fc;

  background-size: 14px 14px;

  overflow: hidden;
}

/* =====================================================
   IMPORTANT FIX
   HIDE ALL PROMO PANELS
===================================================== */

.services-promo-card .promo-panel {
  display: none !important;
}

/* SHOW ONLY ACTIVE PROMO */

.services-promo-card .promo-panel.active {
  display: block !important;
}

/* =========================================
   PROMO PANEL ANIMATION
========================================= */

.services-promo-card .promo-panel.active {
  animation: promoFade 0.25s ease;
}

@keyframes promoFade {
  from {
    opacity: 0;

    transform: translateY(5px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================
   PROMO TEXT
========================================= */

.services-promo-card .promo-panel span {
  display: block;

  font-size: 11px;

  color: #25323a;
}

.services-promo-card .promo-panel strong {
  display: block;

  margin: 8px 0 3px;

  font-size: 70px;

  line-height: 1;

  color: #ff6900;
}

.services-promo-card .promo-panel h4 {
  font-size: 14px;

  line-height: 1.35;

  margin-top: 5px;

  margin-bottom: 4px;

  color: #18232d;
}

.services-promo-card .promo-panel p {
  font-size: 13px;

  margin-bottom: 20px;

  color: #555;
}

/* =========================================
   PROMO BUTTON
========================================= */

.services-promo-card .promo-download {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 11px 22px;

  border-radius: 30px;

  background: #ff6900;

  color: #ffffff;

  font-size: 15px;

  font-weight: 500;

  text-decoration: none;

  transition: 0.25s ease;
}

.services-promo-card .promo-download:hover {
  background: #e85e00;

  transform: translateY(-2px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {
  .services-mega-inner {
    width: calc(100% - 40px);

    padding: 18px;
  }

  .service-category-row {
    gap: 10px;
  }

  .service-category {
    padding: 10px;

    gap: 8px;
  }

  .service-category-title {
    font-size: 13px;
  }

  .service-category-icon {
    font-size: 21px;
  }

  .services-dropdown-content {
    grid-template-columns:
      minmax(0, 1fr)
      300px;
  }

  .services-links-area {
    padding: 24px 20px;
  }

  .services-link-columns {
    gap: 20px;
  }

  .service-link-column a {
    font-size: 14px;
  }

  .services-promo-card {
    padding: 24px 20px;
  }

  .services-promo-card .promo-panel strong {
    font-size: 58px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {
  .services-dropdown {
    position: relative;
  }

  .services-mega-menu {
    position: static;

    width: 100%;

    display: none;

    opacity: 1;

    visibility: visible;

    transform: none;

    transition: none;
  }

  /* JS WILL ADD mobile-open */

  .services-dropdown.mobile-open .services-mega-menu {
    display: block;
  }

  .services-mega-inner {
    width: 100%;

    margin: 0;

    padding: 15px;

    border-radius: 0;

    box-shadow: none;
  }

  /* =====================================
       MOBILE CATEGORY GRID
    ===================================== */

  .service-category-row {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 15px;
  }

  .service-category {
    min-height: 65px;
  }

  /* =====================================
       MOBILE CONTENT
    ===================================== */

  .services-dropdown-content {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .services-links-area {
    min-height: auto;

    padding: 22px 18px;
  }

  /* =====================================
       MOBILE LINKS
    ===================================== */

  .services-link-columns {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  /* =====================================
       MOBILE PROMO
    ===================================== */

  .services-promo-card {
    min-height: 270px;

    padding: 22px 18px;
  }

  .services-promo-card .promo-panel strong {
    font-size: 55px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 550px) {
  .service-category-title {
    font-size: 11px;
  }

  .service-category-icon {
    width: 30px;

    height: 30px;

    font-size: 18px;
  }

  .services-link-columns {
    grid-template-columns: 1fr;
  }

  .service-link-column a {
    font-size: 14px;
  }

  .services-links-area h3 {
    font-size: 18px;

    margin-bottom: 18px;
  }

  .services-promo-card .promo-panel strong {
    font-size: 48px;
  }

  .services-promo-card .promo-download {
    font-size: 13px;

    padding: 10px 18px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-text-dark);
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  /* 15px */
  color: var(--color-text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}

.has-dropdown .arrow {
  font-size: 0.8em;
  margin-left: 2px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  margin-left: 1rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark);
  position: absolute;
  left: 0;
  transition: all var(--transition-normal);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 11px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 22px;
}

/* -------------------------------------
   HERO SECTION
-------------------------------------- */
.hero-section {
  padding-top: 78px;
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(235, 230, 255, 1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: var(--fs-h1);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  margin-left: -12px;
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.rating {
  display: flex;
  flex-direction: column;
}

.rating .stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.rating .score {
  font-size: 0.875rem;
  color: var(--color-text-dark);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 80%;
  height: 80%;
  position: relative;
  z-index: 2;
  /* In a real scenario, the image of the man goes here */
}

/* Floating Stats Cards */
.stat-float-card {
  position: absolute;
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  z-index: 3;
  width: 180px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.stat-header {
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.stat-body {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.stat-trend {
  font-size: 0.75rem;
  font-weight: 700;
}

.stat-trend.up {
  color: #10b981;
}

.stat-chart {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: flex-end;
}

.bar-chart {
  display: flex;
  gap: 4px;
  height: 30px;
  align-items: flex-end;
}

.bar-chart .bar {
  flex: 1;
  background-color: var(--color-primary);
  border-radius: 2px 2px 0 0;
  opacity: 0.3;
}

.bar-chart .bar:nth-child(4),
.bar-chart .bar:nth-child(6) {
  opacity: 1;
}

/* Positioning the floating cards */
.float-tl {
  top: 5%;
  left: 0;
  animation-delay: 0s;
}

.float-tr {
  top: 15%;
  right: 0;
  animation-delay: 1.5s;
}

.float-bl {
  bottom: 20%;
  left: 5%;
  animation-delay: 0.7s;
}

.float-br {
  bottom: 10%;
  right: 5%;
  animation-delay: 2.2s;
}

/* -------------------------------------
   BRANDS SECTION
-------------------------------------- */
.brands-section {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.brands-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #000000;
  margin-bottom: 2.5rem;
}

.brands-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logo {
  max-height: 40px;
  max-width: 140px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-normal);
  object-fit: contain;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* -------------------------------------
   SERVICES SECTION
-------------------------------------- */
/*=========================
    SERVICES SECTION
=========================*/

.services {
  padding: 100px 0;
  background: #f8f9fc;
}

.services .container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* TOP */

.services__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #1e65ab;
  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 3px;

  margin-bottom: 20px;
}

.section__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #1e65ab;
  border-radius: 50px;
}

.section__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  color: #081120;
  max-width: 650px;
}

.section__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 480px;
}

/* GRID */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */

.service-card {
  background: transparent;
  perspective: 1000px;
  height: 150px;
  margin-bottom: 20px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.service-card:hover .service-card-inner,
.service-card:active .service-card-inner,
.service-card:focus-within .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e7e9f2;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service-card-front {
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.4s ease;
  padding: 0;
  overflow: hidden;
}

.service-card-front img.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-front img.service-img {
  transform: scale(1.1);
}

.service-card-front .front-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(9, 16, 29, 0.9), transparent);
  width: 100%;
  padding: 40px 20px 20px;
  margin-top: auto;
  text-align: center;
}

.service-card-front .service-card__title {
  color: #fff;
  margin-bottom: 0;
}

.service-card:hover .service-card-front {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.service-card-back {
  transform: rotateY(180deg);
  background: #fdfdff;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.06);
  justify-content: center;
}

/* ICON */

.service-card__icon {
  width: 72px;
  height: 72px;

  border-radius: 20px;

  background: #f1efff;

  color: #1e65ab;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  margin-bottom: 24px;

  transition: 0.4s;
}

.service-card-front:hover .service-card__icon {
  transform: rotate(8deg) scale(1.1);
}

/* TITLE */

.service-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #09101d;

  margin-bottom: 16px;
}

/* TEXT */

.service-card__text {
  color: #6b7280;

  font-size: 15px;

  line-height: 1.7;

  margin-bottom: 16px;
}

/* FEATURES */

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* LINK */

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #1e65ab;

  font-weight: 700;

  text-decoration: none;
  margin-top: auto;
  transition: 0.3s;
}

.service-card__link:hover {
  gap: 14px;
}

.service-card__link i {
  font-size: 14px;
}

/* REVEAL */

.reveal {
  opacity: 1;
  transform: none;
}

/*=========================
    TABLET
=========================*/

@media (max-width: 992px) {
  .services {
    padding: 80px 0;
  }

  .services__top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__title {
    max-width: 100%;
  }
}

/*=========================
    MOBILE
=========================*/

@media (max-width: 576px) {
  .services {
    padding: 70px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .section__title {
    font-size: 34px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card__title {
    font-size: 22px;
  }
}

/* -------------------------------------
   STATS SECTION (Rounded Banner)
-------------------------------------- */
.stats-banner {
  background: linear-gradient(to right, #599fe1, #2e73b6, #1d64a8);
  color: var(--color-white);
  padding: 2rem 3rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-float);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon-wrapper {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-text .stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: white;
  /* Ensure it stays white, overriding global .stat-number if any */
}

.stat-text .stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* -------------------------------------
   PROCESS TIMELINE
-------------------------------------- */
.process-header {
  margin-bottom: var(--space-lg);
}

.process-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.header-underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  padding-top: 2rem;
}

.process-connector {
  position: absolute;
  top: calc(2rem + 32px);
  /* aligned to center of icons (80px height / 2 = 40px, but visually 32px looks better with arrow) */
  left: 10%;
  right: 10%;
  height: 0;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

/* Add custom arrow head to the end of the dashed line to simulate dotted arrows between each step */
.process-connector::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 20%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #cbd5e1;
  border-right: 2px solid #cbd5e1;
  transform: rotate(45deg);
}

.process-connector::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 40%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #cbd5e1;
  border-right: 2px solid #cbd5e1;
  transform: rotate(45deg);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition-normal);
}

.process-step:hover .step-icon {
  transform: translateY(-5px);
}

.step-number {
  display: block;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
}

/*=====================================
    Case Studies Section
======================================*/

.services-section-fifteen {
  position: relative;
  padding: 100px 0;
  background: #fff;
}

.services-section-fifteen .sec-title {
  margin-bottom: 60px;
}

.services-section-fifteen .sub-title {
  display: inline-block;
  color: #ff5a00;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-section-fifteen .sec-title h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #16243e;
  margin-bottom: 18px;
}

.services-section-fifteen .sec-title p {
  font-size: 17px;
  color: #666;
  line-height: 32px;
}

/*==============================
        Card
===============================*/

.service-block-fifteen {
  position: relative;
  margin-bottom: 30px;
}

.service-block-fifteen .inner-box {
  position: relative;
}

/*==============================
        Image
===============================*/

.service-block-fifteen .image-box {
  position: relative;
  overflow: hidden;
  height: 300px;
  border: 8px solid #16243e;
  border-radius: 20px;
  background: #fff;
}

.service-block-fifteen .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.service-block-fifteen:hover .image-box img {
  transform: scale(1.06);
}

/*==============================
        Content
===============================*/

.service-block-fifteen .content-box {
  position: relative;
  background: #fff;
  margin: -95px 14px 0;
  padding: 80px 45px 40px;
  border-radius: 18px;
  border: 1px dashed #16243e;
  z-index: 2;
  transition: 0.35s;
  min-height: 290px;
}

.service-block-fifteen:hover .content-box {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/*==============================
        Orange Badge
===============================*/

.service-block-fifteen .icon-box {
  position: absolute;
  left: 45px;
  top: -45px;
}

.service-block-fifteen .icon {
  width: 135px;
  height: 75px;
  background: #f55b06;
  border-radius: 14px;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.service-block-fifteen .icon br {
  display: block;
}

.service-block-fifteen .icon {
  font-size: 15px;
}

/*==============================
        Heading
===============================*/

.service-block-fifteen .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #16243e;
}

.service-block-fifteen .title a {
  color: #16243e;
  text-decoration: none;
  transition: 0.3s;
}

.service-block-fifteen .title a:hover {
  color: #ff5a00;
}

/*==============================
        Divider
===============================*/

.service-block-fifteen .title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-top: 15px;
}

/*==============================
        Text
===============================*/

.service-block-fifteen .text {
  font-size: 18px;
  line-height: 38px;
  color: #555;
  margin-bottom: 28px;
}

/*==============================
        Button
===============================*/

.service-block-fifteen .read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #16243e;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.service-block-fifteen .read-more i {
  font-size: 18px;
  transition: 0.3s;
}

.service-block-fifteen .read-more:hover {
  color: #ff5a00;
}

.service-block-fifteen .read-more:hover i {
  transform: translateX(6px);
}

/*==============================
        Owl Carousel
===============================*/

.services-section-fifteen .owl-stage {
  display: flex;
}

.services-section-fifteen .owl-item {
  display: flex;
  height: auto;
}

.services-section-fifteen .service-block-fifteen {
  width: 100%;
}

/*==============================
        Responsive
===============================*/

@media (max-width: 1199px) {
  .service-block-fifteen .content-box {
    padding: 75px 30px 35px;
  }

  .service-block-fifteen .icon-box {
    left: 30px;
  }
}

@media (max-width: 991px) {
  .services-section-fifteen {
    padding: 80px 0;
  }

  .services-section-fifteen .sec-title h2 {
    font-size: 34px;
  }

  .service-block-fifteen .content-box {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .services-section-fifteen .sec-title h2 {
    font-size: 30px;
  }

  .services-section-fifteen .sec-title p {
    font-size: 15px;
    line-height: 28px;
  }

  .service-block-fifteen .image-box {
    height: 240px;
  }

  .service-block-fifteen .content-box {
    margin: -70px 10px 0;
    padding: 70px 25px 30px;
  }

  .service-block-fifteen .title {
    font-size: 24px;
    line-height: 34px;
  }

  .service-block-fifteen .text {
    font-size: 16px;
    line-height: 30px;
  }

  .service-block-fifteen .read-more {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .services-section-fifteen {
    padding: 60px 0;
  }

  .service-block-fifteen .icon {
    width: 120px;
    height: 70px;
    font-size: 14px;
  }

  .service-block-fifteen .icon-box {
    left: 20px;
  }

  .service-block-fifteen .content-box {
    padding: 65px 20px 25px;
  }
}

.three-items-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-left: 132px;
  margin-right: 132px;
}

@media (max-width: 991px) {
  .three-items-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .three-items-carousel {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------
   TESTIMONIALS
-------------------------------------- */
.testimonials {
  background: #f8f9ff;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #1e65ab;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 42px;
  margin: 15px 0;
  font-weight: 700;
}

.section-title p {
  color: #666;
  max-width: 650px;
  margin: auto;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;

  width: max-content;

  animation: testimonials 28s linear infinite;
}

.testimonial-card {
  width: 380px;

  background: #fff;

  border-radius: 20px;

  padding: 35px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: #ffc107;

  font-size: 20px;

  margin-bottom: 20px;
}

.testimonial-card p {
  color: #555;

  line-height: 1.8;

  margin-bottom: 30px;
}

.client {
  display: flex;

  align-items: center;

  gap: 15px;
}

.client img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;
}

.client h4 {
  font-size: 18px;

  margin-bottom: 4px;
}

.client span {
  color: #777;

  font-size: 14px;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonials {
  0% {
    transform: translateX(0);
  }

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

/* FAQ section */
/*==========================
    FAQ SECTION
===========================*/

/* =========================================
   FAQ SECTION
========================================= */

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    padding: 100px 20px;
    background: #f8f8fc;
}

.faq-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}


/* =========================================
   LEFT SIDE
========================================= */

.faq-tag {
    display: inline-block;
    color: #1e65ab;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-left h2 {
    margin: 0 0 25px;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

.faq-left h2 span {
    display: block;
    color: #1e65ab;
}

.faq-intro {
    margin: 0 0 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   CONTACT CARD
========================================= */

.faq-contact-card {
    padding: 35px;
    background: #ffffff;
    border: 1px solid #ececf2;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.faq-contact-card .icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(108, 76, 245, 0.10);
    color: #1e65ab;
    font-size: 30px;
}

.faq-contact-card h3 {
    margin: 0 0 15px;
    color: #111;
    font-size: 32px;
    line-height: 1.2;
}

.faq-contact-card p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.contact-btn {
    width: 100%;
    height: 58px;
    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, #1e65ab, #8b6cff);

    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(30, 101, 171, 0.25);
}


/* =========================================
   RIGHT SIDE
========================================= */

.faq-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;

    transition: border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.faq-item.active {
    border-color: #1e65ab;
    box-shadow: 0 12px 30px rgba(30, 101, 171, 0.10);
}


/* =========================================
   FAQ QUESTION
========================================= */

.faq-question {
    width: 100%;
    padding: 27px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: transparent;
    border: none;
    cursor: pointer;

    text-align: left;
    font-family: inherit;
}

.faq-question h4 {
    margin: 0;
    color: #111;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================
   PLUS / MINUS ICON
========================================= */

.faq-icon {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #1e65ab;
    border-radius: 50%;

    color: #1e65ab;

    font-size: 25px;
    font-weight: 400;

    transition: background 0.3s ease,
                color 0.3s ease,
                transform 0.3s ease;
}

.faq-question:hover .faq-icon,
.faq-item.active .faq-icon {
    background: #1e65ab;
    color: #ffffff;
}


/* =========================================
   FAQ ANSWER ANIMATION
========================================= */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 28px 28px;
    margin: 0;

    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* OPEN FAQ */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-left {
        max-width: 700px;
    }

    .faq-contact-card {
        max-width: 450px;
    }

    .faq-left h2 {
        font-size: 48px;
    }

}


@media (max-width: 768px) {

    .faq-section {
        padding: 70px 16px;
    }

    .faq-wrapper {
        gap: 35px;
    }

    .faq-left h2 {
        font-size: 42px;
    }

    .faq-question {
        padding: 21px 20px;
    }

    .faq-question h4 {
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 20px 24px;
        font-size: 15px;
    }

    .faq-contact-card {
        padding: 28px 24px;
    }

    .faq-contact-card h3 {
        font-size: 27px;
    }

}


@media (max-width: 480px) {

    .faq-left h2 {
        font-size: 36px;
    }

    .faq-question {
        gap: 12px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 21px;
    }

    .faq-contact-card {
        padding: 25px 20px;
    }

    .contact-btn {
        height: 54px;
    }

}



/* ========================================
   BRAND GROWTH SECTION
======================================== */

.brand-growth-section {
    width: 100%;
    padding: 40px 20px;
    background: #f4f4f6;
}


/* MAIN BOX */

.growth-content {
    position: relative;
    max-width: 1280px;
    min-height: 460px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;

    padding: 70px 75px;

    overflow: hidden;
    border-radius: 32px;

    background-color: #201b45;

    /* DOT PATTERN */
    background-image:
        radial-gradient(
            rgba(160, 150, 255, 0.35) 1.2px,
            transparent 1.2px
        );

    background-size: 38px 38px;
}


/* DARK OVERLAY FOR DEPTH */

.growth-content::before {
    content: "";
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(80, 65, 170, 0.35),
            transparent 35%
        );

    pointer-events: none;
}


/* KEEP CONTENT ABOVE BACKGROUND */

.growth-text,
.growth-visual {
    position: relative;
    z-index: 2;
}


/* ========================================
   LEFT SIDE
======================================== */

.growth-text {
    max-width: 560px;
}


/* SMALL TAG */

.growth-tag {
    display: inline-block;

    margin-bottom: 20px;

    color: #d8d6e8;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* HEADING */

.growth-text h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.growth-text h2 span {
    color: #fcb03b;
}


/* DESCRIPTION */

.growth-text p {
    max-width: 570px;

    margin: 24px 0 34px;

    color: #d1d0dd;

    font-size: 19px;
    line-height: 1.55;
}


/* BUTTON */

.audit-btn {
    display: inline-flex;

    align-items: center;
    gap: 14px;

    padding: 22px 30px;

    min-width: 210px;

    border-radius: 10px;

    background: #ffffff;

    color: #31557d;

    font-size: 17px;
    font-weight: 600;

    text-decoration: none;

    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.audit-btn span {
    font-size: 22px;

    transition: transform 0.3s ease;
}


.audit-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


.audit-btn:hover span {
    transform: translateX(5px);
}


/* ========================================
   RIGHT SIDE IMAGE
======================================== */

.growth-visual {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}


.growth-visual img {
    width: 100%;
    max-width: 540px;

    height: auto;

    object-fit: contain;

    /* Optional floating effect */
    animation: floatImage 5s ease-in-out infinite;

    filter:
        drop-shadow(
            0 20px 40px rgba(80, 60, 255, 0.35)
        );
}


/* FLOAT ANIMATION */

@keyframes floatImage {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(1deg);
    }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 992px) {

    .growth-content {

        grid-template-columns: 1fr;

        text-align: center;

        padding: 60px 40px;

        gap: 40px;
    }


    .growth-text {
        max-width: 700px;
        margin: auto;
    }


    .growth-text p {
        margin-left: auto;
        margin-right: auto;
    }


    .growth-visual img {
        max-width: 500px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 576px) {

    .brand-growth-section {
        padding: 0 12px;
    }


    .growth-content {

        min-height: auto;

        padding: 55px 25px;

        border-radius: 24px;

        background-size: 28px 28px;
    }


    .growth-tag {
        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .growth-text h2 {
        font-size: 38px;
    }


    .growth-text p {
        font-size: 16px;
    }


    .audit-btn {
        padding: 18px 24px;

        font-size: 15px;
    }


    .growth-visual img {
        max-width: 100%;
    }

}

/* -------------------------------------
   FOOTER
-------------------------------------- */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: var(--space-lg);
}

.brand-col .footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.5rem 0;
  font-size: 0.875rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--color-white);
}

.contact-info li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  display: flex;
  gap: 1rem;
}

.contact-info .icon {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* -------------------------------------
   ANIMATIONS
-------------------------------------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-visible {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Ensure brand logos keep their grayscale filter when animated */
.brand-logo.animate-visible {
  opacity: 0.5 !important;
}

.brand-logo.animate-visible:hover {
  opacity: 1 !important;
}

/* about-page css */
/*==================
ABOUT HERO
===================*/

.about-hero {
  padding: 120px 20px;
  background: #fff;
}

.about-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  color: #1e65ab;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-content h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #111;
}

.about-content h1 span {
  display: block;
  color: #1e65ab;
}

.about-content p {
  max-width: 550px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

/* Buttons */

.about-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.primary-btn,
.secondary-btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: #1e65ab;
  color: #fff;
}

.secondary-btn {
  border: 1px solid #1e65ab;
  color: #1e65ab;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-5px);
}

/* Clients */

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-images {
  display: flex;
}

.client-images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
}

.client-images img:first-child {
  margin-left: 0;
}

.client-info strong {
  color: #1e65ab;
}

/* Right */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  display: block;
  height: 584px;
}

/* Floating Cards */

.floating-card {
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.floating-card h4 {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.floating-card span {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.card-1 {
  top: -30px;
  left: -30px;
}

.card-2 {
  bottom: 40px;
  left: -40px;
}

.card-3 {
  right: -30px;
  bottom: 80px;
}

/* our-story section */
/*==================
    OUR STORY
===================*/

.our-story {
  padding: 100px 20px 60px;
  background: #fff;
}

.story-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.story-tag {
  display: inline-block;
  color: #1e65ab;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.story-content h2 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 25px;
  color: #111;
}

.story-content h2 span {
  color: #1e65ab;
}

.story-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
}

.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 30px;

  border: 1px solid #1e65ab;
  border-radius: 12px;

  text-decoration: none;
  color: #1e65ab;
  font-weight: 600;

  transition: 0.3s;
}

.story-btn:hover {
  background: #1e65ab;
  color: #fff;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 440px;

  display: block;

  border-radius: 24px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

  transition: 0.4s;
}

.story-image img:hover {
  transform: translateY(-10px);
}

/* <!-- our-mission section --> */
/*==================
    MISSION & VISION
===================*/

.mission-vision {
  padding: 80px 20px;
  background: #fff;
}

.mv-container {
  max-width: 1300px;
  margin: auto;
}

.mv-tag {
  display: inline-block;
  margin-bottom: 30px;

  color: #777;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: 45px;
  border-radius: 24px;
  transition: 0.4s;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mission-card {
  background: #f5f1ff;
}

.vision-card {
  background: #fff5ed;
}

.mv-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fff;
  color: #1e65ab;

  font-size: 24px;

  margin-bottom: 25px;
}

.vision-icon {
  color: #ff8a3d;
}

.mv-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
}

.mv-card p {
  color: #666;
  line-height: 1.9;
  max-width: 500px;
}

/* why choose inweb */
/*===================
    WHY CHOOSE INWEB
===================*/

.why-inweb {
  padding: 100px 20px;
  background: #fff;
}

.why-container {
  max-width: 1300px;
  margin: auto;
}

.why-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 20px;
}

.why-inweb h2 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #111;
}

.why-inweb h2 span {
  color: #1e65ab;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.why-item {
  padding: 30px 20px;
  border-radius: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #1e65ab, #ff7a59);

  transform: scaleX(0);
  transition: 0.4s;
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(108, 76, 245, 0.08);
}

.why-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: #f5f1ff;
  color: #1e65ab;

  font-size: 24px;

  margin-bottom: 25px;

  transition: 0.4s;
}

.why-item:hover .why-icon {
  transform: rotate(12deg) scale(1.1);

  background: #1e65ab;
  color: #fff;
}

.why-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.why-content p {
  color: #666;
  line-height: 1.8;
}

/*====================
    CONTACT Page
====================*/

.contact-hero {
  padding: 120px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-tag {
  display: inline-block;
  color: #1e65ab;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-content h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #111;
}

.contact-content h1 span {
  color: #1e65ab;
}

.contact-content p {
  max-width: 550px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 40px;
}

.contact-btns {
  display: flex;
  gap: 20px;
}

.contact-primary-btn,
.contact-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 32px;
  border-radius: 12px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.contact-primary-btn {
  background: #1e65ab;
  color: #fff;
}

.contact-secondary-btn {
  border: 1px solid #1e65ab;
  color: #1e65ab;
}

.contact-primary-btn:hover,
.contact-secondary-btn:hover {
  transform: translateY(-5px);
}

/* RIGHT */

.contact-image {
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 450px;
  display: block;

  border-radius: 30px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-card {
  position: absolute;

  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

  color: #1e65ab;
  font-size: 30px;
}

.card-one {
  top: -25px;
  left: -25px;
}

.card-two {
  bottom: -25px;
  right: -25px;
}

.contact-form-section {
  padding: 100px 20px;
  background: #f8f8fc;
}

.contact-form-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
}

/* LEFT */

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
  font-size: 42px;
  margin-bottom: 40px;
  position: relative;
}

.contact-form-wrapper h2::after {
  content: "";
  width: 60px;
  height: 4px;

  background: #1e65ab;

  position: absolute;
  left: 0;
  bottom: -12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 20px;

  transform: translateY(-50%);
  color: #1e65ab;
}

.input-group input,
.input-group select {
  width: 100%;
  height: 60px;

  border: 1px solid #e8e8e8;
  border-radius: 12px;

  padding: 0 20px 0 55px;
  outline: none;
}

.textarea-group i {
  top: 30px;
}

textarea {
  width: 100%;
  height: 180px;

  resize: none;
  border: 1px solid #e8e8e8;
  border-radius: 12px;

  padding: 25px 20px 20px 55px;
  margin-top: 20px;
  outline: none;
}

.send-btn {
  width: 100%;
  height: 60px;

  margin-top: 25px;

  border: none;
  border-radius: 12px;

  background: linear-gradient(90deg, #1e65ab, #1e65ab);

  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  margin-top: 20px;
  color: #888;
  font-size: 14px;
}

/* RIGHT */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-card {
  display: flex;
  gap: 20px;

  padding: 25px;

  background: #fff;
  border-radius: 20px;

  transition: 0.3s;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.detail-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4f1ff;
  color: #1e65ab;
  font-size: 24px;
}

.whatsapp {
  background: #e8fff0;
  color: #25d366;
}

.detail-card h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.detail-card p {
  color: #666;
  line-height: 1.8;
}

/* mapping section  */

/*=====================
    OUR OFFICE
======================*/

.office-section {
  padding: 100px 20px;
  background: #fff;
}

.office-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 320px 1fr;

  gap: 40px;
  align-items: center;
}

.office-content {
  padding: 40px;
  background: #fff;
  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.office-tag {
  display: inline-block;

  color: #1e65ab;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;

  margin-bottom: 20px;
}

.office-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.office-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

.office-list {
  list-style: none;
  padding: 0;
}

.office-list li {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 20px;
  color: #555;
}

.office-list i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4f1ff;
  color: #1e65ab;
}

/* MAP */

.office-map {
  overflow: hidden;
  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.office-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* last section contact us */

/*======================
    CONTACT CTA
=======================*/

.contact-cta {
  padding: 100px 20px;
  background: #fff;
}

.cta-container {
  max-width: 1300px;
  margin: auto;

  position: relative;

  display: grid;
  grid-template-columns: 1.2fr auto 0.8fr;

  align-items: center;
  gap: 40px;

  padding: 60px;

  border-radius: 30px;

  overflow: hidden;

  background: linear-gradient(90deg, #1e65ab, #9b4dff, #ff6a3d);
}

.cta-container::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(rgba(255, 255, 255, 0.15), transparent);

  opacity: 0.6;
}

.cta-left {
  position: relative;
  z-index: 2;
}

.cta-left span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.cta-left h2 {
  font-size: 54px;
  color: #fff;

  margin: 20px 0;
  line-height: 1.2;
}

.cta-left p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.cta-divider {
  width: 1px;
  height: 120px;

  background: rgba(255, 255, 255, 0.3);
}

.cta-right {
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 35px;

  background: #fff;
  color: #1e65ab;

  border-radius: 14px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

/* ROCKET */

.rocket-img {
  position: absolute;

  right: 40px;
  bottom: -10px;

  width: 220px;

  z-index: 1;
}

/* case study page */

/*==========================
        CASE HERO
===========================*/

.case-hero {
  padding: 120px 20px;
  padding-bottom: 2px;

  background: #fff;
}

.case-hero .container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.section-tag {
  color: #1e65ab;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;
}

.case-content h1 {
  font-size: 72px;

  line-height: 1.1;

  margin: 20px 0;
}

.case-content h1 span {
  color: #1e65ab;
}

.case-content p {
  color: #666;

  line-height: 1.9;

  max-width: 520px;

  margin-bottom: 40px;
}

.case-buttons {
  display: flex;

  align-items: center;

  gap: 30px;
}

/* Primary Button */

.primary-btn {
  padding: 18px 35px;

  background: #1e65ab;

  color: #fff;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;

  transition: 0.35s;
}

.primary-btn:hover {
  transform: translateY(-5px);
}

/* Video Button */

.video-btn {
  display: flex;

  align-items: center;

  gap: 15px;

  text-decoration: none;

  color: #111;
}

.play-btn {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  border: 2px solid #1e65ab;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #1e65ab;

  transition: 0.35s;
}

.video-btn:hover .play-btn {
  background: #1e65ab;

  color: #fff;
}

.video-btn span {
  display: block;

  color: #777;

  font-size: 14px;
}

/* IMAGE */

.case-image {
  position: relative;
}

.case-image img {
  width: 100%;
  height: 400px;

  border-radius: 30px;

  display: block;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Floating Cards */

.floating-card {
  position: absolute;

  background: #fff;

  border-radius: 20px;

  padding: 22px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  animation: float 4s ease-in-out infinite;
}

.floating-card h5 {
  color: #777;

  margin-bottom: 10px;

  font-size: 13px;
}

.floating-card h3 {
  font-size: 34px;
}

.floating-card span {
  color: #25b84d;

  font-size: 14px;

  font-weight: 600;
}

.top-card {
  top: -35px;

  left: -30px;
}

.center-card {
  bottom: 50px;

  left: -40px;
}

.right-card {
  right: -25px;

  bottom: 40px;
}

.badge-card {
  top: -20px;

  right: 30px;

  background: #1e65ab;

  color: #fff;
}

.badge-card p {
  color: #fff;

  margin-top: 5px;
}

/* our case studies */

/*==========================
      CASE STUDIES
===========================*/

.case-study-section {
  padding: 100px 20px;

  background: #fff;
}

.case-study-section .container {
  max-width: 1300px;

  margin: auto;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 54px;

  margin-top: 15px;
}

.section-heading h2 span {
  color: #1e65ab;
}

/* FILTER */

.case-filter {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;

  margin-bottom: 50px;
}

.case-filter button {
  padding: 14px 26px;

  border-radius: 12px;

  border: 1px solid #ddd;

  background: #fff;

  cursor: pointer;

  transition: 0.35s;

  font-weight: 600;
}

.case-filter button.active {
  background: #1e65ab;

  color: #fff;

  border: none;
}

.case-filter button:hover {
  background: #1e65ab;

  color: #fff;
}

/* GRID */

.case-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* CARD */

.case-card {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.case-card:hover {
  transform: translateY(-15px);
}

.case-image {
  position: relative;

  overflow: hidden;
}

/* =========================================
   CASE STUDIES
========================================= */

.case-studies-section {
  width: 100%;
  padding: 80px 5%;
  background: #ffffff;
}

.case-studies-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 55px;
}

/* =========================================
   CARD
========================================= */

.case-study-card {
  width: 100%;
  min-width: 0;

  opacity: 1;
  visibility: visible;
  transform: none;
}

.case-study-link {
  display: block;

  width: 100%;

  text-decoration: none;

  color: inherit;
}

/* =========================================
   IMAGE
========================================= */

.case-study-image-wrap {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 22px;

  background: #f3f5f7;
}

.case-study-image {
  width: 100%;
  height: auto;

  display: block;

  object-fit: initial;
}

/* =========================================
   IMAGE HOVER
========================================= */

.case-study-link:hover .case-study-image {
  transform: scale(1.04);

  filter: brightness(0.78);
}

/* =========================================
   OVERLAY
========================================= */

.case-study-overlay {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #ffffff;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);

  opacity: 0;

  transform: translateY(15px);

  transition: 0.35s ease;
}

.case-study-link:hover .case-study-overlay {
  opacity: 1;

  transform: translateY(0);
}

.case-study-overlay span:first-child {
  font-size: 16px;
  font-weight: 500;
}

.case-study-overlay span:last-child {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  color: #111111;

  font-size: 20px;
}

/* =========================================
   PROJECT NAME
========================================= */

.case-study-bottom {
  width: 100%;

  padding: 20px 5px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

.case-study-bottom h3 {
  margin: 0;

  font-size: 23px;

  line-height: 1.35;

  font-weight: 400;

  color: #222222;
}

/* =========================================
   ARROW
========================================= */

.case-study-arrow {
  flex-shrink: 0;

  font-size: 42px;

  line-height: 1;

  color: #111111;

  transition: transform 0.3s ease;
}

.case-study-link:hover .case-study-arrow {
  transform: translateX(8px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
  .case-studies-section {
    padding: 60px 4%;
  }

  .case-studies-container {
    gap: 30px;
  }

  .case-study-image-wrap {
    height: 380px;

    border-radius: 18px;
  }

  .case-study-bottom h3 {
    font-size: 20px;
  }

  .case-study-arrow {
    font-size: 34px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
  .case-studies-section {
    padding: 50px 20px;
  }

  .case-studies-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .case-study-image-wrap {
    height: 350px;

    border-radius: 17px;
  }

  .case-study-bottom {
    padding-top: 16px;
  }

  .case-study-bottom h3 {
    font-size: 19px;
  }

  .case-study-arrow {
    font-size: 30px;
  }

  .case-study-overlay {
    opacity: 1;

    transform: none;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 450px) {
  .case-studies-section {
    padding: 40px 15px;
  }

  .case-study-image-wrap {
    height: 280px;
  }

  .case-study-bottom h3 {
    font-size: 17px;
  }

  .case-study-arrow {
    font-size: 27px;
  }
}
/* =========================================
   CASE STUDY SERVICE PANELS
========================================= */

.case-study-panel {
  display: none;
  width: 100%;
}

.case-study-panel.active {
  display: block;
}

/* =========================================
   CASE STUDY CARDS GRID
========================================= */

.case-studies-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

/* =========================================
   CASE STUDY CARD
========================================= */

.case-study-card {
  width: 100%;
  min-width: 0;
}

/* =========================================
   IMAGE WRAPPER
========================================= */

/* =========================================
   IMAGE WRAPPER
========================================= */

.case-study-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
  line-height: 0;
  transition: transform 0.3s ease;
}

/* =========================================
   IMAGE - NO CROP
========================================= */

.case-study-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;

  aspect-ratio: auto;
  object-fit: contain;
}

/* =========================================
   CARD BOTTOM
========================================= */

.case-study-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 4px 0;
}

.case-study-bottom h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #111;
}

.case-study-arrow {
  font-size: 32px;
  line-height: 1;
  color: #111;
  flex-shrink: 0;
}

/* =========================================
   HOVER
========================================= */

.case-study-card:hover .case-study-image-wrap {
  transform: translateY(-5px);
}

/* =========================================
   OVERLAY
========================================= */

.case-study-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 20px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);

  color: #fff;

  opacity: 0;

  transition: opacity 0.3s ease;
}

.case-study-card:hover .case-study-overlay {
  opacity: 1;
}

/* =========================================
   SERVICE SWITCHER
========================================= */

.service-switcher {
  position: relative;
  z-index: 10;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 100%;

  margin-bottom: 45px;

  background: #fff;

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================
   SERVICE ITEM
========================================= */

.service-item {
  position: relative;

  min-height: 180px;

  padding: 25px 20px;

  border: 0;
  border-right: 2px solid #1769b0;

  background: transparent;

  color: #1769b0;

  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition: all 0.3s ease;
}

.service-item:last-child {
  border-right: none;
}

/* =========================================
   SERVICE ICON
========================================= */

.service-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* =========================================
   SERVICE TITLE
========================================= */

.service-title {
  display: block;

  font-size: 23px;
  font-weight: 500;

  margin-bottom: 8px;
}

/* =========================================
   SERVICE SUBTITLE
========================================= */

.service-subtitle {
  display: block;

  font-size: 15px;

  color: #555;
}

/* =========================================
   ACTIVE SERVICE
========================================= */

.service-item.active {
  background: #286eb0;
  color: #fff;

  border-radius: 18px;

  transform: translateY(-30px);

  min-height: 240px;

  box-shadow: 0 20px 35px rgba(40, 110, 176, 0.25);
}

.service-item.active .service-subtitle {
  color: #fff;
}

/* =========================================
   PANEL ANIMATION
========================================= */

.case-study-panel {
  animation: casePanelFade 0.4s ease;
}

@keyframes casePanelFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .service-switcher {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    border-bottom: 2px solid #1769b0;
    border-right: none;
  }

  .service-item:nth-child(odd) {
    border-right: 2px solid #1769b0;
  }

  .service-item.active {
    transform: none;
  }

  .case-studies-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .service-switcher {
    grid-template-columns: 1fr;
    border-radius: 15px;
  }

  .service-item,
  .service-item:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .service-item:last-child {
    border-bottom: none;
  }

  .service-item.active {
    min-height: 180px;
    transform: none;
    border-radius: 15px;
  }

  .service-title {
    font-size: 19px;
  }

  .service-subtitle {
    font-size: 13px;
  }

  .case-study-bottom h3 {
    font-size: 18px;
  }

  .case-study-arrow {
    font-size: 26px;
  }
}

/* =========================================
   MOVING TEXT SECTION
========================================= */

.moving-text-section {
  position: relative;

  width: 100%;

  height: 180px;

  overflow: hidden;

  background: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* =========================================
   PURPLE STRIP
========================================= */

.moving-text-strip {
  position: relative;

  width: 110%;

  height: 75px;

  background: #432681;

  transform: rotate(-2deg);

  display: flex;

  align-items: center;

  overflow: hidden;

  border-top: 6px solid #864cff;

  border-bottom: 6px solid #864cff;

  box-sizing: border-box;
}

/* =========================================
   MOVING TRACK
========================================= */

.moving-text-track {
  display: flex;

  align-items: center;

  width: max-content;

  flex-shrink: 0;

  animation: textMarquee 22s linear infinite;

  will-change: transform;
}

/* =========================================
   TEXT ITEM
========================================= */

.moving-text-item {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0 58px;

  color: #ffffff;

  font-size: 19px;

  font-weight: 400;

  white-space: nowrap;
}

/* =========================================
   STAR
========================================= */

.moving-text-item span {
  display: inline-block;

  white-space: nowrap;
}

.moving-text-item:nth-child(even) span {
  color: #9b63ff;

  font-size: 25px;

  line-height: 1;
}

/* =========================================
   MARQUEE ANIMATION
========================================= */

@keyframes textMarquee {
  0% {
    transform: translateX(0);
  }

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

/* =========================================
   HOVER PAUSE
========================================= */

.moving-text-strip:hover .moving-text-track {
  animation-play-state: paused;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .moving-text-section {
    height: 150px;
  }

  .moving-text-strip {
    height: 68px;

    border-top-width: 5px;

    border-bottom-width: 5px;
  }

  .moving-text-item {
    padding: 0 42px;

    font-size: 17px;
  }

  .moving-text-item:nth-child(even) span {
    font-size: 22px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .moving-text-section {
    height: 125px;
  }

  .moving-text-strip {
    width: 120%;

    height: 58px;

    transform: rotate(-2.5deg);

    border-top-width: 4px;

    border-bottom-width: 4px;
  }

  .moving-text-item {
    padding: 0 28px;

    font-size: 14px;
  }

  .moving-text-item:nth-child(even) span {
    font-size: 18px;
  }
}

.case-image img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.5s;
}

.case-card:hover img {
  transform: scale(1.08);
}

.case-icon {
  position: absolute;

  left: 20px;

  bottom: 20px;

  width: 55px;

  height: 55px;

  border-radius: 15px;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #1e65ab;

  font-size: 22px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.website-preview {
  height: 650px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.website-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.website-preview:hover img {
  transform: translateY(calc(-100% + 650px));
}

.case-content {
  padding: 28px;
}

.case-content span {
  font-size: 13px;

  color: #777;

  letter-spacing: 1px;

  font-weight: 600;
}

.case-content h3 {
  margin: 15px 0;

  font-size: 32px;
}

.case-content p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 25px;
}

.case-result {
  display: flex;

  justify-content: space-between;

  margin-bottom: 25px;

  padding-top: 20px;

  border-top: 1px solid #eee;
}

.case-result strong {
  display: block;

  color: #16b64f;

  font-size: 22px;
}

.case-result small {
  color: #777;
}

.case-content a {
  text-decoration: none;

  color: #1e65ab;

  font-weight: 600;
}

/*==============================
        Case Studies Section
===============================*/

.case-study-card {
  position: relative;
  margin-bottom: 30px;
}

.case-study-card .inner-box {
  position: relative;
}

/*==============================
        Image
===============================*/

.case-study-card .image-box {
  position: relative;
  overflow: hidden;
  height: 300px;
  border: 8px solid #16243e;
  border-radius: 20px;
  background: #fff;
}

.case-study-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.case-study-card:hover .image-box img {
  transform: scale(1.06);
}

/*==============================
        Content
===============================*/

.case-study-card .content-box {
  position: relative;
  background: #fff;
  margin: -80px 14px 0;
  padding: 50px 35px 30px;
  border-radius: 18px;
  border: 1px dashed #d1d5db;
  z-index: 2;
  transition: 0.35s;
  min-height: 290px;
}

.case-study-card:hover .content-box {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/*==============================
        Orange Badge
===============================*/

.case-study-card .icon-box {
  position: absolute;
  left: 30px;
  top: -25px;
}

.case-study-card .icon {
  width: auto;
  height: auto;
  padding: 12px 24px;
  background: #f55b06;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.case-study-card .icon br {
  display: block;
}

/*==============================
        Heading
===============================*/

.case-study-card .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #16243e;
}

.case-study-card .title a {
  color: #16243e;
  text-decoration: none;
  transition: 0.3s;
}

.case-study-card .title a:hover {
  color: #ff5a00;
}

/*==============================
        Divider
===============================*/

.case-study-card .title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-top: 15px;
}

/*==============================
        Text
===============================*/

.case-study-card .text {
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin-bottom: 20px;
}

/*==============================
        Button
===============================*/

.case-study-card .read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #16243e;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 15px;
}

.case-study-card .read-more i {
  width: 75px;
  height: 45px;
  background: #f55b06;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.case-study-card .read-more:hover {
  color: #ff5a00;
}

.case-study-card .read-more:hover i {
  background: #16243e;
}

/*==============================
        Owl Carousel
===============================*/

.case-studies-section .owl-stage {
  display: flex;
}

.case-studies-section .owl-item {
  display: flex;
  height: auto;
}

.case-studies-section .case-study-card {
  width: 100%;
}

/*==============================
        Responsive
===============================*/

@media (max-width: 1199px) {
  .case-study-card .content-box {
    padding: 75px 30px 35px;
  }

  .case-study-card .icon-box {
    left: 30px;
  }
}

@media (max-width: 991px) {
  .case-studies-section {
    padding: 80px 0;
  }

  .case-studies-section .sec-title h2 {
    font-size: 34px;
  }

  .case-study-card .content-box {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .case-studies-section .sec-title h2 {
    font-size: 30px;
  }

  .case-studies-section .sec-title p {
    font-size: 15px;
    line-height: 28px;
  }

  .case-study-card .image-box {
    height: 240px;
  }

  .case-study-card .content-box {
    margin: -70px 10px 0;
    padding: 70px 25px 30px;
  }

  .case-study-card .title {
    font-size: 24px;
    line-height: 34px;
  }

  .case-study-card .text {
    font-size: 16px;
    line-height: 30px;
  }

  .case-study-card .read-more {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .case-studies-section {
    padding: 60px 0;
  }

  .case-study-card .icon {
    width: 120px;
    height: 70px;
    font-size: 14px;
  }

  .case-study-card .icon-box {
    left: 20px;
  }

  .case-study-card .content-box {
    padding: 65px 20px 25px;
  }
}
