
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --deep-blue: #0B3C5D;
    --accent-blue: #2563EB;
    --light-blue: #E6F0FA;
    --rich-black: #0A0F1C;
    --soft-white: #F8FAFC;
    --mid-gray: #64748B;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-soft: 0 8px 24px rgba(11, 60, 93, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--rich-black);
    background-color: var(--soft-white);
}

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

a:hover {
    color: #1f4fc0;
}

.section-space {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--light-blue);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    animation: headerSlideDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.is-scrolled {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.site-header .navbar {
    border-radius: 999px;
    padding: 8px 14px !important;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.92), rgba(9, 47, 75, 0.9));
    border: 1px solid rgba(169, 203, 255, 0.2);
    backdrop-filter: blur(10px) saturate(135%);
    -webkit-backdrop-filter: blur(10px) saturate(135%);
    box-shadow: 0 10px 26px rgba(11, 60, 93, 0.3), inset 0 1px 0 rgba(230, 240, 250, 0.15);
}

.navbar-brand {
    color: var(--deep-blue);
    letter-spacing: 0.04em;
    transform: translateY(8px);
    opacity: 0;
    animation: navFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.navbar-brand:hover {
    color: var(--deep-blue);
}

.nav-link {
    color: rgba(236, 244, 255, 0.9);
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-item {
    transform: translateY(8px);
    opacity: 0;
    animation: navFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-item:nth-child(1) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.28s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.36s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.44s;
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: var(--radius-lg);
    min-height: 640px;
    padding: 84px 64px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
    background-image:
        linear-gradient(105deg, rgba(11, 60, 93, 0.9) 10%, rgba(10, 15, 28, 0.65) 75%),
        url("../imgs/herobg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 22%, rgba(169, 203, 255, 0.2), transparent 55%);
    pointer-events: none;
}

.hero-card > .row {
    position: relative;
    z-index: 1;
    width: 100%;
}

.lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    max-width: 680px;
}

.text-accent {
    color: #a9cbff;
}

.hero-trust {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #eef5ff;
    background: rgba(230, 240, 250, 0.14);
    border: 1px solid rgba(230, 240, 250, 0.35);
    backdrop-filter: blur(4px);
}

.hero-trust span::before {
    content: "\2713";
    color: #c8ddff;
}

.hero-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
}

.hero-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.btn-pill {
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1f4fc0;
    border-color: #1f4fc0;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.2);
}

.counter-section {
    padding-top: 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.counter-card {
    padding: 8px 4px;
    text-align: center;
}

.counter-number {
    margin-bottom: 8px;
    font-size: clamp(3rem, 6vw, 5.25rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
}

.counter-label {
    color: var(--mid-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-section .about-text {
    color: var(--rich-black);
}

.about-label {
    letter-spacing: 2px;
    opacity: 0.62;
    color: var(--deep-blue);
    font-weight: 600;
}

.highlight {
    position: relative;
    cursor: default;
    color: var(--deep-blue);
    font-weight: 500;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.highlight:hover::after {
    width: 100%;
}

.about-btn {
    background: var(--deep-blue);
    color: #ffffff;
    border: 1px solid var(--deep-blue);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.about-btn:hover,
.about-btn:focus {
    transform: translateY(-2px);
    opacity: 0.94;
    background-color: #092f4b;
    color: #ffffff;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    min-height: 380px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.about-overlays {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-glass {
    position: absolute;
    max-width: 240px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(230, 240, 250, 0.2);
    border: 1px solid rgba(230, 240, 250, 0.42);
    backdrop-filter: blur(10px) saturate(135%);
    -webkit-backdrop-filter: blur(10px) saturate(135%);
    box-shadow: 0 10px 24px rgba(10, 15, 28, 0.2);
    animation: aboutGlassFloat 5.6s ease-in-out infinite;
}

.about-glass-title {
    color: #f4f8ff;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
}

.about-glass-text {
    color: rgba(236, 244, 255, 0.92);
    font-size: 0.77rem;
    line-height: 1.35;
}

.about-glass-top {
    top: 16px;
    right: 16px;
    animation-delay: 0s;
}

.about-glass-middle {
    top: 44%;
    left: 12px;
    animation-delay: 0.9s;
}

.about-glass-bottom {
    bottom: 16px;
    right: 26px;
    animation-delay: 1.8s;
}

.about-reveal {
    opacity: 0;
    transform: translateY(40px);
}

.about-reveal.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-section .container {
    position: relative;
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(0.4px);
    animation: servicesDrift 9s ease-in-out infinite;
}

.services-shape-1 {
    width: 220px;
    height: 220px;
    right: -56px;
    top: -10px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.34), rgba(37, 99, 235, 0.06));
}

.services-shape-2 {
    width: 280px;
    height: 280px;
    left: -72px;
    bottom: -18px;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.3), rgba(11, 60, 93, 0.06));
    animation-delay: 1.2s;
}

.services-shape-3 {
    width: 130px;
    height: 130px;
    right: 32%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.24), rgba(11, 60, 93, 0.04));
    animation-delay: 2.2s;
}

.services-section .section-title,
.services-section .row {
    position: relative;
    z-index: 1;
}

.services-heading-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.services-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(11, 60, 93, 0.1);
    color: var(--deep-blue);
    border: 1px solid rgba(11, 60, 93, 0.18);
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.services-trust i {
    color: var(--accent-blue);
}

.services-heading {
    font-size: clamp(2rem, 4.7vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.services-subtitle {
    max-width: 720px;
    color: var(--mid-gray);
    font-size: 1.03rem;
}

.services-section .service-card {
    border: 1px solid rgba(11, 60, 93, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    overflow: hidden;
}

.services-section .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(37, 99, 235, 0.08), transparent 38%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.services-section .service-card > * {
    position: relative;
    z-index: 1;
}

.services-section .service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--deep-blue);
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.service-icon i {
    font-size: 1.3rem;
    line-height: 1;
}

.services-section .service-card:hover .service-icon {
    transform: translateY(-2px);
    background: var(--deep-blue);
    color: #ffffff;
}

.service-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
}

.service-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.process-section .container {
    position: relative;
    --process-parallax-x: 0px;
    --process-parallax-y: 0px;
    --process-parallax-scroll: 0px;
}

.process-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(0.3px);
    transition: transform 0.2s ease-out;
}

.process-shape-1 {
    width: 210px;
    height: 210px;
    top: -30px;
    right: -60px;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.28), rgba(11, 60, 93, 0.04));
    transform: translate3d(
        calc(var(--process-parallax-x) * 0.7),
        calc(var(--process-parallax-y) * 0.7 + var(--process-parallax-scroll) * -0.55),
        0
    );
}

