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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1c1629;
  background-color: #ffffff;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 2000;
  background: #1c1629;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 3px;
  background: rgba(82, 68, 159, 0.08);
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #52459f 0%, #7e6bd8 100%);
  transition: width 0.15s linear;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 120px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: #636363;
}

/* Buttons */
.cta-button {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 0.707px 0.707px -0.583px rgba(16, 0, 69, 0.17),
    0px 1.807px 1.807px -1.167px rgba(16, 0, 69, 0.17),
    0px 3.622px 3.622px -1.75px rgba(16, 0, 69, 0.16),
    0px 6.866px 6.866px -2.333px rgba(16, 0, 69, 0.15),
    0px 13.647px 13.647px -2.917px rgba(16, 0, 69, 0.13),
    0px 30px 30px -3.5px rgba(16, 0, 69, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 20px rgba(82, 68, 159, 0.3);
}

.cta-button img {
  width: 24px;
  height: 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  /* display: flex;
  align-items: center;
  gap: 0px; */
}

.logo-icon {
  margin-top: 10px;
  width: 120px;
  height: 32px;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #52459f;
  letter-spacing: -0.14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 10px;
}

.nav-link {
  color: #1c1629;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  letter-spacing: -0.14px;
}

.nav-link:hover {
  background: rgba(82, 68, 159, 0.1);
}

.nav-link.active {
  color: #52459f;
  background: rgba(82, 68, 159, 0.12);
}

/* Dropdown Navigation Styles */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(82, 68, 159, 0.15);
  padding: 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  border: 1px solid rgba(82, 68, 159, 0.08);
}

/* Desktop only: Enable hover for dropdown */
@media (min-width: 769px) {
  .nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-item-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
  }

  .dropdown-item:hover {
    background: rgba(82, 68, 159, 0.08);
    color: #52459f;
    transform: translateX(4px);
  }
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #1c1629;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: -0.14px;
}

.dropdown-item:active {
  transform: translateX(4px) scale(0.98);
}

.nav-link:focus-visible,
.dropdown-item:focus-visible,
.cta-button:focus-visible,
.hero-cta:focus-visible,
.product-cta:focus-visible,
.back-to-top:focus-visible,
.social-link:focus-visible {
  outline: 2px solid #52459f;
  outline-offset: 2px;
}

/* Add dropdown indicator arrow */
.nav-item-dropdown > .nav-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(82, 68, 159, 0.08);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1c1629;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-toggle.active span {
  background: #52459f;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav.active {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .header-content {
    padding: 12px 20px;
    max-width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 14px;
  }

  .logo {
    gap: 6px;
  }

  .logo-text {
    font-size: 13px;
  }

  .logo-icon {
    width: 120px;
    height: 32px;
  }
}

