/* =========================================
   ROOT
========================================= */

:root {
    --navy: #07111f;
    --navy-light: #0d1b2d;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --white: #f8fafc;
    --text: #dbe4ef;
    --muted: #8fa0b5;
    --border: rgba(148, 163, 184, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--navy);
    color: var(--white);
}

a {
    text-decoration: none;
}

::selection {
    background: var(--blue);
    color: white;
}


/* =========================================
   NAVBAR
========================================= */

.custom-navbar {
    background: rgba(7, 17, 31, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white !important;
}

.logo span,
.footer-logo span {
    color: var(--blue);
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: #9dacbe !important;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 14px !important;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.contact-link {
    border: 1px solid rgba(59, 130, 246, 0.6);
    color: var(--blue-light) !important;
    margin-left: 10px;
}

.contact-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white !important;
}


/* =========================================
   HERO
========================================= */

.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(59, 130, 246, 0.12),
            transparent 30%
        ),
        var(--navy);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(148, 163, 184, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.08) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 85%
    );
}

.hero-row {
    min-height: calc(100vh - 80px);
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 30px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(65px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--blue);
}

.hero h2 {
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.blue-line {
    display: inline-block;
    width: 65px;
    height: 2px;
    background: var(--blue);
}

.hero-description {
    max-width: 520px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: var(--blue);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--blue);
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: var(--blue-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--muted);
    padding-bottom: 6px;
}

.btn-secondary-custom:hover {
    color: var(--blue-light);
    border-color: var(--blue);
}


/* =========================================
   CODE VISUAL
========================================= */

.developer-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    filter: blur(70px);
}

.code-window {
    width: 420px;
    background: #0b1524;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 10px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(59, 130, 246, 0.08);
    position: relative;
    z-index: 2;
}

.window-top {
    height: 45px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #475569;
}

.window-title {
    color: #64748b;
    font-size: 10px;
}

.code-content {
    padding: 28px 25px;
    font-family: monospace;
    font-size: 12px;
    line-height: 2;
    color: #94a3b8;
}

.code-content p {
    margin: 0;
}

.indent {
    padding-left: 25px;
}

.double-indent {
    padding-left: 50px;
}

.code-purple {
    color: #c084fc;
}

.code-blue {
    color: #60a5fa;
}

.code-green {
    color: #4ade80;
}

.code-white {
    color: white;
}

.typing-line {
    margin-top: 20px !important;
    color: #64748b;
}

.typing-line > span:first-child {
    color: var(--blue);
}

.cursor {
    display: inline-block;
    width: 6px;
    height: 13px;
    background: var(--blue);
    vertical-align: middle;
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}


/* Floating tech */

.floating-tech {
    position: absolute;
    z-index: 3;
    background: #101e31;
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 11px 15px;
    color: #cbd5e1;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.floating-tech i {
    color: var(--blue-light);
    font-size: 17px;
}

.tech-one {
    left: 0;
    bottom: 80px;
}

.tech-two {
    right: -15px;
    top: 75px;
}


/* =========================================
   TECH STRIP
========================================= */

.tech-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #091525;
    padding: 22px 0;
}

.tech-scroll {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #718096;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.tech-scroll b {
    color: var(--blue);
}


/* =========================================
   WORK
========================================= */

.work-section {
    background: var(--navy);
    color:white;
    padding: 120px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 55px;
}

.section-label {
    color: var(--white);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading h2,
.about-preview h2,
.cta-box h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
    font-weight: 700;
}

.section-heading h2 span,
.about-preview h2 span,
.cta-box h2 span {
    color: var(--white);
}

.all-projects {
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #64748b;
    padding-bottom: 5px;
}

.all-projects:hover {
    color: var(--blue);
    border-color: var(--blue);
}


/* Projects */

.project-card {
    display: block;
    color: #0f172a;
}

