* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-display: swap;
}


.reveal,
.home-img img {
    will-change: transform, opacity;
    contain: layout style;
}

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: middle;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
}

#menu-icon.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#menu-icon.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#menu-icon.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger-line {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: 0.3s ease;
    transform-origin: center;
}

:root {
    --bg-color: #0a0e18;
    --second-bg-color: #0d121f;
    --text-color: #e5e7eb;

    --muted-text-color: #cbd5e1;
    --main-color: #22d3ee;
    --card-bg: rgba(17, 24, 39, 0.7);
    --glass: rgba(255, 255, 255, 0.06);
}

html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(34, 211, 238, 0.08), transparent 60%), radial-gradient(1000px 500px at 90% 20%, rgba(99, 102, 241, 0.08), transparent 60%), var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-anchor: none;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.4rem 10%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.45) 60%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.logo {
    font-size: 2.6rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s ease;
    letter-spacing: 0.5px;
}

.logo:hover {
    transform: scale(1.1);
}

.logo span {
    color: var(--main-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover span {
    opacity: 0.8;
}

.navbar a {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-left: 3rem;
    font-weight: 500;
    transition: 0.25s ease;
    border-bottom: 2px solid transparent;
    opacity: 0.9;
}


.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    opacity: 1;
}

#menu-icon {
    font-size: 3.2rem;
    color: var(--main-color);
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 10%;
}

.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    margin-top: 3rem;
    min-height: 520px;
    contain: layout;
}

span {
    color: var(--main-color);
}

.logo span {
    color: var(--main-color);
}


.home-content h2 {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 3.5rem;
}

.home-content h1 {
    font-size: 6.4rem;
    font-weight: 800;
    margin-top: 1.5rem;
    line-height: 1.05;
    letter-spacing: 0.2px;
}

.home-img {
    border-radius: 50%;
}

.home-img img {
    position: relative;
    z-index: 1;
    top: 0;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.4s ease;
    width: min(420px, 58vw);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    content-visibility: auto;
}

.home-img {
    position: relative;
    display: inline-block;
}


.avatar-badge {
    display: none;
}

.home-img img:hover {
    transform: translateY(-6px) scale(1.02);
}

.home-content p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--muted-text-color);
    line-height: 1.9;
    max-width: 820px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.6rem;
    height: 4.6rem;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 2.2rem;
    border-radius: 1.2rem;
    color: var(--text-color);
    margin: 2.2rem 1rem 2.2rem 0;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(4px);
}

.social-icons a:hover {
    color: black;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35);
    background-color: var(--main-color);
    border-color: transparent;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.6rem;
    background: var(--main-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
    border-radius: 1.2rem;
    font-size: 1.6rem;
    color: #0b0f19;
    border: 2px solid transparent;
    letter-spacing: 0.2px;
    font-weight: 700;
    transition: 0.25s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(34, 211, 238, 0.4);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-group .btn.btn-outline {
    background-color: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: none;
}

.btn-group .btn.btn-outline:hover {
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.4);
    background-color: var(--main-color);
    color: #0b0f19;
}

.text-animation {
    font-size: 36px;
    font-weight: 600;
    min-width: 280px;
    min-height: 54px;
    display: block;
}

.text-animation span {
    position: relative;
    display: inline-block;
    color: var(--main-color);
}

.text-animation span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    border-left: 2px solid var(--main-color);
    right: -8px;
    background: transparent;
    animation: cursor 0.6s infinite;
}

