/* =========================================
   India SEED Ventures - Main Stylesheet
   ========================================= */

:root {
    --pink: #e62a95;
    --pink-dark: #a3104f;
    --pink-light: #fde8f3;
    --purple: #4c1dff;
    --navy: #0f1b2d;
    --text: #555c66;
    --heading: #14161a;
    --bg-light: #f7f8fb;
    --white: #ffffff;
    --border: #e9ebf0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4 {
    color: var(--heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

.section-pad {
    padding: 100px 0;
}

.section-head {
    margin-bottom: 50px;
}

.sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.sub-title.light {
    color: #ffc5e4;
}

.section-title {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn-primary-isv,
.btn-outline-isv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--pink);
    cursor: pointer;
}

.btn-primary-isv {
    background: var(--pink);
    color: var(--white);
}

.btn-primary-isv:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: var(--white);
}

.btn-outline-isv {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-isv:hover {
    background: var(--white);
    color: var(--pink);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--white);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    padding: 10px 0;
}

.site-header .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.site-header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.site-header.scrolled {
    box-shadow: 0 6px 24px rgba(15, 27, 45, 0.08);
    padding: 4px 0;
}

.site-header .logo {
    height: 52px;
    width: auto;
    border-radius: 8px;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo {
    height: 46px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
    padding: 8px 18px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 18px;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--pink);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.btn-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 50px;
}

.btn-mail:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--pink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 140px 0 110px;
    background: #111116;
    overflow: hidden;
}

/* Background photo with a slow zoom */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(230, 42, 149, 0.35) 0%, rgba(230, 42, 149, 0) 45%),
        linear-gradient(90deg, rgba(10, 10, 14, 0.92) 0%, rgba(10, 10, 14, 0.7) 50%, rgba(10, 10, 14, 0.35) 100%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 26px;
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 0 rgba(230, 42, 149, 0.7);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 62px;
    line-height: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .highlight {
    position: relative;
    color: var(--pink);
    white-space: nowrap;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background: var(--pink);
    opacity: 0.35;
    border-radius: 4px;
}

.hero-text {
    font-size: 17px;
    line-height: 30px;
    color: #d6d6de;
    max-width: 600px;
    padding-left: 20px;
    border-left: 3px solid var(--pink);
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-btns .btn-primary-isv {
    box-shadow: 0 10px 30px rgba(230, 42, 149, 0.4);
}

.hero-btns .btn-primary-isv i {
    transition: transform 0.3s ease;
}

.hero-btns .btn-primary-isv:hover i {
    transform: translateX(4px);
}

/* Glass info card */
.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 32px 30px;
    max-width: 420px;
    margin-left: auto;
}

.hero-card h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.hero-card li:last-child {
    margin-bottom: 0;
}

.hc-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--pink);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card strong {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-card small {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #c4c4cf;
}

/* Scroll-down mouse */
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.scroll-down span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--white);
    animation: scrollWheel 1.6s infinite;
}

