:root {
    --pink: #e040d0;
    --purple: #5b3fc4;
    --violet: #7c3aed;
    --pink-light: #f472b6;
    --bg: #f8f7ff;
    --text: #1a1230;
    --muted: #6b7280;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}




/* ══════════════════════════════════════════
   SWIPE-IN ANIMATION SYSTEM
   All scroll-triggered entrance animations.
   Observer in JS adds .visible to trigger them.
══════════════════════════════════════════ */

/* Base hidden state */
.fade-up,
.swipe-left,
.swipe-right,
.swipe-up,
.swipe-down,
.swipe-scale {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Starting positions */
.fade-up    { transform: translateY(30px); }
.swipe-left { transform: translateX(-60px); }
.swipe-right{ transform: translateX(60px); }
.swipe-up   { transform: translateY(48px); }
.swipe-down { transform: translateY(-40px); }
.swipe-scale{ transform: scale(0.88); }

/* Visible (triggered) state */
.fade-up.visible,
.swipe-left.visible,
.swipe-right.visible,
.swipe-up.visible,
.swipe-down.visible,
.swipe-scale.visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
.swipe-delay-1 { transition-delay: 0.10s; }
.swipe-delay-2 { transition-delay: 0.20s; }
.swipe-delay-3 { transition-delay: 0.32s; }
.swipe-delay-4 { transition-delay: 0.44s; }
.swipe-delay-5 { transition-delay: 0.56s; }




/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */

.navbar-custom {
    background-color: #FEEAFF;
}

.menu-btn {
    background-color: #994099;
    border: none;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

.offcanvas {
    width: 250px;
}




/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Background blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle at 60% 40%, rgba(224, 64, 208, 0.18) 0%, rgba(91, 63, 196, 0.13) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: blobPulse 6s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes blobPulse {
    from { transform: scale(1) rotate(0deg); }
    to   { transform: scale(1.08) rotate(6deg); }
}

/* Hero image */
.hero .hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    display: block;
}

/* Headline */
.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--purple);
    margin-bottom: 0.2rem;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--pink), #c026d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    margin-top: 1.2rem;
}

/* Buttons */
.btn-primary-hero {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.78rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 28px rgba(180, 40, 220, 0.28);
    text-decoration: none;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(180, 40, 220, 0.38);
    color: #fff;
}

.btn-outline-hero {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: 50px;
    padding: 0.76rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline-hero:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 0.85rem;
}

/* Stats */
.stats-row {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.1rem 1.5rem;
    min-width: 130px;
    box-shadow: 0 4px 20px rgba(91, 63, 196, 0.08);
    border: 1px solid rgba(91, 63, 196, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(91, 63, 196, 0.14);
}

.stat-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .hero { padding: 60px 0 40px; }
}




/* ══════════════════════════════════════════
   GRADIENT FEATURE STRIP
══════════════════════════════════════════ */

.gradient-section {
    background: linear-gradient(90deg, #7e28829c, #e048e8a8);
    padding: 30px 0;
    min-height: 150px;
    display: flex;
    align-items: center;
}

.icon-box {
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.icon-box img {
    width: 50px;
    height: auto;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.icon-box h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.icon-box:hover { transform: translateY(-5px); }
.icon-box:hover img { transform: scale(1.1); }

@media (max-width: 768px) {
    .gradient-section { min-height: 180px; padding: 25px 0; }
    .icon-box { margin-bottom: 15px; }
    .icon-box img { width: 40px; }
    .icon-box h5 { font-size: 14px; }
}




/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */

#service {
    background: linear-gradient(to bottom, #f4f2f8, #ffffff);
    font-family: 'Segoe UI', sans-serif;
}

#service .svc-section-title {
    color: #d633c6;
    font-weight: 600;
}

#service .svc-main-heading {
    color: #5a3ec8;
    font-weight: 700;
}

#service .svc-card {
    border-radius: 20px;
    box-shadow: 10px 10px 0px #994099;
    border: 1px solid #e9d8fd;
    transition: 0.3s ease;
}