@keyframes cursor {
    to {
        border-left-color: transparent;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.text-animation .word-start {
    animation: slideIn 0.3s ease;
}

.heading {
    font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 700;
    font-size: 5.6rem;
    text-align: center;
    margin: 2.4rem 0;
    letter-spacing: 0.2px;
}


.timeline-items {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.timeline-items::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
    left: calc(50% - 2.5px);
}

.timeline-item {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
    text-align: left;
}

.timeline-dot {
    height: 21px;
    width: 21px;
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    position: absolute;
    left: calc(50% - 10.5px);
    border-radius: 50%;
    top: 10px;
}

.timeline-data {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 6px 0 15px;
}

.timeline-content {
    background-color: var(--bg-color);
    border: 3px solid var(--main-color);
    padding: 30px 50px;
    border-radius: 4rem;
    box-shadow: 0 0 10px var(--main-color);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
}

.timeline-content h3 {
    font-size: 20px;
    color: white;
    margin: 0 0 10px;
    font-weight: 500;
}

.timeline-content p {
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
    width: 50px;
}

.services {
    background: transparent;
    color: black;
}

.services h2 {
    margin-bottom: 3rem;
    color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 2.4rem;
}

.service-box {
    background: transparent;
    height: 100%;
    border-radius: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: border-color 0.25s ease-in-out, transform 0.25s ease-in-out;
    box-shadow: none;
}

.service-box:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.6);
}

.service-box .service-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3.2rem;
}


.service-info h3 {
    font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    letter-spacing: 0.3px;
}

.service-info p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    margin-top: 0.8rem;
    color: var(--muted-text-color);
}


.service-icon {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.12);
    color: var(--main-color);
    border: 1px solid rgba(34, 211, 238, 0.35);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.service-features li {
    font-size: 1.45rem;
    color: var(--text-color);
    opacity: 0.92;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-features i {
    color: var(--main-color);
    font-size: 1.6rem;
}

.chip-group {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    padding: 0.4rem 1rem;
    font-size: 1.25rem;
    color: var(--main-color);
    border: 1px solid rgba(34, 211, 238, 0.4);
    background: rgba(34, 211, 238, 0.08);
    border-radius: 999px;
}

.testimonials {
    background: transparent;
}

.testimonials-box {
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonials .heading {
    margin-bottom: 3rem;
}

.testimonials-box img {
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    box-shadow: none;
}

.testimonial-window {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.tw-header {
    display: none;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.wrapper.two-col {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
}

.testimonials-item {
    min-height: 520px;
    max-width: 440px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.4rem;
    margin: 0 1.2rem;
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    color: white;
    transition: border-color 0.25s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.testimonials-item:hover {
    border-color: rgba(34, 211, 238, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.testimonials-item h3 {
    font-size: 2.2rem;
}

.testimonials-item p {
    font-size: 1.6rem;
    color: var(--muted-text-color);
}

.testimonials-item p a {
    color: inherit;
    text-decoration: none;
}

#star {
    color: #fde68a;
}


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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.footer {
    padding: 8rem 5% 4rem;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.5));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 6rem;
}

.footer-brand .logo {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-decoration: none;
    letter-spacing: -1px;
}

.footer-brand .logo span {
    color: var(--cyan);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 400px;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--cyan);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: contents;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: none;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 6rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.copyright-mini {
    font-size: 1.3rem;
    color: #64748b;
}


@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 4rem;
    }
}


@media(max-width:1285px) {
    html {
        font-size: 55%;
    }

    .services-container {
        padding-bottom: 7rem;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 1rem;
    }
}

@media(max-width:991px) {
    header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 37px;
    }

    .timeline-dot {
        left: 0;
    }

    .services {
        padding-bottom: 7rem;
    }

    .testimonials .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .wrapper.two-col {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonial-window {
        padding: 1rem;
    }
}

@media(max-width:895px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 60%;
        padding: 1rem 3%;
        background-color: rgba(17, 24, 39, 0.9);
        backdrop-filter: blur(16px);
        border-bottom-left-radius: 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: var(--text-color);
    }

    .home {
        flex-direction: column-reverse;
        margin: 5rem 4rem;
        align-items: center;
    }


    .home-content h2 {
        font-size: 2.3rem;
    }

    .home-content h1 {
        font-size: clamp(3.2rem, 9vw, 6.8rem);
        margin-top: 2.4rem;
    }

    .home-img img {
        width: 68vw;
        max-width: 440px;
        border-radius: 50%;
    }

    .services h2 {
        margin-bottom: 3rem;
    }

    .services-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        justify-content: center;
        gap: 1.2rem;
    }
}