:root {
    --navy: #0A1A56;
    --dark: #1E1E1E;
    --white: #ffffff;
    --cream: #F3F1EE;
    --muted: #4A4949;
    --accent: #7B9CF4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    cursor: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CUSTOM CURSOR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: multiply;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

body:hover .cursor {
    opacity: 1;
}

.cursor.hover {
    width: 20px;
    height: 20px;
    background: var(--accent);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    opacity: 0.2;
    border-color: var(--accent);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ LOADER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    overflow: hidden;
}

/* Animated grid lines on loader bg */
#page-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridPan 6s linear infinite;
}

@keyframes gridPan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 80px 80px;
    }
}

/* Glowing orbs inside loader */
.loader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: loaderOrbFloat 5s ease-in-out infinite;
}

.loader-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 156, 244, 0.35), transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.loader-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(100, 130, 255, 0.25), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -2.5s;
}

@keyframes loaderOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.06);
    }
}

/* Spinning ring */
.loader-ring-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: ringExpand 2s ease-out infinite;
}

.loader-ring:nth-child(2) {
    animation-delay: 0.6s;
}

.loader-ring:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes ringExpand {
    0% {
        transform: scale(0.4);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Inner spinning arc */
.loader-arc {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.8);
    border-right-color: rgba(255, 255, 255, 0.3);
    animation: arcSpin 1.1s linear infinite;
}

.loader-arc-inner {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: var(--accent);
    animation: arcSpin 1.6s linear infinite reverse;
}

@keyframes arcSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Center dot */
.loader-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: dotPulse 1.4s ease-in-out infinite;
    z-index: 1;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.6;
    }
}

/* Text block */
.loader-text-wrap {
    z-index: 1;
    text-align: center;
}

.loader-label {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.6rem;
    animation: fadePulse 2s ease-in-out infinite;
}

@keyframes fadePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

.loader-text {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 56px);
    color: white;
    line-height: 1.15;
    overflow: hidden;
}

.loader-text span {
    display: inline-block;
    transform: translateY(110%);
    animation: loaderReveal 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.loader-text span:nth-child(1) {
    animation-delay: 0.05s;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.20s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.35s;
}

@keyframes loaderReveal {
    to {
        transform: translateY(0);
    }
}

/* Progress bar */
.loader-bar {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.loader-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, white, var(--accent));
    transform: translateX(-100%);
    animation: loaderBar 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.4s forwards;
}

@keyframes loaderBar {
    to {
        transform: translateX(0);
    }
}

/* Percentage counter */
.loader-percent {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(60px, 8vw, 110px);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-style: italic;
    z-index: 0;
    user-select: none;
}

/* Corner marks */
.loader-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.loader-corner::before,
.loader-corner::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
}

.loader-corner::before {
    width: 1px;
    height: 100%;
}

.loader-corner::after {
    width: 100%;
    height: 1px;
}

.loader-corner.tl {
    top: 2rem;
    left: 2rem;
}

.loader-corner.tr {
    top: 2rem;
    right: 2rem;
    transform: scaleX(-1);
}

.loader-corner.bl {
    bottom: 2rem;
    left: 2rem;
    transform: scaleY(-1);
}

.loader-corner.br {
    bottom: 2rem;
    right: 2rem;
    transform: scale(-1);
}

#page-loader.done {
    animation: loaderExit 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.1s forwards;
}