/* Mobile navbar dropdown */
.nav.active {
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(82, 68, 159, 0.1);
  box-shadow: 0 8px 24px rgba(82, 68, 159, 0.12);
  flex-direction: column;
  gap: 0;
  padding: 32px 20px;
  z-index: 1001;
  animation: slideDown 0.25s ease;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav.active .nav-list {
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 24px;
}

.nav.active .nav-link {
  display: block;
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #1c1629;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(82, 68, 159, 0.08);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.nav.active .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #52459f;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav.active .nav-link:hover {
  background: rgba(82, 68, 159, 0.04);
  color: #52459f;
  border-color: rgba(82, 68, 159, 0.15);
}

.nav.active .nav-link:hover::before {
  width: 50%;
}

.nav.active .nav-link:active {
  transform: scale(0.98);
}

/* Stagger animation for nav links */
.nav.active .nav-link:nth-child(1) {
  animation: fadeInUp 0.3s ease 0.02s backwards;
}

.nav.active .nav-link:nth-child(2) {
  animation: fadeInUp 0.3s ease 0.04s backwards;
}

.nav.active .nav-link:nth-child(3) {
  animation: fadeInUp 0.3s ease 0.06s backwards;
}

.nav.active .nav-link:nth-child(4) {
  animation: fadeInUp 0.3s ease 0.08s backwards;
}

.nav.active .nav-link:nth-child(5) {
  animation: fadeInUp 0.3s ease 0.1s backwards;
}

.nav.active .nav-link:nth-child(6) {
  animation: fadeInUp 0.3s ease 0.12s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav.active .cta-button {
  align-self: stretch;
  text-align: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  background: #52459f;
  box-shadow: 0 4px 12px rgba(82, 68, 159, 0.25);
  animation: fadeInUp 0.3s ease 0.14s backwards;
  transition: all 0.2s ease;
}

.nav.active .cta-button:hover {
  background: #6b5aad;
  box-shadow: 0 6px 16px rgba(82, 68, 159, 0.3);
}

.nav.active .cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(82, 68, 159, 0.25);
}

/* Mobile Dropdown Navigation Styles */
@media (max-width: 768px) {
  .nav-item-dropdown {
    position: relative;
  }

  .nav.active .nav-item-dropdown {
    width: 100%;
  }

  .nav.active .nav-item-dropdown > .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .nav.active .nav-item-dropdown > .nav-link::after {
    position: absolute;
    right: 20px;
    margin-left: 0;
  }

  .nav.active .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    margin-top: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav.active .nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 8px 0;
    margin-top: 8px;
  }

  .nav.active .nav-item-dropdown.active > .nav-link {
    background: rgba(82, 68, 159, 0.08);
    color: #52459f;
  }

  .nav.active .nav-item-dropdown.active > .nav-link::after {
    transform: rotate(180deg);
  }

  .nav.active .dropdown-item {
    padding: 12px 20px;
    margin: 4px 0;
    background: rgba(82, 68, 159, 0.02);
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
  }

  .nav.active .dropdown-item:hover {
    background: rgba(82, 68, 159, 0.06);
    border-left-color: #52459f;
    transform: translateX(0);
    padding-left: 24px;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile menu overlay backdrop */
body.menu-open::before {
  content: "";
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("images/herobg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 100%;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
}

.trust-strip {
  padding: 8px 0 48px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ff 100%);
  border: 1px solid rgba(82, 68, 159, 0.1);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(28, 22, 41, 0.04);
}

.trust-item h3 {
  margin-bottom: 6px;
  font-size: 1.8rem;
  color: #2f2373;
  letter-spacing: -0.03em;
}

.trust-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #5d5676;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
}

.pulser {
  width: 8px;
  height: 8px;
  background: #0d2426;
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(168, 209, 255, 0.5);
}

.pulser::before {
  content: "";
  position: absolute;
  top: -7.5px;
  left: -7.5px;
  right: -7.5px;
  bottom: -7.5px;
  background: #4d9096;
  border-radius: 50%;
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

.hero-badge span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #070033;
  letter-spacing: -0.14px;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.title-normal {
  font-weight: 400;
}

.title-highlight {
  font-weight: 600;
  font-style: italic;
  color: #52459f;
}

.hero-description {
  font-size: 16px;
  color: #636363;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.48px;
}

.hero-cta {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0px 0.707px 0.707px -0.583px rgba(16, 0, 69, 0.17),
    0px 1.807px 1.807px -1.167px rgba(16, 0, 69, 0.17),
    0px 3.622px 3.622px -1.75px rgba(16, 0, 69, 0.16),
    0px 6.866px 6.866px -2.333px rgba(16, 0, 69, 0.15),
    0px 13.647px 13.647px -2.917px rgba(16, 0, 69, 0.13),
    0px 30px 30px -3.5px rgba(16, 0, 69, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.48px;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 20px rgba(82, 68, 159, 0.3);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-wrapper {
    gap: 40px;
  }

  .hero-image img {
    max-width: 450px;
    max-height: 450px;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-image img {
    max-width: 400px;
    max-height: 400px;
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 15px;
    padding: 0;
  }

  .hero-cta {
    padding: 13px 26px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 80px 0 50px;
  }

  .hero-wrapper {
    gap: 32px;
  }

  .hero-image img {
    max-width: 300px;
    max-height: 300px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -1px;
  }

  .hero-badge {
    gap: 12px;
    padding: 6px 14px;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero-cta {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-cta img {
    width: 20px;
    height: 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card,
  .industry-card,
  .blog-card,
  .case-study-card,
  .review-card {
    padding: 16px;
  }
}

/* ============================================
 SERVICE PAGE HERO SECTION
 ============================================ */

.service-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("images/service-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 100px;
}

.service-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
}

.service-hero-badge span {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #52459f;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -2px;
  color: #1c1629;
}

.service-hero-highlight {
  font-weight: 600;
  font-style: italic;
  color: #52459f;
  display: block;
}

.service-hero-description {
  font-size: 18px;
  color: #636363;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  letter-spacing: -0.3px;
}

.service-hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service-hero-cta {
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.service-hero-cta.primary {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  color: white;
  box-shadow: 0px 0.707px 0.707px -0.583px rgba(16, 0, 69, 0.17),
    0px 1.807px 1.807px -1.167px rgba(16, 0, 69, 0.17),
    0px 3.622px 3.622px -1.75px rgba(16, 0, 69, 0.16),
    0px 6.866px 6.866px -2.333px rgba(16, 0, 69, 0.15),
    0px 13.647px 13.647px -2.917px rgba(16, 0, 69, 0.13),
    0px 30px 30px -3.5px rgba(16, 0, 69, 0.08);
}

.service-hero-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 20px rgba(82, 68, 159, 0.4);
}

.service-hero-cta.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #52459f;
  border: 2px solid #52459f;
}

.service-hero-cta.secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(82, 68, 159, 0.2);
}

.service-hero-cta img {
  width: 20px;
  height: 20px;
}

/* Service Hero Mobile Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .service-hero {
    padding: 120px 0 80px;
    min-height: 70vh;
  }

  .service-hero-title {
    font-size: 3rem;
  }

  .service-hero-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 110px 0 70px;
    min-height: auto;
  }

  .service-hero-content {
    padding: 0 20px;
  }

  .service-hero-badge span {
    font-size: 12px;
  }

  .service-hero-title {
    font-size: 2.2rem;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }

  .service-hero-description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .service-hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .service-hero-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 100px 0 60px;
  }

  .service-hero-badge {
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .service-hero-badge span {
    font-size: 11px;
  }

  .service-hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .service-hero-description {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .service-hero-cta {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-hero-cta img {
    width: 18px;
    height: 18px;
  }
}

/* End of Service Page Hero Section */

/* Section Styles */
section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 50px 0;
  }
}

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

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 32px;
  }
}