.project-preview {
    height: 430px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.project-card:hover .project-preview {
    transform: translateY(-5px);
}

.flower-preview {
    background:
        radial-gradient(
            circle at 50% 45%,
            #e0eaff,
            #9ab8e5 35%,
            #5579aa 100%
        );
}

.medicio-preview {
    background:
        radial-gradient(
            circle,
            #e7f1ff,
            #a9c8ef
        );
}

.project-number,
.project-tag {
    position: absolute;
    top: 18px;
    background: rgba(7, 17, 31, 0.85);
    color: white;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 1px;
}

.project-number {
    left: 18px;
}

.project-tag {
    right: 18px;
}

.project-center-text {
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 50px;
    line-height: 0.85;
    text-align: center;
    letter-spacing: -3px;
    text-shadow: 0 5px 20px rgba(189, 203, 141, 0.2);
}

.project-center-text strong {
    display: block;
    font-weight: 700;
}

.medical-symbol {
    width: 100px;
    height: 100px;
    border: 2px solid rgb(6, 5, 5);
    color: rgb(18, 15, 15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 300;
}

.project-info {
    padding: 22px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-info p {
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.project-info h3 {
    font-size: 24px;
    margin: 0;
    color: white;
}

.project-info > i {
    font-size: 20px;
}


/* =========================================
   ABOUT PREVIEW
========================================= */

.about-preview {
    background: var(--navy-light);
    padding: 120px 0;
}

.about-preview h2 {
    color: white;
}

.about-preview-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 30px;
}

.text-link {
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 700;
}

.text-link i {
    margin-left: 8px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    background: var(--navy);
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    border: 1px solid var(--border);
    padding: 90px 30px;
    background:
        radial-gradient(
            circle at center,
            rgba(59, 130, 246, 0.1),
            transparent 55%
        );
}

.cta-box h2 {
    color: white;
    max-width: 800px;
    margin: 0 auto 35px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #040b14;
    padding: 65px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-main p {
    max-width: 330px;
    color: #718096;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-navigation,
.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-navigation h6,
.footer-connect h6 {
    color: white;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-navigation a {
    color: #718096;
    font-size: 12px;
}

.footer-navigation a:hover {
    color: var(--blue-light);
}

.social-icons {
    display: flex;
    gap: 9px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #536174;
    font-size: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 20px;
    }

    .contact-link {
        width: fit-content;
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-row {
        padding: 70px 0;
    }

    .developer-visual {
        margin-top: 70px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 767px) {

    .hero h1 {
        font-size: 68px;
        letter-spacing: -3px;
    }

    .hero h2 {
        font-size: 27px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .developer-visual {
        height: 430px;
    }

    .code-window {
        width: 100%;
        max-width: 390px;
    }

    .tech-one {
        left: 0;
    }

    .tech-two {
        right: 0;
    }

    .tech-scroll {
        justify-content: center;
    }

    .work-section,
    .about-preview {
        padding: 80px 0;
    }

    .project-preview {
        height: 300px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}
/* =========================================
   PREMIUM ANIMATIONS
========================================= */



.hero-content,
.developer-visual,
.tech-strip,
.project-card,
.about-preview,
.cta-box {
    will-change: transform, opacity;
}


/* =========================================
   HERO ENTRANCE
========================================= */

.hero-content {
    animation: heroContentIn 1s ease-out both;
}

.developer-visual {
    animation: heroVisualIn 1.1s ease-out 0.15s both;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes heroVisualIn {

    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}


/* =========================================
   AVAILABILITY
========================================= */

.availability {
    animation: fadeDown 0.8s ease-out both;
}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   STATUS DOT
========================================= */

.status-dot {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }

}


/* =========================================
   HERO HEADING
========================================= */

.hero h1 {
    animation: headingReveal 1s ease-out 0.2s both;
}

.hero h2 {
    animation: headingReveal 1s ease-out 0.35s both;
}

.hero-description {
    animation: headingReveal 1s ease-out 0.45s both;
}

.hero-buttons {
    animation: headingReveal 1s ease-out 0.55s both;
}

@keyframes headingReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   BLUE LINE
========================================= */

.blue-line {
    transform-origin: left;
    animation: lineGrow 1s ease-out 0.8s both;
}

@keyframes lineGrow {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* =========================================
   CODE WINDOW FLOAT
========================================= */

.code-window {
    animation: codeFloat 5s ease-in-out infinite;
}

@keyframes codeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   VISUAL GLOW
========================================= */

.visual-glow {
    animation: glowMove 5s ease-in-out infinite;
}

@keyframes glowMove {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

}


/* =========================================
   FLOATING TECH CARDS
========================================= */

.tech-one {
    animation: floatOne 4s ease-in-out infinite;
}

.tech-two {
    animation: floatTwo 4.5s ease-in-out infinite;
}

@keyframes floatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes floatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

}


/* =========================================
   BUTTON EFFECT
========================================= */

.btn-primary-custom {
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.6s;
}

.btn-primary-custom:hover::before {
    left: 140%;
}


/* =========================================
   TECH STRIP
========================================= */

.tech-scroll span {
    transition: 0.3s ease;
}

.tech-scroll span:hover {
    color: var(--blue-light);
}


/* =========================================
   PROJECT HOVER
========================================= */

.project-preview {
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s ease;
}

.project-card:hover .project-preview {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.project-center-text {
    transition: 0.5s ease;
}

.project-card:hover .project-center-text {
    transform: scale(1.06);
    letter-spacing: -1px;
}

.medical-symbol {
    transition: 0.5s ease;
}

.project-card:hover .medical-symbol {
    transform: rotate(90deg);
}


/* =========================================
   PROJECT ARROW
========================================= */

.project-info > i {
    transition: 0.35s ease;
}

.project-card:hover .project-info > i {
    color: var(--blue);
    transform: translate(5px, -5px);
}


/* =========================================
   ABOUT LINK
========================================= */

.text-link i {
    display: inline-block;
    transition: 0.3s ease;
}

.text-link:hover i {
    transform: translateX(7px);
}


/* =========================================
   CTA GLOW
========================================= */

.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    filter: blur(70px);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-box h2,
.cta-box .section-label,
.cta-box .btn-primary-custom {
    position: relative;
    z-index: 2;
}


/* =========================================
   SECTION REVEAL
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   NAVBAR TRANSITION
========================================= */

.custom-navbar {
    transition:
        padding 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.custom-navbar.navbar-scrolled {
    background: rgba(4, 11, 20, 0.95);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    min-height: 70vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(59, 130, 246, 0.14),
            transparent 30%
        ),
        var(--navy);
}

.about-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.25;
}

.about-hero-content {
    position: relative;
    max-width: 900px;
    padding: 90px 0;
    animation: aboutHeroIn 1s ease-out both;
}

@keyframes aboutHeroIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.about-hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -4px;
    margin-bottom: 35px;
}

.about-hero h1 span {
    color: var(--blue);
    display: block;
}

.about-intro {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   INTRO SECTION
========================================= */

.about-intro-section {
    background: var(--navy);
    color: #0f172a;
    padding: 120px 0;
}

.about-card {
    min-height: 400px;
    padding: 45px;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            #5594e6,
            #16417d
        );

    transition: 0.5s;
    box-shadow: 0 2px 50px rgba(0, 0, 0, 0.25);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.card-number {
    position: absolute;
    top: 25px;
    left: 25px;

    font-size: 11px;
    font-weight: 700;
    color: #e0e3e8;
}

.card-code {
    position: absolute;
    top: 40px;
    right: 40px;

    font-family: monospace;
    font-size: 100px;
    font-weight: 700;

    color: rgba(232, 228, 228, 0.45);

    transform: rotate(-8deg);
}

.about-card h3 {
    position: relative;
    font-family: "Space Grotesk", sans-serif;
    font-size: 35px;
    margin-bottom: 12px;
    color: black;
}

.about-card p {
    position: relative;
    color: #e5e6e8;
    line-height: 1.7;
    margin: 0;
}

.about-text {
    padding-left: 30px;
}

.small-heading {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-text h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -2px;
    margin: 20px 0 30px;
    color: white;
}

.about-text h2 span {
    color: var(--blue);
}

.about-text > p:not(.small-heading) {
    color: #64748b;
    line-height: 1.9;
    font-size: 15px;
}


/* =========================================
   STATS
========================================= */

.stats-section {
    background:--navy;
    padding: 0;
}

.stats-row {
    border-left: 1px solid #d8e0ea;
}

.stat-box {
    min-height: 190px;
    border-right: 1px solid #d8e0ea;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;
    transition: 0.4s;
}

.stat-box:hover {
    background: white;
}

.stat-box h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 50px;
    letter-spacing: -2px;
    margin-bottom: 7px;
}

.stat-box h3 span {
    color: var(--blue);
}

.stat-box p {
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}


/* =========================================
   WHAT I DO
========================================= */

.what-section {
    background: var(--navy);
    padding: 120px 0;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 55px;
}

.section-title-row h2,
.journey-section h2 {
    font-family: "Space Grotesk", sans-serif;
    color: white;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-title-row h2 span,
.journey-section h2 span {
    color: var(--blue);
}

.section-description {
    max-width: 330px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

.service-box {
    height: 100%;
    min-height: 310px;

    padding: 35px;

    position: relative;

    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.05);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: #475569;
    font-size: 10px;
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(96, 165, 250, 0.25);
    color: var(--blue-light);

    font-size: 22px;

    margin-bottom: 55px;

    transition: 0.4s;
}

.service-box:hover .service-icon {
    background: var(--blue);
    color: white;
    transform: rotate(-5deg);
}

.service-box h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    margin-bottom: 15px;
}

.service-box p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}


/* =========================================
   JOURNEY
========================================= */

.journey-section {
    background: #091525;
    padding: 120px 0;
}

.timeline {
    border-left: 1px solid rgba(148, 163, 184, 0.2);
    padding-left: 45px;
}

.timeline-item {
    position: relative;
    padding-bottom: 55px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--blue);

    left: -51px;
    top: 5px;

    box-shadow: 0 0 18px rgba(59, 130, 246, 0.7);
}

.timeline-label {
    color: var(--blue-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-item h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    margin: 10px 0 10px;
}

.timeline-item p {
    max-width: 600px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}


/* =========================================
   ABOUT CTA
========================================= */

.about-cta {
    background: var(--navy);
    padding: 100px 0;
}

.about-cta-box {
    text-align: center;
    padding: 90px 20px;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at center,
            rgba(59, 130, 246, 0.1),
            transparent 55%
        );
}

.about-cta h2 {
    font-family: "Space Grotesk", sans-serif;
    color: white;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.about-cta h2 span {
    color: var(--blue);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-text {
        padding-left: 0;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

}


@media (max-width: 767px) {

    .about-hero-content {
        padding: 70px 0;
    }

    .about-hero h1 {
        letter-spacing: -2px;
    }

    .about-intro-section,
    .what-section,
    .journey-section {
        padding: 80px 0;
    }

    .about-card {
        min-height: 320px;
    }

    .stats-row {
        border-left: 0;
    }

    .stat-box {
        border-bottom: 1px solid #d8e0ea;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -36px;
    }

}
/* =========================================
   SKILLS HERO
========================================= */

.skills-hero {
    min-height: 68vh;
    padding-top: 80px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(59, 130, 246, 0.14),
            transparent 30%
        ),
        var(--navy);
}

.skills-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.25;
}

.skills-hero-content {
    position: relative;
    max-width: 900px;
    padding: 90px 0;

    animation: skillsHeroIn 1s ease-out both;
}

@keyframes skillsHeroIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.skills-hero h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 7vw, 95px);

    line-height: 0.95;
    letter-spacing: -4px;

    margin-bottom: 30px;
}

.skills-hero h1 span {
    display: block;
    color: var(--blue);
}

.skills-hero-content > p:last-child {
    max-width: 600px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MAIN SKILLS
========================================= */

.skills-main {
    background: linear-gradient(135deg, #071426,#0b1d38,#102b50);
    color: #0f172a;

    padding: 120px 0;
}

.skills-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 60px;
}

.skills-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;
    letter-spacing: -2px;
    color: white;
    margin: 0;
}

.skills-heading h2 span {
    color: var(--blue);
}

.skills-heading > p {
    max-width: 350px;

    color: #64748b;

    font-size: 13px;
    line-height: 1.8;

    margin: 0;
}


/* =========================================
   SKILL CARD
========================================= */

.skill-card {
    padding: 30px;

    
    background: linear-gradient(145deg, #10264a, #0b1c38);
    border: 1px solid rgba(63, 137, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);


    

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.skill-card:hover {
    transform: translateY(-7px);

    border-color: rgba(59, 130, 246, 0.4);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.09);
}

.skill-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.skill-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    
    background: #10284d;
    border: 1px solid rgba(64, 139, 255, 0.5);
    color: #4d91ff;
    border-radius: 15px;


    font-size: 22px;

    transition: 0.4s;
}

.skill-card:hover .skill-icon {
    background: var(--blue);
    color: white;
    border-color: var(--blue);

    transform: rotate(-5deg);
}

.skill-title h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
    color: #ffffff;

    margin: 0 0 4px;
}
.skill-top strong {
    color: #4d91ff;
    font-size: 20px;
    
}



.skill-title span {
    color: #8faed5;

    font-size: 10px;
}

.skill-top > strong {
    color: var(--blue);

    font-size: 12px;
}


/* =========================================
   SKILL BAR
========================================= */

.skill-bar {
    height: 8px;

    width: 100%;
    border-radius: 20px;

    overflow: hidden;
    background: #17345d ;
}

.skill-progress {
    display: block;

    height: 100%;

    width: 0;

    background: #4d91ff;
    border-radius: 20px;
    transition:
        width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/*skill icon*/
.skill-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #10284d;
    border: 1px solid rgba(64, 139, 255, 0.5);
    color: #4d91ff;
    border-radius: 15px;

    font-size: 25px;

    transition: 0.4s;
}



/* =========================================
   TOOLS
========================================= */

.tools-section {
    background: #091525;

    padding: 120px 0;
}

.tools-heading {
    margin-bottom: 45px;
}

.tools-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    color: white;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1;
    letter-spacing: -2px;
}

.tools-heading h2 span {
    color: var(--blue);
}

.tools-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.tool-item {
    min-height: 150px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 15px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    color: #94a3b8;

    transition: 0.4s;
}

.tool-item i {
    font-size: 30px;

    color: var(--blue-light);

    transition: 0.4s;
}

.tool-item span {
    font-size: 11px;

    letter-spacing: 1px;
}

.tool-item:hover {
    background: rgba(59, 130, 246, 0.06);

    color: white;
}

.tool-item:hover i {
    transform: translateY(-5px) scale(1.08);
}


/* =========================================
   LEARNING
========================================= */

.learning-section {
    background: var(--navy);

    padding: 100px 0;
}

.learning-box {
    display: grid;

    grid-template-columns: 100px 1.2fr 1fr;

    gap: 45px;

    align-items: center;

    padding: 60px;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(59, 130, 246, 0.08),
            transparent 40%
        );
}

.learning-number {
    font-family: "Space Grotesk", sans-serif;

    color: var(--blue);

    font-size: 35px;
}

.learning-box h2 {
    font-family: "Space Grotesk", sans-serif;

    color: white;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1;

    letter-spacing: -2px;

    margin: 0;
}

.learning-box h2 span {
    color: var(--blue);
}

.learning-text p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================================
   CTA
========================================= */

.skills-cta {
    background: var(--navy);

    padding: 0 0 100px;
}

.skills-cta-box {
    text-align: center;

    padding: 90px 20px;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at center,
            rgba(59, 130, 246, 0.1),
            transparent 55%
        );
}

