/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --blue: #10059F;
  --blue-mid: #2415C0;
  --pink: #FF3EB5;
  --pink-light: rgba(255, 62, 181, 0.12);
  --blue-light: rgba(16, 5, 159, 0.08);
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e8eaf0;
  --surface: #f7f8ff;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--pink);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid var(--border);
  border-top-color: var(--pink);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 0.8s linear infinite;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--blue);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(16, 5, 159, 0.3);
}

.back-to-top i {
  font-size: 22px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--pink);
  box-shadow: 0 4px 20px rgba(255, 62, 181, 0.35);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.4s;
  z-index: 997;
  padding: 8px 0;
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16, 5, 159, 0.08);
  box-shadow: 0 4px 30px rgba(16, 5, 159, 0.08);
  padding: 10px 0;
}

#header.header-inner-pages {
  background: var(--blue);
}

#header.header-inner-pages.header-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16, 5, 159, 0.08);
  box-shadow: 0 4px 30px rgba(16, 5, 159, 0.08);
}

#header.header-inner-pages.header-scrolled .navbar a,
#header.header-inner-pages.header-scrolled .navbar a:focus {
  color: var(--text);
}

#header.header-inner-pages.header-scrolled .navbar a:hover,
#header.header-inner-pages.header-scrolled .navbar .active,
#header.header-inner-pages.header-scrolled .navbar li:hover > a {
  color: var(--blue);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--pink);
}

#header .logo img {
  max-height: 80px;
}

@media (max-width: 991px) {
  #header .logo img {
    max-height: 64px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu — Desktop
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 28px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 9px 22px;
  margin-left: 28px;
  border-radius: 50px;
  color: #fff;
  font-size: 17px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  font-weight: 600;
  transition: all 0.3s;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}

/* scrolled state — nav on white bg */
#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  color: #444;
}


#header.header-scrolled .navbar a:hover,
#header.header-scrolled .navbar .active,
#header.header-scrolled .navbar li:hover > a {
  color: var(--blue);
}

#header.header-scrolled .navbar .getstarted,
#header.header-scrolled .navbar .getstarted:focus {
  border-color: var(--pink);
  color: var(--pink);
  background: transparent;
}

#header.header-scrolled .navbar .getstarted:hover {
  background: var(--pink);
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(16, 5, 159, 0.12);
  transition: 0.3s;
  border-radius: 12px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #444;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--blue);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Navigation Menu — Mobile
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

#header.header-scrolled .mobile-nav-toggle {
  color: var(--blue);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(16, 5, 159, 0.97);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  z-index: 999;
  padding-bottom: 12px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: static;
  margin: 60px 15px 0 15px;
  padding: 6px 0;
  border-radius: 16px;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 8px 20px;
  font-size: 15px;
  color: var(--blue);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--pink);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #f8f9ff;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--pink);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 55% 60% at 90% 15%, rgba(255, 62, 181, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 65% 70% at 5% 85%, rgba(255, 62, 181, 0.12) 0%, transparent 60%),
    linear-gradient(145deg, #0d05a8 0%, #1510cc 40%, #2218d4 70%, #1a10be 100%);
}

/* Subtle dot grid overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

#hero .container {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

#hero h1 {
  margin: 0 0 18px 0;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1px;
}

#hero h1 span {
  color: var(--pink);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Open Sans", sans-serif;
  max-width: 520px;
}

#hero .hero-tagline {
  color: var(--pink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 36px;
  font-family: "Jost", sans-serif;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.3s;
  margin: 10px 0 0 0;
  color: var(--blue);
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#hero .btn-get-started:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 62, 181, 0.35);
}

#hero .animated {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}

#hero .hero-img img {
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

@media (max-width: 991px) {
  #hero {
    min-height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
    margin-top: 40px;
  }

  #hero .hero-img img {
    width: 60%;
  }

  #hero h2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #hero .d-flex {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    font-size: 18px;
    margin-bottom: 32px;
  }

  #hero .hero-img img {
    width: 75%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 85%;
  }

  #hero .btn-get-started {
    padding: 12px 28px;
  }
}

@keyframes up-down {
  0%   { transform: translateY(12px); }
  100% { transform: translateY(-12px); }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 90px 0;
  overflow: hidden;
}

.section-bg {
  background: var(--surface);
}

.section-title {
  text-align: center;
  padding-bottom: 48px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 1px;
  background: var(--border);
  bottom: 1px;
  left: calc(50% - 50px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  height: 3px;
  background: var(--pink);
  bottom: 0;
  left: calc(50% - 18px);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Clients / Technology Partners
--------------------------------------------------------------*/
.clients {
  padding: 48px 0;
  text-align: center;
}