#service .svc-card:hover { transform: translateY(-5px); }

#service .svc-img {
    border-radius: 15px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

#service .svc-card-title { font-weight: 700; }

#service .svc-arrow-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

#service .svc-arrow-btn svg { transform: rotate(50deg); }

#service .svc-learn-btn {
    background: linear-gradient(to right, #7D2882, #DF48E8);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

#service .svc-learn-btn:hover {
    background: #DF48E8;
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.35);
    color: #fff;
}




/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */

#about {
    background: #f3eeff;
    padding: 40px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about .abt-wrapper {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 1100px;
    width: 100%;
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(140, 80, 220, 0.10);
}

#about .abt-wrapper::before,
#about .abt-wrapper::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #d448e8 1.5px, transparent 0.5px);
    background-size: 14px 14px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

#about .abt-wrapper::before { top: -30px; left: -30px; }
#about .abt-wrapper::after  { bottom: -30px; right: -30px; transform: rotate(180deg); }

#about .abt-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    position: relative;
    z-index: 1;
}

#about .abt-card-item {
    border-radius: 16px;
    overflow: hidden;
    min-height: 250px;
    position: relative;
}

#about .abt-card-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 16px;
}

#about .abt-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#about .abt-who-label {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    display: inline-block;
    padding-bottom: 3px;
    margin-bottom: 14px;
    position: relative;
}

#about .abt-who-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: #d946ef;
}

#about .abt-heading {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

#about .abt-heading .abt-purple { color: #7c3aed; }
#about .abt-heading .abt-pink   { color: #d946ef; }

#about .abt-body {
    font-size: clamp(13px, 1.4vw, 15px);
    color: #444;
    line-height: 1.75;
    margin-bottom: 28px;
}

#about .abt-btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #7D2882, #DF48E8);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .25s, transform .2s, box-shadow .2s;
    align-self: flex-start;
}

#about .abt-btn-learn:hover {
    background: #DF48E8;
    opacity: .88;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.35);
    color: #fff;
}

#about .abt-row-inner { position: relative; }

#about .abt-row-inner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e048e846 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 991px) {
    #about .abt-wrapper { padding: 36px 24px; }
    #about .abt-cards-grid { gap: 10px; }
    #about .abt-text { margin-top: 32px; }
}

@media (max-width: 575px) {
    #about .abt-wrapper { padding: 28px 16px; }
    #about .abt-card-item { min-height: 140px; }
    #about .abt-heading { font-size: 26px; }
}




/* ══════════════════════════════════════════
   MANAGEMENT
══════════════════════════════════════════ */

#management { background-color: #F8F7FF; }

#management .mgmt-wrapper { padding: 60px 20px 80px; }

#management .mgmt-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #5b2fa8;
    text-align: center;
    margin-bottom: 16px;
}

#management .mgmt-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #333;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
    line-height: 1.65;
}

#management .mgmt-card {
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%);
    border-top: 1px solid #994099;
    border-right: 1px solid #994099;
    border-left: 1px solid #994099;
    border-bottom: 0px solid transparent;
    border-radius: 22px;
    padding: 22px 22px 26px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

#management .mgmt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(153, 64, 153, 0.15);
}

#management .mgmt-card-middle {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 0, 255, 0.10) 100%);
    border-left: 1px solid #994099;
    border-right: 1px solid #994099;
    border-bottom: 1px solid #994099;
    border-top: 0px solid transparent;
    margin-top: 50px;
}

#management .mgmt-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, rgba(200, 160, 240, 0.55), rgba(170, 110, 220, 0.75));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(150, 80, 210, 0.18);
}

#management .mgmt-icon svg { width: 26px; height: 26px; fill: white; }

#management .mgmt-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

#management .mgmt-list { list-style: none; padding: 0; margin: 0; }

#management .mgmt-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 9px;
    font-size: 0.9rem;
    color: #222;
    line-height: 1.55;
}

#management .mgmt-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
    font-weight: 700;
}