.section-badge {
  display: inline-block;
  background: #f7f5ff;
  border: 1px solid #cac3f4;
  padding: 8px 12px;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 500;
  color: #180e55;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #180e55;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-description {
  font-size: 16px;
  color: #111827;
  max-width: 540px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}

/* Services Section */
.services {
  background: linear-gradient(180deg, #fffeff 0%, #f7f5ff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px rgba(202, 195, 244, 0.2),
    0px 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.2s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(202, 195, 244, 0.3);
}

.service-icon {
  background: #ebe8ff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
  flex-shrink: 0;
}

.service-icon img {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #180e55;
  margin: 0;
}

.learn-more-card {
  background: #ebe8ff !important;
  justify-content: center;
  font-weight: 600;
  color: #180e55;
}

.learn-more-card img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .service-card {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 16px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 12px;
  }

  .service-card {
    padding: 16px;
    gap: 12px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card img {
    width: 42px;
    height: 42px;
  }

  .learn-more-card img {
    width: 16px;
    height: 16px;
  }
}

/* Industries Section */
.industries {
  background: linear-gradient(135deg, #fffeff 0%, #f7f5ff 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px rgba(202, 195, 244, 0.2),
    0px 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  position: relative;
  height: 316px;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(202, 195, 244, 0.3);
}

.industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.industry-icon {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
}

.industry-icon img {
  width: 32px;
  height: 32px;
}

.industry-arrow {
  opacity: 0.5;
}

.industry-arrow img {
  width: 24px;
  height: 24px;
}

.industry-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: #180e55;
  margin-bottom: 15px;
}

.industry-card p {
  font-size: 16px;
  color: #1f2937;
  line-height: 1.5;
  letter-spacing: -0.5px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    height: auto;
    min-height: 250px;
    padding: 20px;
  }

  .industry-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .industry-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    gap: 12px;
  }

  .industry-card {
    min-height: 240px;
    padding: 18px;
  }

  .industry-card h3 {
    font-size: 18px;
  }

  .industry-card p {
    font-size: 14px;
  }

  .industry-icon {
    padding: 10px;
  }

  .industry-icon img {
    width: 28px;
    height: 28px;
  }

  .industries-grid .learn-more-card img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Products Section */
.products {
  background: #f7f5ff;
  overflow: visible;
}