.process-shape-2 {
    width: 300px;
    height: 300px;
    left: -110px;
    bottom: -42px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.04));
    transform: translate3d(
        calc(var(--process-parallax-x) * -0.55),
        calc(var(--process-parallax-y) * -0.55 + var(--process-parallax-scroll) * 0.75),
        0
    );
}

.process-shape-3 {
    width: 96px;
    height: 96px;
    right: 27%;
    top: 20%;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.18), rgba(11, 60, 93, 0.03));
    transform: translate3d(
        calc(var(--process-parallax-x) * 0.95),
        calc(var(--process-parallax-y) * -0.95 + var(--process-parallax-scroll) * -1.05),
        0
    );
}

.process-heading,
.process-section .row {
    position: relative;
    z-index: 1;
}

.process-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--deep-blue);
    background: rgba(11, 60, 93, 0.08);
    border: 1px solid rgba(11, 60, 93, 0.16);
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.process-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.process-card-premium {
    border: 1px solid rgba(11, 60, 93, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.9));
    backdrop-filter: blur(3px);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.18s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-card-premium:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 18px 30px rgba(11, 60, 93, 0.14);
}

.process-card-premium .process-number {
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.process-reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
}

.process-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.value-section {
    background: #eef5fd;
}

.value-heading {
    margin-bottom: 0.75rem;
}

.value-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 60, 93, 0.1);
    border: 1px solid rgba(11, 60, 93, 0.16);
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
    font-weight: 600;
}

.value-title {
    font-size: clamp(2.3rem, 8vw, 5.4rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.95;
    font-weight: 800;
    color: var(--rich-black);
}

.value-subtitle {
    max-width: 790px;
    color: #4e6075;
    font-size: 1.02rem;
}

.value-card-modern {
    border: 2px solid rgba(10, 15, 28, 0.12);
    background: #ffffff;
}

.value-card-modern h4 {
    color: var(--deep-blue);
    font-weight: 600;
}

.value-metric {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--rich-black);
}

.section-title {
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-card,
.service-card,
.process-card,
.value-card,
.cta-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.service-card,
.process-card,
.value-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.process-card:hover,
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 60, 93, 0.12);
}

.process-number {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-blue);
    color: var(--deep-blue);
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