/* Entrance animation (staggered) */
.hero-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-title.hero-anim { animation-delay: 0.15s; }
.hero-text.hero-anim { animation-delay: 0.3s; }
.hero-btns.hero-anim { animation-delay: 0.45s; }
.hero-card.hero-anim { animation-delay: 0.6s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 42, 149, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(230, 42, 149, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 42, 149, 0); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-tag .dot,
    .scroll-down span {
        animation: none;
    }

    .hero-anim {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ---------- Explore (3 cards) ---------- */
.explore {
    background: var(--bg-light);
}

.explore-card {
    position: relative;
    background: var(--white);
    padding: 40px 34px;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(15, 27, 45, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230, 42, 149, 0.12);
}

.card-num {
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 100px;
    line-height: 100px;
    font-weight: 700;
    color: #f1f2f5;
    z-index: 0;
}

.card-icon {
    position: relative;
    font-size: 40px;
    line-height: 40px;
    color: var(--pink);
    margin-bottom: 24px;
}

.explore-card h3 {
    position: relative;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
}

.explore-card p {
    position: relative;
    font-size: 15px;
    margin: 0;
}

/* ---------- Core Features ---------- */
.features-intro {
    height: 100%;
    min-height: 360px;
    padding: 70px 60px;
    background: linear-gradient(135deg, var(--purple) 0%, #6a3bff 45%, var(--pink) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-intro h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 18px;
}

.features-intro h2 strong {
    display: block;
    font-weight: 700;
}

.features-intro p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.feature-box {
    position: relative;
    height: 100%;
    padding: 60px 36px 90px;
    background: #f4f4f6;
    border-right: 1px solid var(--border);
    transition: background 0.3s ease;
}

.feature-box:hover {
    background: var(--white);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--pink);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.feature-box h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.feature-arrow {
    position: absolute;
    left: 36px;
    bottom: 34px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.feature-box:hover .feature-arrow {
    background: var(--pink);
    color: var(--white);
}

/* ---------- Services (bento grid) ---------- */
.services {
    position: relative;
    background-color: #0b1322;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    overflow: hidden;
}

/* Soft colour glows */
.services::before,
.services::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.services::before {
    top: -200px;
    left: -160px;
    background: rgba(230, 42, 149, 0.22);
}

.services::after {
    right: -200px;
    bottom: -220px;
    background: rgba(76, 29, 255, 0.2);
}

.svc-head {
    margin-bottom: 50px;
}

.svc-head .section-title span {
    background: linear-gradient(90deg, var(--pink), #b06bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.svc-head p {
    color: #a9b1c2;
    font-size: 17px;
    line-height: 28px;
    margin: 0;
}

.svc-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 24px;
}

.svc-featured {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.svc-wide {
    grid-column: 2 / span 2;
}

/* Card */
.svc-card {
    --mx: 50%;
    --my: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    overflow: hidden;
    isolation: isolate;
}

/* Spotlight that follows the cursor */
.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(230, 42, 149, 0.18), transparent 45%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Gradient border on hover */
.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--pink), #8b5cff 60%, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.svc-card:hover::before,
.svc-card:hover::after {
    opacity: 1;
}

.svc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
}

.svc-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), #8b5cff);
    color: var(--white);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 42, 149, 0.35);
}

.svc-num {
    font-size: 46px;
    line-height: 46px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
    transition: -webkit-text-stroke-color 0.4s ease;
}

.svc-card:hover .svc-num {
    -webkit-text-stroke-color: var(--pink);
}

.svc-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff8fcb;
    background: rgba(230, 42, 149, 0.14);
    border: 1px solid rgba(230, 42, 149, 0.35);
    border-radius: 50px;
    padding: 5px 12px;
    margin-bottom: 14px;
}

.svc-card h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.svc-featured h3 {
    font-size: 30px;
    line-height: 38px;
}

.svc-card p {
    font-size: 15px;
    line-height: 25px;
    color: #a9b1c2;
    margin-bottom: 20px;
}

.svc-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tags li {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #d5d9e3;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px 12px;
}

/* Round arrow button */
.svc-link {
    position: absolute;
    right: 26px;
    bottom: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.svc-link i {
    transition: transform 0.4s ease;
}

.svc-card:hover .svc-link {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 10px 26px rgba(230, 42, 149, 0.45);
}

.svc-card:hover .svc-link i {
    transform: rotate(45deg);
}

/* Leave room for the arrow in small cards */
.svc-card:not(.svc-featured):not(.svc-wide) .svc-tags {
    margin-bottom: 60px;
}

/* Featured image */
.svc-img {
    position: relative;
    flex: 1;
    min-height: 220px;
    border-radius: 18px;
    overflow: hidden;
}

.svc-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.svc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 19, 34, 0) 40%, rgba(11, 19, 34, 0.7) 100%);
}

.svc-featured:hover .svc-img img {
    transform: scale(1.06);
}

.svc-img .svc-link {
    right: 16px;
    bottom: 16px;
}