.skills-cta-box h2 {
    font-family: "Space Grotesk", sans-serif;

    color: white;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 35px;
}

.skills-cta-box h2 span {
    color: var(--blue);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .skills-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .tools-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .learning-box {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}


@media (max-width: 767px) {

    .skills-main,
    .tools-section {
        padding: 80px 0;
    }

    .skills-hero-content {
        padding: 70px 0;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .learning-box {
        padding: 35px;
    }

}
/* =========================================
   PROJECT HERO
========================================= */

.projects-hero {
    min-height: 68vh;
    padding-top: 80px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(59, 130, 246, 0.14),
            transparent 30%
        ),
        var(--navy);
}

.projects-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.25;
}

.projects-hero-content {
    position: relative;
    max-width: 900px;
    padding: 90px 0;

    animation: projectHeroIn 1s ease-out both;
}

@keyframes projectHeroIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.projects-hero h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 7vw, 95px);

    line-height: 0.95;
    letter-spacing: -4px;

    margin-bottom: 30px;
}

.projects-hero h1 span {
    display: block;
    color: var(--blue);
}

.projects-hero-content > p:last-child {
    max-width: 600px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   PROJECT SECTION
========================================= */

.projects-section {
    background: var(--navy);
    color:white;

    padding: 120px 0;
}

.projects-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 60px;
}