@media (max-width: 767px) {
    #management .mgmt-card { margin-bottom: 20px; }
}




/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */

#cta .cta-inner {
    background-image: url('assets/bg1.png');
    border-radius: 10px;
    padding: 50px 60px;
    position: relative;
    overflow: visible;
    min-height: 300px;
    margin-top: 200px;
}

#cta .cta-inner p { font-size: 22px; }

#cta .cta-mail-img {
    position: absolute;
    right: 100px;
    top: -150px;
    max-width: 520px;
}

#cta .cta-book-btn {
    background: white;
    color: #994099;
    font-weight: 800;
    border-radius: 30px;
    padding: 12px 26px;
    font-size: 16px;
}

#cta .cta-book-btn:hover {
    background: #f3e0f9;
    color: #7a2080;
}

@media (max-width: 991px) {
    #cta .cta-mail-img { position: static; display: block; max-width: 320px; margin: 30px auto 0; }
    #cta .cta-inner { margin-top: 40px; padding: 40px 32px; }
}

@media (max-width: 575px) {
    #cta .cta-inner { padding: 32px 20px; }
    #cta .cta-inner h1 { font-size: 1.5rem; }
    #cta .cta-inner p { font-size: 16px; }
    #cta .cta-mail-img { max-width: 240px; }
}




/* ══════════════════════════════════════════
   SOLUTION
══════════════════════════════════════════ */

#solution {
    --sol-purple: #7c3aed;
    --sol-pink: #e040fb;
    --sol-light: #ede9fe;
    --sol-dark: #1a0b3b;
    --sol-muted: #64748b;
    --sol-card: #f8f6ff;
    padding: 90px 0 110px;
    background: #fff;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

#solution .sol-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: var(--sol-dark);
    text-align: center;
    line-height: 1.28;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

#solution .sol-headline.in { opacity: 1; transform: none; }
#solution .sol-headline .sol-pink { color: var(--sol-pink); }

#solution .sol-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
    gap: 0;
}

#solution .sol-illus-card {
    flex-shrink: 0;
    width: clamp(155px, 26vw, 230px);
    aspect-ratio: 4/3;
    background: var(--sol-card);
    border: 1.5px solid #e2d9ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 28px rgba(124, 58, 237, .08);
    transition: box-shadow .3s;
    opacity: 0;
    transform: translateX(-50px);
}

#solution .sol-illus-card.right { transform: translateX(50px); }

#solution .sol-illus-card.in {
    opacity: 1;
    transform: none !important;
    transition: opacity .7s ease, transform .7s ease, box-shadow .3s;
}

#solution .sol-illus-card:hover { box-shadow: 0 10px 40px rgba(124, 58, 237, .18); }
#solution .sol-illus-card svg { width: 75%; max-width: 130px; }

#solution .sol-line-track {
    flex: 1;
    min-width: 80px;
    max-width: 280px;
    height: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#solution .sol-line-half {
    position: absolute;
    top: 50%;
    height: 3px;
    border-radius: 2px;
    width: 0%;
    transition: width 0.75s cubic-bezier(.77, 0, .18, 1);
}

#solution .sol-line-half.sol-left-half {
    left: 0;
    background: linear-gradient(90deg, var(--sol-purple), var(--sol-pink));
    transform: translateY(-50%);
    transform-origin: left center;
}

#solution .sol-line-half.sol-right-half {
    right: 0;
    background: linear-gradient(270deg, var(--sol-purple), var(--sol-pink));
    transform: translateY(-50%);
    transform-origin: right center;
}

#solution .sol-line-half.grow { width: 50%; }

#solution .sol-meet-burst {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle, #fff 10%, var(--sol-pink) 55%, transparent 72%);
    box-shadow: 0 0 0 0 rgba(224, 64, 251, .7);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
}

#solution .sol-meet-burst.burst { animation: sol-burst-anim .65s ease forwards; }