.why-section {
    background: linear-gradient(180deg, #e9f3ff 0%, #f2f7fd 100%);
}

.why-heading {
    margin-bottom: 0.75rem;
}

.why-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 60, 93, 0.1);
    border: 1px solid rgba(11, 60, 93, 0.16);
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
    font-weight: 600;
}

.why-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.why-subtitle {
    max-width: 760px;
    color: #4f6176;
    font-size: 1.02rem;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(11, 60, 93, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 16px 30px rgba(11, 60, 93, 0.12);
}

.why-card h4 {
    color: var(--deep-blue);
    font-weight: 600;
}

.why-card p {
    color: #52657a;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--deep-blue);
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.why-icon i {
    font-size: 1.2rem;
    line-height: 1;
}

.why-reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
}

.why-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.cta-section {
    background-color: var(--light-blue);
}

.cta-card p {
    color: var(--mid-gray);
}

.cta-card-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
    border: 1px solid rgba(11, 60, 93, 0.12);
}

.cta-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 60, 93, 0.09);
    border: 1px solid rgba(11, 60, 93, 0.16);
    color: var(--deep-blue);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
}

.cta-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.12;
}

.cta-text {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #4f5f72;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cta-points span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--deep-blue);
    font-size: 0.86rem;
    font-weight: 500;
}

.cta-reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
}

.cta-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-section {
    background: var(--deep-blue);
}

.contact-heading {
    color: #ffffff;
}

.contact-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(230, 240, 250, 0.16);
    border: 1px solid rgba(230, 240, 250, 0.28);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-title {
    color: #ffffff;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.1;
}

.contact-subtitle {
    max-width: 760px;
    color: rgba(236, 244, 255, 0.86);
    font-size: 1.03rem;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(230, 240, 250, 0.22);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 28px rgba(7, 19, 33, 0.22);
    padding: 30px;
    color: #ffffff;
}

.contact-panel h4 {
    color: #ffffff;
}

.contact-copy {
    color: rgba(236, 244, 255, 0.84);
}

.contact-panel a {
    color: #d6e8ff;
}

.contact-panel a:hover {
    color: #ffffff;
}

.contact-points {
    list-style: none;
    padding-left: 0;
}

.contact-points li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: rgba(236, 244, 255, 0.9);
}

.contact-points li:last-child {
    margin-bottom: 0;
}

.contact-points li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #a9cbff;
    font-weight: 700;
}

.contact-section .form-label {
    color: rgba(236, 244, 255, 0.95);
}

.contact-section .form-control {
    background: rgba(248, 250, 252, 0.96);
    border: 1px solid rgba(169, 203, 255, 0.35);
}

.contact-section .form-control::placeholder {
    color: #6e8198;
}

.contact-section .btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--deep-blue);
}

.contact-section .btn-primary:hover,
.contact-section .btn-primary:focus {
    background-color: #edf4ff;
    border-color: #edf4ff;
    color: var(--deep-blue);
    box-shadow: 0 12px 20px rgba(6, 20, 36, 0.24);
}

.form-control {
    border-radius: 10px;
    border: 1px solid #d2deeb;
    padding: 0.75rem 0.875rem;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.14);
}

.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.28), transparent 45%),
        linear-gradient(140deg, #082f49, #0a2238 55%, #0b3c5d 100%);
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(230, 240, 250, 0.06), transparent 45%);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    background: rgba(230, 240, 250, 0.1);
    border: 1px solid rgba(220, 234, 250, 0.22);
    backdrop-filter: blur(12px) saturate(135%);
    -webkit-backdrop-filter: blur(12px) saturate(135%);
    box-shadow: 0 16px 34px rgba(5, 12, 26, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 36px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f5f9ff;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f5f9ff;
}

.footer-text {
    color: rgba(236, 244, 255, 0.86);
}

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

.footer-list li + li {
    margin-top: 0.45rem;
}

.footer-link {
    color: rgba(232, 241, 255, 0.9);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-contact {
    font-style: normal;
}

.footer-contact span {
    color: rgba(232, 241, 255, 0.78);
}

.footer-bottom {
    border-top: 1px solid rgba(220, 234, 250, 0.2);
    color: rgba(236, 244, 255, 0.82);
    font-size: 0.94rem;
}

.footer-reveal {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.navbar-toggler {
    border-color: rgba(236, 244, 255, 0.45);
}

.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

.navbar-toggler:focus {
    box-shadow: none;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navFadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutGlassFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes servicesDrift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}