.projects-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;
    letter-spacing: -2px;

    margin: 0;
}

.projects-heading h2 span {
    color: var(--white);
}

.projects-heading > p {
    max-width: 350px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;

    margin: 0;
}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {
    height: 100%;

    background:#101d2f;

    border: 1px solid #24364d;

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(59, 130, 246, 0.4);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.12);
}


/* =========================================
   PROJECT IMAGE
========================================= */

.project-image {
    height: 330px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.5s;
}

.project-card:hover .project-image {
    transform: scale(1.01);
}

.project-number {
    position: absolute;

    top: 22px;
    left: 25px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 11px;
    font-weight: 700;

    z-index: 2;
}


/* =========================================
   FLOWER
========================================= */

.flower-project {
    background:
        radial-gradient(
            circle at center,
            #f3d8e8,
            #b97f9d 55%,
            #573d52
        );
}

.flower-visual {
    display: flex;
    flex-direction: column;

    align-items: center;

    color: white;

    z-index: 1;
}

.flower-visual i {
    font-size: 65px;
    margin-bottom: 12px;
}

.flower-visual span {
    font-size: 11px;
    letter-spacing: 4px;
}

.flower-visual strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
}


/* =========================================
   MEDICAL
========================================= */

.medical-project {
    background:
        linear-gradient(
            135deg,
            #dceff4,
            #79aebf
        );
}