@keyframes sol-burst-anim {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(0); box-shadow: 0 0 0 0 rgba(224, 64, 251, .8); }
    45%  { opacity: 1; transform: translate(-50%, -50%) scale(2); box-shadow: 0 0 0 14px rgba(224, 64, 251, .25); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(3); box-shadow: 0 0 0 24px rgba(224, 64, 251, 0); }
}

#solution .sol-line-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 3;
}

#solution .sol-line-dot.sol-left-dot  { left: -4px;  background: var(--sol-purple); box-shadow: 0 0 6px var(--sol-purple); }
#solution .sol-line-dot.sol-right-dot { right: -4px; background: var(--sol-pink);   box-shadow: 0 0 6px var(--sol-pink); }
#solution .sol-line-dot.show { opacity: 1; }

#solution .sol-drop-wrap {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 5;
}

#solution .sol-drop-line {
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--sol-pink), var(--sol-purple));
    border-radius: 2px;
    transition: height .5s cubic-bezier(.77, 0, .18, 1);
}

#solution .sol-drop-line.grow { height: 130px; }

#solution .sol-badge-wrap { text-align: center; margin-top: 42px; }

#solution .sol-badge-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--sol-purple), var(--sol-pink));
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(224, 64, 251, .4);
    opacity: 0;
    transform: scale(.55) translateY(-10px);
    transition: opacity .45s ease, transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

#solution .sol-badge-pill.in { opacity: 1; transform: scale(1) translateY(0); }

#solution .sol-solution-block { text-align: center; margin-top: 26px; }

#solution .sol-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--sol-dark);
    line-height: 1.18;
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .65s ease, transform .65s ease;
}

#solution .sol-title.in { opacity: 1; transform: none; }

#solution .sol-desc {
    font-size: clamp(.86rem, 1.7vw, .98rem);
    color: var(--sol-muted);
    line-height: 1.74;
    max-width: 400px;
    margin: 14px auto 0;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease .2s, transform .65s ease .2s;
}

#solution .sol-desc.in { opacity: 1; transform: none; }

@media (max-width: 600px) {
    #solution .sol-stage { flex-direction: column; align-items: center; gap: 0; }
    #solution .sol-illus-card { width: 78vw; transform: translateY(30px) !important; }
    #solution .sol-illus-card.in { transform: none !important; }
    #solution .sol-line-track { width: 3px; height: 64px; min-width: unset; max-width: unset; flex: unset; flex-direction: column; justify-content: center; }
    #solution .sol-line-half { left: 50% !important; right: unset !important; top: unset !important; transform: translateX(-50%) !important; width: 3px !important; height: 0 !important; transition: height 0.75s cubic-bezier(.77, 0, .18, 1) !important; }
    #solution .sol-line-half.sol-left-half { top: 0 !important; background: linear-gradient(180deg, var(--sol-purple), var(--sol-pink)) !important; }
    #solution .sol-line-half.sol-right-half { bottom: 0 !important; background: linear-gradient(0deg, var(--sol-purple), var(--sol-pink)) !important; }
    #solution .sol-line-half.grow { width: 3px !important; height: 50% !important; }
    #solution .sol-line-dot { left: 50% !important; right: unset !important; top: unset !important; transform: translateX(-50%) !important; }
    #solution .sol-line-dot.sol-left-dot  { top: -4px !important; }
    #solution .sol-line-dot.sol-right-dot { bottom: -4px !important; }
    #solution .sol-drop-line.grow { height: 28px; }
    #solution .sol-badge-wrap { margin-top: 28px; }
}




/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */

#testimonials {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #F8F7FF;
    padding: 60px 16px;
}

#testimonials .tst-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

#testimonials .tst-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #4c2fb7;
    margin-bottom: 48px;
}

#testimonials .tst-carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

#testimonials .tst-arrow-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #c084fc;
    background: #fff;
    color: #c084fc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    z-index: 10;
}

#testimonials .tst-arrow-btn:hover { background: #c084fc; color: #fff; transform: scale(1.08); }

#testimonials .tst-arrow-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#testimonials .tst-track-wrap { flex: 1; overflow: hidden; padding: 12px 0 24px; }