@keyframes loaderExit {
    to {
        transform: translateY(-100%);
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ NOISE OVERLAY Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.4;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ TYPOGRAPHY Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
p {
    font-size: 16px;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

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

h2 {
    font-size: clamp(40px, 6vw, 70px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SPLIT TEXT REVEAL HELPER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.reveal-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.reveal-word span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.revealed .reveal-word span {
    transform: translateY(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HEADER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 1rem 0;
}

header * {
    color: white;
}

header a.nav-link {
    color: white !important;
    position: relative;
}

header a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

header a.nav-link:hover::after {
    width: 100%;
}

header .navbar-nav {
    gap: 20px;
}

header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
    padding: 5px 0;
}

.logo {
    margin: 0;
    width: 120px;
}

.logo img {
    width: 100%;
    height: auto;
}

.web-btn.btn {
    font-size: 16px;
    background: white;
    border-radius: 50px;
    padding: 10px 24px;
    color: #000;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
}

.web-btn.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
    border-radius: 50px;
}

.web-btn.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.web-btn.btn:hover {
    color: white;
}

.web-btn.btn.btn-black {
    background: #000;
    color: white;
}

.web-btn.btn.btn-black::before {
    background: var(--accent);
}

.web-btn.btn.btn-blue {
    background: var(--navy);
    color: white;
}

.web-btn.btn.btn-blue::before {
    background: var(--accent);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
section.hero {
    background: var(--navy);
    padding-top: 14rem;
    padding-bottom: 10rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

section.hero * {
    color: white;
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7B9CF4, transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a8c4ff, transparent);
    bottom: -100px;
    left: -50px;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c4d4ff, transparent);
    top: 40%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.97);
    }
}

/* Decorative horizontal lines */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-line:nth-child(1) {
    top: 30%;
}

.hero-line:nth-child(2) {
    top: 60%;
}

/* Counter / marquee number */
.hero-marquee {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

h1.banner-hero-heading {
    font-size: clamp(48px, 7vw, 80px);
    line-height: 1.05;
    overflow: hidden;
}

.hero .banner-conntent p {
    margin: 1.5rem 0;
    font-size: clamp(16px, 1.8vw, 22px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.4s forwards;
}

.hero .banner-conntent .web-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.7s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 2.2s forwards;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollDrop 1.8s ease-in-out infinite 2.5s;
}

@keyframes scrollDrop {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SECURE PATIENT Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.secure-patient-sec {
    position: relative;
    z-index: 2;
}

.secure-sec-bg {

    background-image: url("../images/secure-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 3rem 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* 
  .secure-sec-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg,
              transparent,
              transparent 40px,
              rgba(255, 255, 255, 0.02) 40px,
              rgba(255, 255, 255, 0.02) 80px);
  } */

.secure-sec-conntent {
    padding: 3rem 2rem;
}

.secure-sec-conntent * {
    color: white;
}

.secure-sec-conntent h2 {
    margin-bottom: 1rem;
}

.secure-sec-buttons {
    margin-top: 2rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ PERSONALIZED CARE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.personalisd-care-section {
    background-image: url("../images/per-sec.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5rem;
    padding: 8rem 0;
    position: relative;
}

.personalisd-care-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(240, 243, 255, 0.6) 0%, rgba(240, 243, 255, 0.2) 100%);
}

.personalisd-care-section .container {
    position: relative;
}

.personalisd-care-heading {
    margin-bottom: 3rem !important;
}

.personalisd-care-section p {
    color: var(--muted);
}

/* Card hover magic */
.section-boxes {
    padding: 3rem 2rem;
    min-height: 356px;
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

.section-boxes::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.section-boxes:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 26, 86, 0.12);
}

.section-boxes:hover::before {
    transform: scaleX(1);
}

.section-boxes::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(10, 26, 86, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translate(var(--mx, 0), var(--my, 0));
}

.section-boxes:hover::after {
    opacity: 1;
}

.section-icons {
    margin-bottom: 1.5rem;
}

.section-content h3 {
    margin-bottom: 1rem;
}

.section-content p {
    margin-bottom: 0.5rem;
}

span.circle-icon {
    display: inline-flex;
    width: 85px;
    height: 85px;
    justify-content: center;
    align-items: center;
    background: #E7E8EE;
    border-radius: 50%;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-boxes:hover span.circle-icon {
    background: var(--navy);
    transform: rotate(-10deg) scale(1.08);
}

.section-boxes:hover span.circle-icon img {
    filter: brightness(0) invert(1);
}

span.circle-icon img {
    transition: filter 0.4s ease;
}

.fig-arrow {
    margin: 0;
    margin-top: 1rem;
    width: 40px;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-boxes:hover .fig-arrow {
    transform: translateX(8px);
}

.row.horizontal-padding>* {
    padding-bottom: calc(var(--bs-gutter-x));
}

/* Scroll-reveal for cards */
.card-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.card-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.card-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.card-reveal:nth-child(4) {
    transition-delay: 0.3s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ JOURNEY Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
section.journey {
    padding-top: 8rem;
    padding-bottom: 0;
    position: relative;
}

.journey-content {
    height: 407px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    position: relative;
    overflow: hidden;
}

.journey-content::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.journey-content:hover::before {
    opacity: 1;
}

.journey-content.left-journey {
    background: var(--navy);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.journey-content.left-journey::before {
    background: radial-gradient(circle at 30% 50%, rgba(123, 156, 244, 0.2), transparent 60%);
}

.journey-content.right-journey {
    background: var(--dark);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.journey-content.right-journey::before {
    background: radial-gradient(circle at 70% 50%, rgba(123, 156, 244, 0.15), transparent 60%);
}

.journey-content * {
    color: white;
}

.no-padding-column {
    padding: 0;
}

.journey-content h3 {
    font-size: clamp(32px, 4vw, 50px);
    width: 95%;
    margin-bottom: 1rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-content:hover h3 {
    transform: translateX(6px);
}

.journey-content p {
    margin-bottom: 1.5rem;
}

.journey-reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.journey-reveal.left {
    transform: translateX(-60px);
}

.journey-reveal.right {
    transform: translateX(60px);
}

.journey-reveal.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
footer {
    background: white;
    padding-top: 4rem;
}

.footer-main h2 {
    font-size: clamp(32px, 4vw, 50px);
    margin-bottom: 2rem;
}

.newsletter-content {
    width: 75%;
    margin: 0 auto;
    background: var(--cream);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    border-radius: 94px;
    transition: box-shadow 0.4s ease;
}

.newsletter-content:focus-within {
    box-shadow: 0 0 0 3px rgba(10, 26, 86, 0.15);
}

.newsletter-content input {
    border: 0;
    width: 100%;
    background: transparent;
    padding: 0.5rem 0.5rem;
    outline: none;
}

.newsletter-content .web-btn {
    padding: 0.75rem 3rem;
    background: var(--navy);
    color: white;
    border-radius: 42px;
    white-space: nowrap;
}

.news-icon {
    margin: 0 1rem;
    color: var(--navy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

p.copy-right {
    font-weight: 500;
    margin: 0;
}

ul.footer-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

ul.footer-nav a {
    color: var(--dark);
    position: relative;
    font-size: 14px;
}

ul.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--navy);
    transition: width 0.35s ease;
}

ul.footer-nav a:hover::after {
    width: 100%;
}

ul.footer-social-icons {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
    margin: 0;
}

ul.footer-social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: background 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

ul.footer-social-icons a:hover {
    background: var(--navy);
    transform: translateY(-4px) scale(1.1);
}

ul.footer-social-icons i {
    color: white;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SECTION TITLE REVEAL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-title-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.section-title-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ COUNT UP NUMBERS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.stats-bar {
    background: var(--cream);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--navy);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.stat-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stat-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.stat-reveal:nth-child(4) {
    transition-delay: 0.3s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MARQUEE BAND Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.marquee-band {
    background: var(--navy);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeLine 18s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

@keyframes marqueeLine {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO WORD REVEAL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.word-reveal {
    overflow: hidden;
    display: inline-block;
}

.word-reveal .word {
    display: inline-block;
    transform: translateY(110%);
}

.word-reveal .word.animate-word {
    animation: wordUp 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes wordUp {
    to {
        transform: translateY(0);
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ PARALLAX IMAGE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-right-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    opacity: 0.07;
    pointer-events: none;
}

.hero-circle {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-circle::before {
    content: '';
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-circle::after {
    content: '';
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-circle-animated {
    animation: circleRotate 20s linear infinite;
}

@keyframes circleRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Section spacing */
.section-spacing {
    padding: 8rem 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MAGNETIC BUTTON Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ PAGE PROGRESS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s ease;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SMOOTH SECTION TRANSITIONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
section {
    position: relative;
}

@media (max-width: 768px) {
    .newsletter-content {
        width: 100%;
    }

    .journey-content {
        height: auto;
        padding: 3rem 2rem;
    }

    .journey-content.left-journey {
        border-radius: 30px 30px 0 0;
    }

    .journey-content.right-journey {
        border-radius: 0 0 30px 30px;
    }

    .hero-right-visual {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}


section.banner.inner-banner {
    background: var(--navy);
    padding-top: 14rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

section.banner.inner-banner h1 {
    text-align: center;
    color: white;
    font-size: clamp(48px, 7vw, 60px);
    line-height: 1.05;
}

.layer-stretch {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 80px 0px;
}

.layer-wrapper {
    position: relative;
    width: 100%;
    padding: 50px 0 50px 0;
    margin: 0;
}


.form-container {
    max-width: 540px;
    padding: 50px 40px;
    margin: 0 auto;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(12px);
}

.input-box {
    position: relative;
    padding: 0 0 30px 0;
}


.input-box input, .input-box textarea, .input-box select {
    font-size: 15px;
    padding: 20px 25px;
    width: 100%;
    color: #333;
    background-color: #FFF;
    border-radius: 50px;
    border: 2px solid #e4e0e0;
    transition: border-color;
}

.input-box.has-content label {
    display: inline-block;
    top: 0;
    width: auto;
    font-size: 14px;
    color: #32C1CE;
}

.input-box label {
    position: absolute;
    left: 25px;
    padding: 0 10px;
    background-color: #fff;
    text-align: left;
    pointer-events: none;
    cursor: text;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
    font-family: "Playfair Display", serif;
}

.input-box span {
    display: none;
}

.form-container label em {
    color: #cc5151;
}

.input-box.has-content label {
    display: inline-block;
    top: 0;
    width: auto;
    font-size: 14px;
    color: #32C1CE;
    position: absolute;
    left: 15px;
    padding: 0 10px;
    background-color: #fff;
    text-align: left;
    pointer-events: none;
    cursor: text;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}

.forgot-pass {
    position: absolute;
    bottom: 0px;
    right: 0;
    font-size: 14px;
    color: #0c1c57;
    cursor: pointer;
}

.login-link {
    padding: 20px 20px 20px 20px;
    overflow: hidden;
    background: #f2f2f2;
    margin: 20px auto 0 auto;
}

.form-container .paragraph-small {
    text-align: center;
}
.login-link span {
    display: block;
    text-align: center;
}
.paragraph-small {
    font-size: 18px;
    font-family: "Playfair Display", serif;
}

.login-link a {
    display: inline-block;
    font-size: 14px;
    color: #0c1c57;
    letter-spacing: .5px;
    margin: 0;
    cursor: pointer;
}

.form-container .form-submit {
    margin-top: 20px;
    margin-bottom: 30px;
}