.medical-visual {
    display: flex;
    align-items: center;
    gap: 18px;

    color: white;
}

.medical-cross {
    font-size: 100px;
    font-weight: 700;

    line-height: 1;
}

.medical-visual span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
}


/* =========================================
   STUDY
========================================= */

.study-project {
    background:
        radial-gradient(
            circle at center,
            #e2e8f0,
            #8191a8
        );
}

.study-visual,
.travel-visual,
.wood-visual {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
}

.study-visual i,
.travel-visual i,
.wood-visual i {
    font-size: 60px;
    margin-bottom: 15px;
}

.study-visual span,
.travel-visual span,
.wood-visual span {
    font-size: 10px;
    letter-spacing: 4px;
}

.study-visual strong,
.travel-visual strong,
.wood-visual strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
}


/* =========================================
   TRAVEL
========================================= */

.travel-project {
    background:
        linear-gradient(
            135deg,
            #8db9d0,
            #284c67
        );
}


/* =========================================
   WOODWORK
========================================= */

.wood-project {
    height: 400px;

    background:
        linear-gradient(
            rgba(31, 20, 12, 0.25),
            rgba(31, 20, 12, 0.6)
        ),
        linear-gradient(
            135deg,
            #b7895d,
            #65462d,
            #2c2119
        );
}

.wood-visual i {
    font-size: 75px;
}

.wood-visual strong {
    font-size: 48px;
}

.project-status {
    position: absolute;

    top: 22px;
    right: 22px;

    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,0.3);

    color: white;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;

    background: rgba(0,0,0,0.15);

    backdrop-filter: blur(8px);
}