.products-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}

.products-slider-container {
  position: relative;
  overflow: hidden;
  user-select: none;
  padding: 20px 0;
  touch-action: pan-y pinch-zoom;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid #e0dce8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
  background: #52459f;
  border-color: #52459f;
  box-shadow: 0 4px 12px rgba(82, 68, 159, 0.2);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  fill: #52459f;
  transition: fill 0.2s ease;
}

.slider-arrow:hover svg {
  fill: white;
}

.slider-arrow-prev {
  left: 12px;
}

.slider-arrow-next {
  right: 12px;
}

.products-slider {
  display: flex;
  gap: 32px;
  cursor: grab;
  will-change: transform;
}

.products-slider:active {
  cursor: grabbing;
}

.products-slider .product-card {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
}

.product-card {
  background: white;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.16),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.15),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.12),
    0px 20px 20px -4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  height: 574px;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(1, 1, 13, 0.64));
  backdrop-filter: blur(2.5px);
  padding: 24px;
  color: white;
}

.product-overlay h3 {
  font-size: 22.5px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.48px;
}

.product-overlay p {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: -0.48px;
}

.product-cta {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  letter-spacing: -0.48px;
}

.product-cta:hover {
  background: white;
  color: #1c1629;
}

.product-cta img {
  width: 24px;
  height: 24px;
}

/* Slider Dots - Removed */

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .products-slider-wrapper {
    padding: 0 60px;
  }

  .products-slider .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .products-slider {
    gap: 24px;
  }

  .slider-arrow-prev {
    left: 8px;
  }

  .slider-arrow-next {
    right: 8px;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .products-slider-wrapper {
    padding: 0 60px;
  }

  .products-slider-container {
    padding: 20px 0;
    overflow-x: hidden;
  }

  .products-slider .product-card {
    flex: 0 0 100%;
  }

  .products-slider {
    gap: 16px;
  }

  .product-card {
    height: 450px;
  }

  /* Show smaller arrows on mobile */
  .slider-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .slider-arrow svg {
    width: 18px;
    height: 18px;
  }

  .slider-arrow-prev {
    left: 8px;
  }

  .slider-arrow-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .products-slider-wrapper {
    padding: 0 50px;
  }

  .products-slider-container {
    padding: 15px 0;
  }

  .products-slider .product-card {
    flex: 0 0 100%;
  }

  .products-slider {
    gap: 12px;
  }

  .product-card {
    height: 400px;
  }

  .product-overlay {
    padding: 20px;
  }

  .product-overlay h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .product-overlay p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow svg {
    width: 16px;
    height: 16px;
  }

  .slider-arrow-prev {
    left: 6px;
  }

  .slider-arrow-next {
    right: 6px;
  }
}

/* Service Cards Section */
.service-cards-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7f5ff 100%);
  padding: 100px 0;
}

.service-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-cards-section .service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.service-cards-section .service-card:hover {
  transform: none;
}

.service-card-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(202, 195, 244, 0.4),
    0px 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.6) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1.5px solid rgba(120, 107, 192, 0.3);
}

.service-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(82, 68, 159, 0.15) 0%,
    rgba(120, 107, 192, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.service-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.service-cards-section .service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 0 24px;
}

.service-card-content h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #180e55;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.service-card-content p {
  font-size: 17px;
  color: #636363;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

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

.service-features li {
  font-size: 16px;
  color: #1c1629;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  letter-spacing: -0.3px;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  border-radius: 50%;
  box-shadow: 0px 2px 8px rgba(82, 68, 159, 0.3);
}

.service-features li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 5px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.service-card-reverse {
  direction: ltr;
}

.service-card-reverse .service-card-image {
  order: 2;
}

.service-card-reverse .service-card-content {
  order: 1;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .service-cards-section {
    padding: 80px 0;
  }

  .service-cards-grid {
    gap: 48px;
  }

  .service-cards-section .service-card {
    gap: 36px;
  }

  .service-card-content h3 {
    font-size: 2rem;
  }

  .service-card-content p {
    font-size: 16px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-cards-section {
    padding: 60px 0;
  }

  .service-cards-grid {
    gap: 48px;
  }

  .service-cards-section .service-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-card-image {
    order: 1 !important;
  }

  .service-card-content {
    order: 2 !important;
    padding: 0 16px;
  }

  .service-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .service-card-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .service-features li {
    font-size: 15px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .service-cards-section {
    padding: 50px 0;
  }

  .service-cards-grid {
    gap: 40px;
  }

  .service-cards-section .service-card {
    gap: 24px;
  }

  .service-card-content {
    padding: 0 12px;
  }

  .service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .service-card-content p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .service-features li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 28px;
  }

  .service-features li::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }

  .service-features li::after {
    left: 5px;
    top: 3px;
    font-size: 11px;
  }
}