.clients .section-title {
  padding-bottom: 28px;
}

.clients img {
  max-width: 75%;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 10px 0;
  filter: grayscale(100%) opacity(0.45);
}

.clients img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 55%;
    max-height: 48px;
  }
}

/*--------------------------------------------------------------
# About Us / Who We Are
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--blue);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.about .content ul li b {
  color: var(--text);
}

.about .content ul li + li {
  margin-top: 12px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--pink);
  line-height: 1;
}

.about .content p {
  color: var(--muted);
  line-height: 1.75;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s;
  line-height: 1;
  color: #fff;
  margin-top: 16px;
  background: var(--blue);
  border: 2px solid var(--blue);
}

.about .content .btn-learn-more:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255, 62, 181, 0.3);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  background: #fff;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 5, 159, 0.03) 0%, rgba(255, 62, 181, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.services .icon-box:hover::before {
  opacity: 1;
}

.services .icon-box .icon {
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  border-radius: 14px;
  transition: all 0.3s;
}

.services .icon-box .icon i {
  color: var(--blue);
  font-size: 28px;
  transition: 0.3s;
  line-height: 0;
}

.services .icon-box h4 {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
}

.services .icon-box h4 a {
  color: var(--text);
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 0;
  color: var(--muted);
}

.services .icon-box:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(16, 5, 159, 0.1);
}

.services .icon-box:hover .icon {
  background: var(--pink-light);
}

.services .icon-box:hover .icon i {
  color: var(--pink);
}

.services .icon-box:hover h4 a {
  color: var(--pink);
}

/*--------------------------------------------------------------
# Pillars
--------------------------------------------------------------*/
.pillars {
  padding: 60px 0;
  background: #fff;
}

.pillar-box {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
}

.pillar-box:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 62, 181, 0.1);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pillar-icon i {
  font-size: 32px;
  color: var(--blue);
}

.pillar-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.pillar-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Why Us / Why Partner
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 80px 0 80px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 38px;
  color: var(--text);
  line-height: 1.3;
}

.why-us .content h3 strong {
  color: var(--blue);
  font-weight: 700;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 480px;
  align-self: flex-start;
}

.why-us .accordion-list {
  padding: 0 80px 60px 80px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 12px;
}

.why-us .accordion-list li {
  padding: 20px 24px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.why-us .accordion-list li:has(a:not(.collapsed)) {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(16, 5, 159, 0.08);
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
  color: var(--blue);
  text-decoration: none;
}

.why-us .accordion-list span {
  color: var(--pink);
  font-weight: 700;
  font-size: 17px;
  padding-right: 12px;
}

.why-us .accordion-list i {
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--blue);
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 12px 0 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: var(--text);
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--blue);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 90px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 62, 181, 0.07) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 5, 159, 0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.testimonials .testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.testimonials .testimonial-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 62, 181, 0.1);
}

.testimonials .testimonial-card .quote {
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  font-size: 17px;
}

.testimonials .testimonial-card .quote::before {
  content: "\201C";
  font-size: 56px;
  color: var(--pink);
  line-height: 0;
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}

.testimonials .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.testimonials .testimonial-card .author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #3d2fe8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.testimonials .testimonial-card .author .info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--blue);
}

.testimonials .testimonial-card .author .info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}

.contact .contact-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact .contact-info p i {
  color: var(--pink);
  margin-right: 8px;
}

.contact .contact-info p a {
  color: var(--muted);
  transition: color 0.3s;
}