/* =========================================
   OVERLAY
========================================= */

.project-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(4, 11, 20, 0.55);

    opacity: 0;

    transition: 0.4s;
}

.project-overlay i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.5);

    color: white;

    font-size: 20px;

    transform: translateY(15px);

    transition: 0.4s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-overlay i {
    transform: translateY(0);
}


/* =========================================
   PROJECT CONTENT
========================================= */

.project-content {
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 190px;
}

.project-category {
    color: var(--blue);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-content h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 26px;

    margin: 9px 0 10px;
    color: white;
}
.project-overlay{
    text-decoration: none;
}

.project-content p {
    color: #64748b;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}
.project-link {
    color: #60a5fa !important;
}

.project-link i {
    color: #60a5fa;
}

.project-link:hover {
    color: #ffffff !important;
}

.project-link:hover i {
    color: #ffffff;
}

.project-tech {
    display: flex;

    gap: 7px;

    flex-wrap: wrap;

    margin-top: 25px;
}

.project-tech span {
    padding: 6px 10px;

    background: #f1f5f9;

    color: #64748b;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.7px;
}


/* =========================================
   COMING SOON
========================================= */

.coming-project {
    min-height: 100%;

    background: #091525;

    border-color: #1e3045;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-content {
    position: relative;

    text-align: center;

    padding: 40px;
}

.coming-content .project-number {
    color: #64748b;
}

.coming-content > i {
    display: block;

    color: var(--blue);

    font-size: 45px;

    margin-bottom: 25px;
}

.coming-content h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 30px;

    margin: 10px 0;
}

.coming-content p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.projects-cta {
    background: var(--navy);

    padding: 0 0 100px;
}

.projects-cta-box {
    text-align: center;

    padding: 90px 20px;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at center,
            rgba(59, 130, 246, 0.1),
            transparent 55%
        );
}

.projects-cta-box h2 {
    font-family: "Space Grotesk", sans-serif;

    color: white;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 35px;
}

.projects-cta-box h2 span {
    color: var(--blue);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .projects-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .project-image {
        height: 300px;
    }

    .wood-project {
        height: 330px;
    }

}


@media (max-width: 767px) {

    .projects-section {
        padding: 80px 0;
    }

    .projects-hero-content {
        padding: 70px 0;
    }

    .project-image,
    .wood-project {
        height: 280px;
    }

    .flower-visual strong,
    .study-visual strong,
    .travel-visual strong,
    .wood-visual strong {
        font-size: 30px;
    }

    .medical-visual span {
        font-size: 30px;
    }

}
/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    min-height: 68vh;
    padding-top: 80px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(59, 130, 246, 0.15),
            transparent 30%
        ),
        var(--navy);
}

.contact-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(148, 163, 184, 0.07) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: 0.25;
}

.contact-hero-content {
    position: relative;

    max-width: 850px;

    padding: 90px 0;

    animation: contactHeroIn 1s ease-out both;
}

@keyframes contactHeroIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.contact-hero h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 7vw, 95px);

    line-height: .95;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.contact-hero h1 span {
    display: block;
    color: var(--blue);
}

.contact-hero-content > p:last-child {
    max-width: 600px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    background: var(--white);

    color: #0f172a;

    padding: 120px 0;
}


/* =========================================
   INTRO
========================================= */

.contact-intro h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 30px;
}

.contact-intro h2 span {
    color: var(--blue);
}

.intro-text {
    max-width: 440px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 50px;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #e2e8f0;
}

.info-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dbe3ed;

    color: var(--blue);

    font-size: 19px;

    transition: .35s;
}

.contact-info:hover .info-icon {
    background: var(--blue);

    color: white;

    border-color: var(--blue);

    transform: translateY(-3px);
}

.contact-info span {
    display: block;

    color: #94a3b8;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.contact-info a {
    color: #0f172a;

    font-size: 13px;

    text-decoration: none;

    transition: .3s;
}

.contact-info a:hover {
    color: var(--blue);
}


/* =========================================
   SOCIALS
========================================= */

.contact-socials {
    margin-top: 45px;
}

.contact-socials > span {
    display: block;

    color: #94a3b8;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}

.contact-socials > div {
    display: flex;
    gap: 10px;
}

.contact-socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dbe3ed;

    color: #334155;

    text-decoration: none;

    transition: .3s;
}

.contact-socials a:hover {
    background: var(--blue);

    color: white;

    border-color: var(--blue);

    transform: translateY(-4px);
}


/* =========================================
   FORM BOX
========================================= */

.contact-form-box {
    padding: 45px;

    background: #f8fafc;

    border: 1px solid #dce3ec;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .06);
}

.form-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    margin-bottom: 30px;

    border-bottom: 1px solid #dce3ec;
}