/* Knowledge Center Section */
.knowledge-center {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  position: relative;
}

.knowledge-center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(246, 241, 252, 1) 0%,
    rgba(246, 241, 252, 0) 70%
  );
  z-index: 1;
}

.knowledge-center .container {
  position: relative;
  z-index: 2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.blog-card {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 6px 12px 0px rgba(202, 195, 244, 0.3),
    0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(202, 195, 244, 0.3);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  font-size: 22.5px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 6px;
  letter-spacing: -0.48px;
}

.blog-content p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
  letter-spacing: -0.48px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-time {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #786bc0;
  letter-spacing: -0.32px;
}

.blog-meta img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-image {
    height: 220px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .blog-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    gap: 12px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 14px;
  }
}

/* Case Studies Section */
.case-studies {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  position: relative;
}

/* Temporary: hide case studies section until it is ready to be republished */
.case-studies {
  display: none;
}

.case-studies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(246, 241, 252, 1) 0%,
    rgba(246, 241, 252, 0) 70%
  );
  z-index: 1;
}

.case-studies .container {
  position: relative;
  z-index: 2;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 24px auto;
}

.case-study-card {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border: 1px solid #cac3f4;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 24px rgba(202, 195, 244, 0.4);
}

.case-study-card h3 {
  font-size: 22.5px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.48px;
}

.case-study-card p {
  font-size: 16px;
  color: #1c1629;
  line-height: 1.6;
  margin-bottom: 0;
  letter-spacing: -0.48px;
}

.case-study-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.5;
}

.case-study-arrow img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-study-card {
    height: auto;
    min-height: 180px;
    padding: 28px 20px;
  }

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

  .case-study-card p {
    font-size: 15px;
  }

  .overline {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .case-studies-grid {
    gap: 12px;
  }

  .case-study-card {
    min-height: 170px;
    padding: 24px 18px;
  }

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

  .case-study-card p {
    font-size: 14px;
  }
}

/* Customer Reviews Section */
.customer-reviews {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  position: relative;
}

/* Temporary: hide customer reviews and review cards section */
.customer-reviews {
  display: none;
}

.customer-reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(246, 241, 252, 1) 0%,
    rgba(246, 241, 252, 0) 70%
  );
  z-index: 1;
}

.customer-reviews .container {
  position: relative;
  z-index: 2;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 24px rgba(202, 195, 244, 0.4);
}

.review-header {
  margin-bottom: 24px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.16),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.15),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.12),
    0px 20px 20px -4px rgba(0, 0, 0, 0.04);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details h4 {
  font-size: 22.5px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 9px;
  letter-spacing: -0.48px;
}

.reviewer-details p {
  font-size: 16px;
  color: #1c1629;
  margin: 0;
  letter-spacing: -0.48px;
}

.review-content {
  border-top: 2px solid #ebeaf6;
  padding-top: 24px;
}

.review-content p {
  font-size: 16px;
  color: #1c1629;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.48px;
}

.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.reviewer-avatars {
  display: flex;
  gap: -13px;
}

.reviewer-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -13px;
  box-shadow: 0px 0px 0px 2px #ffffff,
    0px 0.707px 0.707px -0.583px rgba(16, 49, 77, 0.21),
    0px 1.807px 1.807px -1.167px rgba(16, 49, 77, 0.2),
    0px 3.622px 3.622px -1.75px rgba(16, 49, 77, 0.2),
    0px 6.866px 6.866px -2.333px rgba(16, 49, 77, 0.18),
    0px 13.647px 13.647px -2.917px rgba(16, 49, 77, 0.16),
    0px 30px 30px -3.5px rgba(16, 49, 77, 0.09);
}

.stats-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #1c1629;
  letter-spacing: -0.48px;
}