/* Wide card with orbit graphic */
.svc-wide {
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.svc-body {
    flex: 1;
}

.svc-wide .svc-tags {
    margin-bottom: 0;
}

.svc-orbit {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    margin-right: 10px;
}

.svc-orbit .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
}

.svc-orbit .r1 { width: 220px; height: 220px; animation: spin 40s linear infinite; }
.svc-orbit .r2 { width: 150px; height: 150px; border-color: rgba(230, 42, 149, 0.45); animation: spin 28s linear infinite reverse; }
.svc-orbit .r3 { width: 84px; height: 84px; border-style: solid; border-color: rgba(255, 255, 255, 0.12); }

.svc-orbit .core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--pink), #8b5cff);
    color: var(--white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(230, 42, 149, 0.15), 0 0 40px rgba(230, 42, 149, 0.5);
}

.svc-orbit .dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.svc-orbit .d1 { top: 8px; left: 50%; }
.svc-orbit .d2 { top: 58%; right: 30px; background: var(--pink); box-shadow: 0 0 12px var(--pink); }
.svc-orbit .d3 { bottom: 34px; left: 20px; background: #b06bff; box-shadow: 0 0 12px #b06bff; }

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Bottom CTA pill */
.svc-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    width: fit-content;
    margin: 50px auto 0;
    padding: 10px 10px 10px 26px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d5d9e3;
    font-size: 15px;
}

.svc-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
}

.svc-cta a:hover {
    background: var(--pink);
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    .svc-orbit .ring {
        animation: none;
    }
}

/* ---------- About ---------- */
.about-img {
    position: relative;
    padding: 0 30px 30px 0;
}

.about-img::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 70%;
    background: var(--pink);
    border-radius: 12px;
    z-index: 0;
}

.about-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.about-img:hover img {
    filter: grayscale(0%);
}

.about-badge {
    position: absolute;
    left: 30px;
    bottom: 60px;
    z-index: 2;
    background: var(--white);
    padding: 20px 26px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: 220px;
}

.about-badge .num {
    display: block;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: var(--pink);
}

.about-badge .txt {
    font-size: 14px;
    line-height: 20px;
    color: var(--heading);
}

.about .section-title {
    color: var(--pink-dark);
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 18px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 12px;
}

.about-list i {
    color: var(--pink);
    font-size: 20px;
}

/* ---------- Why Choose Us (process flow) ---------- */
.why {
    position: relative;
    background: linear-gradient(135deg, var(--pink) 0%, #c81c7c 55%, var(--pink-dark) 100%);
    overflow: hidden;
}

/* Soft decorative rings */
.why::before,
.why::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.why::before {
    width: 520px;
    height: 520px;
    top: -260px;
    left: -160px;
}

.why::after {
    width: 380px;
    height: 380px;
    right: -140px;
    bottom: -190px;
}

.why .sub-title.light {
    color: rgba(255, 255, 255, 0.85);
}

.flow-step {
    position: relative;
    text-align: center;
}

.flow-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: var(--white);
    color: var(--pink);
    font-size: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(90, 0, 45, 0.3);
    transition: transform 0.4s ease;
}

/* Partial outer ring, like the banner */
.flow-circle::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-30deg);
    transition: transform 0.8s ease;
}

.flow-step:hover .flow-circle {
    transform: translateY(-6px);
}

.flow-step:hover .flow-circle::before {
    transform: rotate(330deg);
}

.flow-num {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

/* Curved dashed arrow between circles */
.flow-arrow {
    position: absolute;
    top: 20px;
    right: -64px;
    width: 128px;
    height: 44px;
    overflow: visible;
}

.flow-arrow path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2.5;
    stroke-dasharray: 6 6;
    stroke-linecap: round;
}

.flow-arrow path.head {
    stroke-dasharray: none;
    stroke-linejoin: round;
}

.flow-step h3 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    color: var(--white);
    max-width: 230px;
    margin: 0 auto;
}

/* ---------- Career ---------- */
.career {
    padding-bottom: 0;
}

.career-box {
    position: relative;
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 27, 45, 0.18);
}