.form-header span {
    color: var(--blue);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.form-header i {
    color: #94a3b8;
}


/* =========================================
   FORM FIELDS
========================================= */

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;

    color: #64748b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;

    margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
    width: 100%;

    padding: 15px 0;

    border: none;

    border-bottom: 1px solid #cbd5e1;

    outline: none;

    background: transparent;

    color: #0f172a;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    resize: vertical;

    transition: .3s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a8b2c1;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--blue);
}

.form-field textarea {
    min-height: 130px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.submit-btn {
    width: 100%;

    padding: 17px 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    background: var(--navy);

    color: white;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .4s;
}

.submit-btn:hover {
    background: var(--blue);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(37, 99, 235, .2);
}

.submit-btn i {
    transition: .3s;
}

.submit-btn:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   FORM MESSAGE
========================================= */

.form-message {
    display: none;

    margin-top: 20px;

    padding: 12px;

    text-align: center;

    font-size: 11px;

    color: #15803d;

    background: #dcfce7;

    border: 1px solid #bbf7d0;
}

.form-message.show {
    display: block;

    animation: messageIn .4s ease;
}

@keyframes messageIn {

    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   AVAILABILITY
========================================= */

.availability-section {
    background: var(--white);

    padding: 0 0 110px;
}

.availability-box {
    padding: 35px 40px;

    display: flex;

    align-items: center;

    gap: 20px;

    background: var(--navy);

    border: 1px solid var(--border);
}

.availability-dot {
    width: 10px;
    height: 10px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34,197,94,.1);
}

.availability-box span {
    color: #64748b;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.availability-box h3 {
    margin: 5px 0 0;

    color: white;

    font-family: "Space Grotesk", sans-serif;

    font-size: 19px;
}

.availability-link {
    margin-left: auto;

    padding: 13px 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    border: 1px solid #334155;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    transition: .3s;
}

.availability-link:hover {
    background: var(--blue);

    border-color: var(--blue);

    color: white;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-form-box {
        padding: 35px;
    }

}


@media (max-width: 767px) {

    .contact-hero-content {
        padding: 70px 0;
    }

    .contact-form-box {
        padding: 25px;
    }

    .availability-box {
        flex-wrap: wrap;

        padding: 30px;
    }

    .availability-link {
        margin-left: 30px;
    }

}
/* =====================================================
   PROJECTS PAGE
   ===================================================== */


/* ================= PROJECT HERO ================= */

.projects-hero {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.projects-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size: 70px 70px;
}


.projects-hero-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}


.projects-hero-content .section-label {
    margin-bottom: 20px;
}


.projects-hero-content h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(55px, 8vw, 100px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 30px;
}


.projects-hero-content h1 span {
    color: #7c8cff;
}


.projects-hero-content > p:last-child {
    max-width: 600px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.7;
}


/* ================= PROJECT SECTION ================= */

.projects-section {
    padding: 110px 0;
}


.projects-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 55px;
}


.projects-heading h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
}


.projects-heading h2 span {
    color: #7c8cff;
}


.projects-heading > p {
    max-width: 430px;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.65;
}


/* ================= SECTION LABEL ================= */

.section-label {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.65;
}


/* ================= PROJECT CARD ================= */

.project-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.025);
    transition: transform 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}


.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124,140,255,0.35);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}


/* ================= PROJECT IMAGE ================= */

.project-image {
    min-height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        transparent 60%
    );
    pointer-events: none;
}


.project-number {
    position: absolute;
    top: 20px;
    left: 22px;
    z-index: 3;

    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.15);
}


/* ================= DEMO VISUALS ================= */