.stats-number {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 20px;
  }

  .reviewer-avatar {
    width: 64px;
    height: 64px;
  }

  .reviewer-details h4 {
    font-size: 20px;
  }

  .reviewer-details p {
    font-size: 15px;
  }

  .review-content p {
    font-size: 15px;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .reviews-container {
    gap: 12px;
  }

  .review-card {
    padding: 18px;
  }

  .reviewer-avatar {
    width: 56px;
    height: 56px;
  }

  .reviewer-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .reviewer-details p {
    font-size: 14px;
  }

  .review-content {
    padding-top: 18px;
  }

  .review-content p {
    font-size: 14px;
  }

  .stats-text {
    font-size: 14px;
  }

  .stats-number {
    font-size: 13px;
  }
}

/* Final CTA Section */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f5ff 0%, #cac3f4 100%);
  border-radius: 24px;
  margin: 80px 40px;
  box-shadow: 0px 20px 40px rgba(202, 195, 244, 0.3);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

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

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 40px;
  position: relative;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #1c1629;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
  line-height: 1.1;
}

.cta-content p {
  font-size: 18px;
  color: #1c1629;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: -0.5px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button specific styling for final CTA */
.final-cta .cta-button {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 20px rgba(82, 68, 159, 0.3),
    0px 0px 0px 1px rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.final-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 30px rgba(82, 68, 159, 0.4),
    0px 0px 0px 1px rgba(255, 255, 255, 0.3);
}

.final-cta .cta-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .final-cta {
    margin: 60px 16px;
    border-radius: 20px;
  }

  .cta-content {
    padding: 60px 24px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .final-cta .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .final-cta {
    margin: 40px 12px;
    border-radius: 16px;
  }

  .cta-content {
    padding: 50px 20px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .cta-content p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .final-cta .cta-button {
    padding: 12px 24px;
    font-size: 14px;
    gap: 8px;
  }

  .final-cta .cta-button img {
    width: 20px;
    height: 20px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #f6f1fc 0%, #ffffff 100%);
  padding: 60px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(28, 22, 41, 0.1);
}

.footer-left {
  flex: 1;
  max-width: 800px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 39px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #1c1629;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  letter-spacing: -0.48px;
}

.footer-nav a:hover {
  color: #52459f;
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border-radius: 100px;
  box-shadow: 0px 0.796px 0.796px -1px rgba(0, 0, 0, 0.04),
    0px 2.415px 2.415px -2px rgba(0, 0, 0, 0.04),
    0px 6.383px 6.383px -3px rgba(0, 0, 0, 0.03),
    0px 20px 20px -4px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(202, 195, 244, 0.3);
}

.social-link img {
  width: 24px;
  height: 24px;
}

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

.footer-bottom p {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1c1629;
  margin: 0;
  letter-spacing: -0.32px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1100;
  border: 0;
  border-radius: 100px;
  background: #1c1629;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  box-shadow: 0 16px 30px rgba(28, 22, 41, 0.25);
}

.back-to-top img {
  width: 14px;
  height: 14px;
  transform: rotate(-90deg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #2f2373;
}

.contact-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28, 22, 41, 0.45);
  padding: 20px;
}

.contact-popup-modal.open {
  display: flex;
}

.contact-popup-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(82, 68, 159, 0.12);
  border-radius: 16px;
  padding: 22px 20px 18px;
  box-shadow: 0 20px 42px rgba(28, 22, 41, 0.22);
  position: relative;
  text-align: center;
}

.contact-popup-card h3 {
  font-size: 1.35rem;
  color: #1c1629;
  margin-bottom: 8px;
}

.contact-popup-card p {
  margin-bottom: 8px;
  color: #4f4668;
}

.contact-popup-card a {
  color: #52459f;
  font-weight: 600;
  text-decoration: none;
}

.contact-popup-card a:hover {
  text-decoration: underline;
}

.contact-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  color: #71678f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

body.contact-popup-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 8px 0 30px;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-item {
    padding: 14px 12px;
  }

  .trust-item h3 {
    font-size: 1.35rem;
  }

  .trust-item p {
    font-size: 0.85rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 16px;
    padding: 10px 12px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    gap: 16px;
    justify-content: center;
  }

  .footer {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    align-items: center;
    text-align: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-nav a {
    text-align: center;
    padding: 8px 0;
  }

  .footer-social {
    gap: 16px;
    justify-content: center;
    margin-top: 8px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #52459f;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .industry-card,
  .blog-card,
  .case-study-card,
  .review-card {
    border: 2px solid #1c1629;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-icon {
    animation: none;
  }
}

/* Industry Section CSS */

.industry-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("images/healthcareBg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 100px;
  color: white;
}

.industry-hero-description {
  color: #e5e7eb;
}

/* Industry Info Grid Section */
.industry-info-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7f5ff 100%);
  padding: 100px 0;
  position: relative;
}

