/*
Theme Name: Elovian Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/* --- ELOVIAN COLOR PALETTE & VARIABLES --- */
:root {
  --el-purple-deep: #3D0F5E;
  --el-purple: #6B3E92;
  --el-violet: #8B5AA8;
  --el-teal: #1E9E97;
  --el-teal-deep: #136F6A;
  --el-teal-soft: #7FCBC5;
  --el-bg-alt: #F3EEF7;
  --el-line: #E4DAEC;
  --el-ink-soft: #5B4E6B;

  --violet:#8B5AA8;
    --bg:#FCFAFD;
  --bg-alt:#F3EEF7;
  --surface:#FFFFFF;
  --line:#E4DAEC;
  --ink:#241832;
  --ink-soft:#5B4E6B;
    --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
  --shadow:0 20px 50px -25px rgba(61,15,94,0.35);

  --font-display:'Poppins','Segoe UI',system-ui,sans-serif;
  --font-body:'Karla','Segoe UI',system-ui,sans-serif;
}

/* Eyebrows */
.el-eyebrow {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--el-teal-deep);
  margin-bottom: 0.8rem;
  display: block;
}

/* Blob Background Shape */
.blob-container {
  position: relative;
}
.blob-container::before {
  content: '';
  position: absolute;
  inset: -6%;
  background: linear-gradient(150deg, var(--el-violet) 0%, var(--el-teal) 100%);
  border-radius: 38% 62% 61% 39% / 42% 40% 60% 58%;
  opacity: 0.85;
  z-index: 0;
}
.blob-container .img-inner {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(61,15,94,0.35);
}
.header-button-2 .header-button a{
  ackground: var(--el-teal) !important;
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(30, 158, 151, 0.55);
     display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.85rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
    background: var(--el-teal) !important;
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(30, 158, 151, 0.55);
}
.btn-ghost {
    background: transparent;
    border-color: var(--purple-deep) !important;
    color: var(--purple-deep);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.85rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Services Cards */
.el-service-card {
  background: #fff;
  border: 1px solid var(--el-line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.el-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(61,15,94,0.25);
}

/* Process Step Badges */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--el-teal);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}

/* Value Tick List */
.el-value-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.el-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #241832;
  font-size: 15px;
}
.el-value-list span.tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--el-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.topbar-links {
    display: flex;
    gap: 1.4rem;
    align-items: center;
   
}
.topbar a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
     color: #EFE3F7 !important;
    font-size: 0.82rem;
    font-family: var(--font-display);
    font-weight: 500;
}
.topbar-links svg {
    width: 0.85rem;
    height: 0.85rem;
    flex: none;
}


/* Rounded Buttons */
.button.el-teal {
  background-color: var(--el-teal) !important;
  border-color: var(--el-teal) !important;
  color: #fff !important;
  border-radius: 99px !important;
}
.button.el-teal:hover {
  background-color: var(--el-teal-deep) !important;
}
.button.el-ghost {
  border: 2px solid var(--el-purple-deep) !important;
  color: var(--el-purple-deep) !important;
  background: transparent !important;
  border-radius: 99px !important;
}
.button.el-ghost:hover {
  background: var(--el-purple-deep) !important;
  color: #fff !important;
}

/* Custom Contact Form */
.el-form-wrap {
  background: #fff;
  border: 1px solid var(--el-line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 50px -25px rgba(61,15,94,0.25);
}


.service-icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--violet) 0%, var(--el-purple-deep) 100%);
    color: #fff;
    border: 3px solid var(--surface);
    box-shadow: 0 6px 16px -6px rgba(61, 15, 94, 0.5);
    position: absolute;
    left: 50%;
    top: 10.8rem;
    transform: translateX(-50%);
}
.service-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}

.step-icon-wrap {
    position: relative;
    width: 5.2rem;
    height: 5.2rem;
    margin: 0 auto 1.2rem;
}

.step-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--violet) 0%, var(--el-purple-deep) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -10px rgba(61, 15, 94, 0.55);
}
.step-num {
    position: absolute;
    bottom: -0.3rem;
    right: -0.3rem;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--el-teal);
    color: #fff;
    border: 3px solid var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.78rem;
}