.flower-project {
    background:
        radial-gradient(circle at 30% 35%,
        rgba(255,150,210,0.28),
        transparent 35%),
        linear-gradient(135deg,
        #30203c,
        #17151e);
}


.medical-project {
    background:
        radial-gradient(circle at 70% 35%,
        rgba(100,180,255,0.25),
        transparent 35%),
        linear-gradient(135deg,
        #142936,
        #10191f);
}


.study-project {
    background:
        radial-gradient(circle at 35% 35%,
        rgba(130,150,255,0.28),
        transparent 35%),
        linear-gradient(135deg,
        #20294a,
        #141722);
}


.travel-project {
    background:
        radial-gradient(circle at 70% 35%,
        rgba(100,200,255,0.25),
        transparent 35%),
        linear-gradient(135deg,
        #163b45,
        #111d24);
}


.wood-project {
    background:
        radial-gradient(circle at 50% 40%,
        rgba(190,130,70,0.25),
        transparent 40%),
        linear-gradient(135deg,
        #3a2a21,
        #171412);
}


/* ================= FLOWER VISUAL ================= */

.flower-visual,
.medical-visual,
.study-visual,
.travel-visual,
.wood-visual {
    position: relative;
    z-index: 2;
    text-align: center;
}


.flower-visual i {
    display: block;
    font-size: 65px;
    margin-bottom: 15px;
}


.flower-visual span,
.flower-visual strong,
.study-visual span,
.study-visual strong,
.travel-visual span,
.travel-visual strong,
.wood-visual span,
.wood-visual strong {
    display: block;
}


.flower-visual span,
.study-visual span,
.travel-visual span,
.wood-visual span {
    font-size: 14px;
    letter-spacing: 5px;
    opacity: 0.65;
}


.flower-visual strong,
.study-visual strong,
.travel-visual strong,
.wood-visual strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    letter-spacing: -1px;
}


/* ================= MEDICAL ================= */

.medical-cross {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 55px;
    font-weight: 300;

    border: 1px solid rgba(255,255,255,0.25);
}


.medical-visual span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    letter-spacing: 3px;
}


/* ================= STUDY ================= */

.study-visual i {
    display: block;
    font-size: 65px;
    margin-bottom: 15px;
}


/* ================= TRAVEL ================= */

.travel-visual i {
    display: block;
    font-size: 65px;
    margin-bottom: 15px;
}


/* ================= WOODWORK ================= */

.wood-visual i {
    display: block;
    font-size: 60px;
    margin-bottom: 18px;
}


.wood-visual strong {
    font-size: 42px;
}


/* ================= PROJECT LINK ================= */

.project-link {
    position: absolute;
    right: 22px;
    bottom: 20px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 16px;

    color: #fff;
    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;

    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.2);

    backdrop-filter: blur(8px);

    transition: 0.3s ease;
}


.project-link:hover {
    color: #fff;
    background: #7c8cff;
    border-color: #7c8cff;
}


.project-link i {
    font-size: 14px;
}


/* ================= PROJECT OVERLAY ================= */

.project-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    background: rgba(0,0,0,0.3);

    transition: 0.35s ease;
}


.project-card:hover .project-overlay {
    opacity: 1;
}


.project-overlay i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;

    font-size: 20px;
}


/* ================= PROJECT CONTENT ================= */

.project-content {
    min-height: 190px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}


.project-category {
    display: inline-block;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 10px;

    opacity: 0.55;
}


.project-content h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 600;

    margin-bottom: 12px;
}


.project-content p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;

    opacity: 0.65;
}


/* ================= TECHNOLOGIES ================= */

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.project-tech span {
    padding: 6px 11px;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.025);

    opacity: 0.75;
}


/* ================= CLIENT PROJECTS ================= */

.client-projects-section {
    padding-top: 40px;
}


.client-projects-section .projects-heading {
    margin-bottom: 55px;
}


.client-projects-section .featured-project {
    width: 100%;
}


.project-status {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 5;

    padding: 8px 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    background: rgba(124,140,255,0.18);
    border: 1px solid rgba(124,140,255,0.4);

    backdrop-filter: blur(8px);
}


/* ================= CTA ================= */

.projects-cta {
    padding: 80px 0 120px;
}


.projects-cta-box {
    padding: 80px 50px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.025);
}


.projects-cta-box h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 600;
    letter-spacing: -2px;

    margin: 15px auto 35px;
    max-width: 750px;
}


.projects-cta-box h2 span {
    color: #7c8cff;
}


.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    color: #fff;
    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;

    background: #7c8cff;

    transition: 0.3s ease;
}


.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-3px);
    background: #6978ed;
}


.btn-primary-custom i {
    font-size: 14px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 991px) {

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .projects-heading > p {
        max-width: 600px;
    }

    .projects-hero {
        min-height: 470px;
    }

}


@media (max-width: 767px) {

    .projects-hero {
        min-height: 430px;
        padding-top: 100px;
    }

    .projects-hero-content h1 {
        letter-spacing: -2px;
    }

    .projects-section {
        padding: 75px 0;
    }

    .projects-heading {
        margin-bottom: 40px;
    }

    .projects-heading h2 {
        letter-spacing: -1px;
    }

    .project-image {
        min-height: 290px;
    }

    .project-content {
        padding: 25px;
    }

    .project-content h3 {
        font-size: 24px;
    }

    .flower-visual strong,
    .study-visual strong,
    .travel-visual strong,
    .wood-visual strong {
        font-size: 30px;
    }

    .medical-visual span {
        font-size: 30px;
    }

    .projects-cta {
        padding: 50px 0 80px;
    }

    .projects-cta-box {
        padding: 55px 25px;
    }

}


@media (max-width: 575px) {

    .projects-hero-content > p:last-child {
        font-size: 15px;
    }

    .project-image {
        min-height: 260px;
    }

    .project-number {
        top: 15px;
        left: 15px;
    }

    .project-status {
        top: 15px;
        right: 15px;
        font-size: 9px;
        padding: 7px 9px;
    }

    .project-link {
        right: 15px;
        bottom: 15px;
    }

}