.industry-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 32px 24px 32px 24px;
  border: 1px solid var(--Brand-Colours-Brand-50, #cac3f4);
  background: linear-gradient(
      0deg,
      var(--Brand-Colours-Brand-30, #f7f5ff) 0%,
      var(--Brand-Colours-Brand-30, #f7f5ff) 100%
    ),
    var(--white-black-white, #fff);
}

.industry-info-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #180e55;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.industry-info-content > p {
  font-size: 18px;
  color: #636363;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-feature-item {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(202, 195, 244, 0.3);
  box-shadow: 0px 4px 12px rgba(202, 195, 244, 0.2);
  transition: all 0.3s ease;
}

.info-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(202, 195, 244, 0.35);
  border-color: rgba(120, 107, 192, 0.5);
}

.info-feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #52459f;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.info-feature-item p {
  font-size: 16px;
  color: #636363;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.3px;
}

.industry-info-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

.visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0px 10px 30px rgba(82, 68, 159, 0.2));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .industry-info-section {
    padding: 80px 0;
  }

  .industry-info-grid {
    gap: 60px;
  }

  .industry-info-content h2 {
    font-size: 2.2rem;
  }

  .industry-info-content > p {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .info-features {
    gap: 24px;
  }

  .visual-wrapper {
    max-width: 400px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .industry-info-section {
    padding: 60px 0;
  }

  .industry-info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .industry-info-visual {
    order: -1;
  }

  .industry-info-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .industry-info-content > p {
    font-size: 16px;
    margin-bottom: 32px;
    text-align: center;
  }

  .info-features {
    gap: 20px;
  }

  .info-feature-item {
    padding: 20px;
  }

  .info-feature-item h3 {
    font-size: 1.15rem;
  }

  .info-feature-item p {
    font-size: 15px;
  }

  .visual-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .industry-info-section {
    padding: 50px 0;
  }

  .industry-info-grid {
    gap: 40px;
  }

  .industry-info-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .industry-info-content > p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .info-features {
    gap: 16px;
  }

  .info-feature-item {
    padding: 18px;
  }

  .info-feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .info-feature-item p {
    font-size: 14px;
  }

  .visual-wrapper {
    max-width: 280px;
  }
}

/* Industry Section CSS */

.product-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fffeff 0%, #f7f5ff 100%);
  padding: 140px 0 100px;
}

/* Blogs Page  */
.blogs-hero-section {
  padding: 100px 0px 0px 0px;
  position: relative;
}

.blogs-info-grid {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 100px 100px;
  border: 1px solid var(--Brand-Colours-Brand-50, #cac3f4);
  background-image: url("images/Blogshero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blogs-info-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.blogs-info-content > p {
  font-size: 18px;
  color: #f9fafb;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

/* ============================================
 Blog Detail Page
 ============================================ */

/* Blog Detail Hero Section */
.blog-detail-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f7f5ff 100%);
  padding: 120px 0 60px;
  position: relative;
}

.blog-detail-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-meta-info span {
  font-size: 14px;
  font-weight: 500;
  color: #5e5a75;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(202, 195, 244, 0.2);
}

.blog-category {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%) !important;
  color: white !important;
}

.blog-detail-title {
  font-size: 3rem;
  font-weight: 700;
  color: #180e55;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.blog-detail-excerpt {
  font-size: 1.25rem;
  color: #636363;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.blog-author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #ebe8ff 0%, #f7f5ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0px 4px 12px rgba(202, 195, 244, 0.3);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.author-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #180e55;
  margin: 0 0 4px 0;
}

.author-details p {
  font-size: 14px;
  color: #636363;
  margin: 0;
}