/* Soft pink glow behind the text */
.career-box::before {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 42, 149, 0.35) 0%, rgba(230, 42, 149, 0) 70%);
}

.career-content {
    position: relative;
    z-index: 1;
    padding: 60px 50px 60px 60px;
}

.career-content .sub-title {
    color: #ff8fcb;
}

.career-content h2 {
    font-size: 38px;
    line-height: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.career-content h2 span {
    color: var(--pink);
}

.career-content p {
    color: #b9bfcc;
    max-width: 540px;
    margin-bottom: 26px;
}

.career-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.career-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 8px 16px;
}

.career-perks i {
    color: var(--pink);
    font-size: 16px;
}

.career-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
}

.career-actions .btn-primary-isv {
    box-shadow: 0 10px 30px rgba(230, 42, 149, 0.35);
}

.career-mail {
    font-size: 14px;
    color: #b9bfcc;
}

.career-mail a {
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid var(--pink);
}

.career-mail a:hover {
    color: var(--pink);
}

/* Photo with a diagonal edge and pink corner */
.career-img {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.career-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.career-img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--pink);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.9;
}

/* ---------- Contact ---------- */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 27, 45, 0.1);
}

/* Pink panel, styled after the "Connect with us" slide */
.contact-panel {
    position: relative;
    height: 100%;
    padding: 60px 50px;
    background: linear-gradient(150deg, var(--pink) 0%, #c81c7c 55%, var(--pink-dark) 100%);
    overflow: hidden;
}

.contact-panel::before,
.contact-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.contact-panel::before {
    width: 320px;
    height: 320px;
    right: -140px;
    bottom: -140px;
}

.contact-panel::after {
    width: 200px;
    height: 200px;
    right: -60px;
    bottom: -60px;
}

.contact-panel .sub-title {
    color: rgba(255, 255, 255, 0.85);
}

.contact-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.contact-info {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ci-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--white);
    color: var(--pink);
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-info li:hover .ci-icon {
    transform: rotate(-8deg) scale(1.05);
}

.contact-info small {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-info div a,
.contact-info div span {
    color: var(--white);
    font-weight: 600;
    word-break: break-word;
}

.contact-info a:hover {
    color: var(--navy);
}

.contact-social {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-social > span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.contact-social .social {
    margin-top: 0;
}

.contact-social .social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 17px;
}

/* Form */
.contact-form {
    padding: 56px 50px;
}

.contact-form h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 6px;
}

.form-note {
    font-size: 14px;
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 8px;
}

.form-note span,
.contact-form label span {
    color: var(--pink);
}

.field {
    position: relative;
}

.field > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    color: #9aa1ad;
    pointer-events: none;
    transition: color 0.3s ease;
}

.field-textarea > i {
    top: 18px;
    transform: none;
}

.field:focus-within > i {
    color: var(--pink);
}

.contact-form .form-control,
.contact-form .form-select {
    height: 54px;
    font-size: 15px;
    color: var(--heading);
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px 12px 48px;
}

.contact-form textarea.form-control {
    height: auto;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: #a3a9b4;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(230, 42, 149, 0.12);
}

.contact-form .is-invalid {
    border-color: #dc3545;
}

.contact-form .btn-primary-isv {
    margin-top: 8px;
    box-shadow: 0 10px 30px rgba(230, 42, 149, 0.3);
}

.form-msg {
    margin: 14px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.form-msg:empty {
    display: none;
}

.form-msg.success {
    color: #198754;
}

.form-msg.error {
    color: #dc3545;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-logo {
    height: 64px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.site-footer h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 22px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 10px;
    font-size: 15px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
    color: var(--pink);
}

.social {
    margin-top: 18px;
}

.social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* Brand colours on hover */
.social a.s-linkedin:hover { background: #0a66c2; }
.social a.s-facebook:hover { background: #1877f2; }
.social a.s-instagram:hover { background: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af); }
.social a.s-whatsapp:hover { background: #25d366; }

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* ---------- Back to top ---------- */
.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: var(--pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 998;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--pink-dark);
    color: var(--white);
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