.contact .contact-info p a:hover {
  color: var(--pink);
}

.contact .contact-form {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(16, 5, 159, 0.06);
}

.contact .contact-form .form-group {
  margin-bottom: 18px;
}

.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  border: 1.5px solid var(--border);
  padding: 13px 16px;
  width: 100%;
  transition: all 0.3s;
  background: var(--surface);
  color: var(--text);
  font-family: "Open Sans", sans-serif;
}

.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  color: #aab2c0;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 5, 159, 0.07);
}

.contact .contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact .contact-form button[type="submit"] {
  background: var(--blue);
  border: 0;
  padding: 14px 40px;
  color: #fff;
  transition: all 0.3s;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(16, 5, 159, 0.25);
}

.contact .contact-form button[type="submit"]:hover {
  background: var(--pink);
  box-shadow: 0 6px 24px rgba(255, 62, 181, 0.3);
}

.contact .contact-form .form-message {
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
  display: none;
  font-size: 14px;
}

.contact .contact-form .form-message.success {
  display: block;
  background: #edfaf3;
  color: #1a7a47;
  border: 1px solid #b5e5cc;
}

.contact .contact-form .form-message.error {
  display: block;
  background: #fff1f7;
  color: #c02567;
  border: 1px solid #f5c0d9;
}

/*--------------------------------------------------------------
# Blog Listing
--------------------------------------------------------------*/
.blog-listing {
  padding: 40px 0 80px 0;
  margin-top: 72px;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  width: 100%;
}

.blog-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 62, 181, 0.1);
}

.blog-card-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.blog-card-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: "Jost", sans-serif;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-card h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: var(--blue);
}

.blog-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.blog-card-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.blog-card-link:hover {
  color: var(--pink);
}

.blog-card-link i {
  font-size: 20px;
  transition: transform 0.3s;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

/* Blog Post Page */
.blog-post {
  padding: 60px 0 80px 0;
}

.post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--border);
}

.post-date,
.post-author {
  font-size: 14px;
  color: var(--muted);
  font-family: "Jost", sans-serif;
}

.post-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 50px;
}

.post-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.post-lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 28px;
}

.post-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-body p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-body li {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 8px;
}

.comparison-table {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.comparison-table .table {
  margin: 0;
  font-size: 15px;
}

.comparison-table .table thead th {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  border: none;
  padding: 14px 16px;
}

.comparison-table .table tbody td {
  padding: 12px 16px;
  border-color: var(--border);
  color: #374151;
}

.comparison-table .table tbody tr:last-child td {
  border-bottom: none;
}

.post-cta {
  background: var(--blue-light);
  border: 1.5px solid rgba(16, 5, 159, 0.12);
  border-radius: 16px;
  padding: 36px;
  margin: 48px 0 36px;
  text-align: center;
}

.post-cta h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.post-cta p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.post-cta .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(16, 5, 159, 0.2);
}

.post-cta .btn-get-started:hover {
  background: var(--pink);
  box-shadow: 0 6px 24px rgba(255, 62, 181, 0.3);
}

.post-nav {
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
}

.back-to-blog {
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.back-to-blog:hover {
  color: var(--pink);
}

.blog-listing .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(16, 5, 159, 0.2);
}

.blog-listing .btn-get-started:hover {
  background: var(--pink);
  box-shadow: 0 6px 24px rgba(255, 62, 181, 0.3);
  color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 8px 0;
  margin: 0;
  font-size: 13px;
}

.breadcrumbs ol a {
  color: var(--muted);
}

.breadcrumbs ol li + li {
  padding-left: 10px;
  color: var(--muted);
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ccc;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--blue);
}

#footer .footer-top {
  padding: 64px 0 32px 0;
  background: #0a0480;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}

#footer .footer-top h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 4px;
  color: var(--pink);
  font-size: 16px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 13px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--pink);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  padding: 0;
  margin-right: 6px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 28px;
  padding-bottom: 28px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.4);
}

#footer .credits a:hover {
  color: var(--pink);
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