/* Blog Content Section */
.blog-content-section {
  background: #ffffff;
  padding: 60px 0 100px;
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-article {
  max-width: 100%;
}

.blog-featured-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0px 12px 40px rgba(202, 195, 244, 0.4),
    0px 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-text-content {
  margin-bottom: 48px;
}

.blog-text-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #180e55;
  margin: 40px 0 20px;
  line-height: 1.3;
  letter-spacing: -1px;
}

.blog-text-content h2:first-child {
  margin-top: 0;
}

.blog-text-content p {
  font-size: 1.125rem;
  color: #1c1629;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.blog-list li {
  font-size: 1.125rem;
  color: #1c1629;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}

.blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  border-radius: 50%;
  box-shadow: 0px 2px 8px rgba(82, 68, 159, 0.3);
}

.blog-list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 9px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.blog-quote {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  border-left: 4px solid #52459f;
  padding: 32px 40px;
  margin: 40px 0;
  border-radius: 12px;
}

.blog-quote p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #180e55;
  line-height: 1.6;
  margin: 0 0 12px 0;
  font-style: italic;
}

.blog-quote cite {
  font-size: 1rem;
  color: #636363;
  font-style: normal;
  font-weight: 500;
}

.blog-secondary-image {
  border-radius: 24px;
  overflow: hidden;
  margin: 48px 0;
  box-shadow: 0px 12px 40px rgba(202, 195, 244, 0.4),
    0px 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-secondary-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  text-align: center;
  font-size: 0.95rem;
  color: #636363;
  padding: 16px;
  background: rgba(246, 241, 252, 0.3);
  margin: 0;
  font-style: italic;
}

.blog-cta-box {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  padding: 48px;
  border-radius: 20px;
  text-align: center;
  margin-top: 48px;
  box-shadow: 0px 12px 32px rgba(82, 68, 159, 0.4);
}

.blog-cta-box h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
}

.blog-cta-box p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px 0;
}

.blog-cta-box .cta-button {
  background: white;
  color: #52459f;
  font-weight: 600;
}

.blog-cta-box .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(255, 255, 255, 0.3);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: linear-gradient(
    135deg,
    rgba(246, 241, 252, 0.4) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1.5px solid rgba(202, 195, 244, 0.4);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #180e55;
  margin: 0 0 24px 0;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-post {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.related-post:hover {
  transform: translateX(4px);
}

.related-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.related-post-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #180e55;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.related-post-content span {
  font-size: 0.875rem;
  color: #636363;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(202, 195, 244, 0.3);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #52459f;
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-tag:hover {
  background: linear-gradient(135deg, #52459f 0%, #786bc0 100%);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design for Blog Detail Page */

@media (max-width: 1024px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .blog-detail-title {
    font-size: 2.5rem;
  }

  .blog-detail-excerpt {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .blog-detail-hero {
    padding: 100px 0 40px;
  }

  .blog-detail-title {
    font-size: 2rem;
  }

  .blog-detail-excerpt {
    font-size: 1rem;
  }

  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-text-content h2 {
    font-size: 1.75rem;
  }

  .blog-text-content p,
  .blog-list li {
    font-size: 1rem;
  }

  .blog-quote p {
    font-size: 1.25rem;
  }

  .blog-cta-box {
    padding: 36px 24px;
  }

  .blog-cta-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero {
    padding: 80px 0 30px;
  }

  .blog-meta-info {
    gap: 10px;
  }

  .blog-meta-info span {
    font-size: 12px;
    padding: 4px 12px;
  }

  .blog-detail-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .blog-detail-excerpt {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-details h4 {
    font-size: 14px;
  }

  .author-details p {
    font-size: 12px;
  }

  .blog-content-section {
    padding: 40px 0 60px;
  }

  .blog-featured-image,
  .blog-secondary-image {
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .blog-text-content {
    margin-bottom: 32px;
  }

  .blog-text-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
  }

  .blog-text-content p,
  .blog-list li {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .blog-list li {
    padding-left: 30px;
  }

  .blog-quote {
    padding: 24px 20px;
    margin: 32px 0;
  }

  .blog-quote p {
    font-size: 1.125rem;
  }

  .blog-cta-box {
    padding: 28px 20px;
    margin-top: 32px;
  }

  .blog-cta-box h3 {
    font-size: 1.25rem;
  }

  .blog-cta-box p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .sidebar-widget {
    padding: 24px;
  }

  .related-post img {
    width: 70px;
    height: 70px;
  }
}