#testimonials .tst-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#testimonials .tst-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px 28px;
    box-shadow: 0 4px 24px rgba(100, 60, 200, 0.09);
    text-align: center;
    min-width: 0;
    flex-shrink: 0;
    transition: box-shadow 0.25s;
    width: calc(50% - 12px);
    margin: 0 6px;
}

#testimonials .tst-card:hover { box-shadow: 0 8px 36px rgba(100, 60, 200, 0.15); }

#testimonials .tst-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; }
#testimonials .tst-stars svg { width: 30px; height: 30px; }

#testimonials .tst-text {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

#testimonials .tst-name { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
#testimonials .tst-designation { font-size: 0.82rem; font-weight: 600; color: #5b5b5b; }

@media (max-width: 600px) {
    #testimonials .tst-card { width: calc(100% - 12px); margin: 0 6px; }
    #testimonials .tst-arrow-btn { width: 36px; height: 36px; font-size: 0.9rem; }
}

@media (min-width: 900px) {
    #testimonials .tst-card { width: calc(50% - 12px); }
}




/* ══════════════════════════════════════════
   FOOTER  (.aurora-footer scoped)
══════════════════════════════════════════ */

.aurora-footer {
    --af-bg:     #fce8ff;
    --af-border: #e5c6f5;
    --af-purple: #9c40bf;
    --af-dark:   #1a1a2e;
    --af-navy:   #2d1f5e;
    --af-text:   #555;
    --af-sub:    #666;
    font-family: 'DM Sans', sans-serif;
    background: var(--af-bg);
    width: 100%;
}

.aurora-footer .af-tagline { font-size: .95rem; font-weight: 700; color: var(--af-dark); line-height: 1.45; }
.aurora-footer .af-desc    { font-size: .8rem;  color: var(--af-sub); line-height: 1.7; }

.aurora-footer .af-email-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--af-border);
    border-radius: 8px;
    padding: 7px 8px 7px 12px;
    max-width: 230px;
}

.aurora-footer .af-email-box svg   { width: 15px; height: 15px; flex-shrink: 0; color: var(--af-purple); }
.aurora-footer .af-email-box input { border: none; outline: none; background: transparent; font-size: .78rem; color: #444; flex: 1; min-width: 0; font-family: inherit; }
.aurora-footer .af-email-box input::placeholder { color: #aaa; }

.aurora-footer .af-send-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--af-purple), #c026d3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}

.aurora-footer .af-send-btn:hover { opacity: .85; transform: scale(1.07); }

.aurora-footer .af-send-btn svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aurora-footer .af-col-heading { font-size: .88rem; font-weight: 700; color: var(--af-dark); }

.aurora-footer .af-links { list-style: none; padding: 0; margin: 0; }
.aurora-footer .af-links li + li { margin-top: 9px; }
.aurora-footer .af-links a { font-size: .8rem; color: var(--af-text); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.aurora-footer .af-links a:hover { color: var(--af-purple); }

.aurora-footer .af-info-list { list-style: none; padding: 0; margin: 0; }

.aurora-footer .af-info-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .8rem; color: #333; line-height: 1.55; }
.aurora-footer .af-info-list li + li { margin-top: 12px; }

.aurora-footer .af-info-list svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--af-purple);
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aurora-footer .af-divider { border-color: var(--af-border); opacity: 1; }
.aurora-footer .af-copy    { font-size: .76rem; color: var(--af-text); }

.aurora-footer .af-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--af-border);
    border-radius: 10px;
    padding: 5px 16px;
}

.aurora-footer .af-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--af-purple), #c026d3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    flex-shrink: 0;
}

.aurora-footer .af-logo-name { font-size: .8rem; font-weight: 600; color: #333; white-space: nowrap; }

.aurora-footer .af-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--af-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.aurora-footer .af-social-btn:hover { background: var(--af-purple); transform: scale(1.1); }
.aurora-footer .af-social-btn svg { width: 15px; height: 15px; fill: #fff; }