/* =====================================
   RESET
===================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Noto Sans Myanmar", sans-serif;
    background: #070b14;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1150px, 92%);
    margin: auto;
}

.section {
    padding: 110px 0;
}



/* =====================================
   NAVBAR
===================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(7, 11, 20, 0.75);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
}

.logo-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #00a8ff,
        #7c3aed
    );

    box-shadow:
        0 0 25px rgba(0,168,255,.3);
}

.logo-highlight {
    color: #00a8ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: #a9b1c3;
    font-size: 14px;
    transition: .3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}

.nav-button {
    padding: 10px 20px;

    border-radius: 9px;

    background: #00a8ff;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

.nav-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0,168,255,.35);
}

.menu-toggle {
    display: none;

    border: 0;
    background: none;

    color: white;
    font-size: 24px;
}



/* =====================================
   HERO
===================================== */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;

    padding-top: 100px;

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: #006eff;

    filter: blur(180px);

    opacity: .12;

    top: 5%;
    left: -200px;
}

.hero-container {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 60px;

    align-items: center;

    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 7px 14px;

    border-radius: 30px;

    border: 1px solid
        rgba(0,168,255,.25);

    background:
        rgba(0,168,255,.07);

    color: #8fdcff;

    font-size: 12px;

    margin-bottom: 25px;
}

.pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #00e676;

    box-shadow:
        0 0 12px #00e676;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.15;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 25px;
}

.gradient-text {
    filter:
        drop-shadow(
            0 0 15px
            rgba(0,168,255,.5)
        );
}

.arrow {
    color: #00a8ff;
}

.hero-subtitle {
    font-size: 21px;

    color: #c5cbd8;

    margin-bottom: 15px;
}

.hero-subtitle strong {
    color: #ffffff;
}

.hero-description {
    max-width: 620px;

    color: #8e98aa;

    font-family:
        "Noto Sans Myanmar",
        sans-serif;

    font-size: 15px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 32px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 22px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #00a8ff,
            #006eff
        );

    box-shadow:
        0 10px 30px
        rgba(0,168,255,.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0,168,255,.35);
}

.btn-outline {
    border: 1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.03);

    color: #d5d9e2;
}

.btn-outline:hover {
    background:
        rgba(255,255,255,.08);

    transform: translateY(-3px);
}

.hero-contact {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 30px;

    color: #8d98aa;

    font-size: 12px;
}

.hero-contact i {
    color: #00e676;
    margin-right: 5px;
}



/* =====================================
   CODE CARD
===================================== */

.hero-visual {
    position: relative;
}

.code-card {
    background:
        rgba(13,19,32,.9);

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.4);

    transform:
        perspective(1000px)
        rotateY(-5deg);

    transition: .5s;
}

.code-card:hover {
    transform:
        perspective(1000px)
        rotateY(0deg)
        translateY(-5px);
}

.code-header {
    height: 48px;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 0 18px;

    border-bottom: 1px solid
        rgba(255,255,255,.06);
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.window-buttons span {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #475064;
}

.file-name {
    color: #7d879a;
    font-size: 11px;
}

.code-body {
    padding: 25px;

    min-height: 360px;
}

.code-body pre {
    font-family:
        "Courier New",
        monospace;

    font-size: 13px;

    line-height: 1.9;

    color: #cdd5e4;
}

.code-purple {
    color: #c084fc;
}

.code-blue {
    color: #38bdf8;
}

.code-green {
    color: #4ade80;
}

.code-footer {
    height: 38px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 18px;

    color: #667085;

    font-size: 10px;

    border-top: 1px solid
        rgba(255,255,255,.05);
}

.code-footer i {
    color: #00e676;
    font-size: 7px;
}



/* Floating Cards */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 12px;

    background:
        rgba(16,23,38,.9);

    border: 1px solid
        rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.35);
}

.floating-card i {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(0,168,255,.1);

    color: #00a8ff;
}

.floating-card strong {
    display: block;
    font-size: 11px;
}

.floating-card small {
    display: block;
    color: #727d91;
    font-size: 9px;
}

.card-one {
    left: -35px;
    bottom: 50px;
}

.card-two {
    right: -30px;
    top: 40px;
}



/* =====================================
   SECTION HEADING
===================================== */

.section-heading {
    text-align: center;

    max-width: 700px;

    margin:
        0 auto 55px;
}

.section-label {
    display: inline-block;

    color: #00a8ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.section-heading h2 {
    font-size:
        clamp(30px,4vw,45px);

    line-height: 1.2;

    margin-bottom: 15px;
}

.section-heading h2 span,
.about-content h2 span,
.cta h2 span {
    color: #00a8ff;
}

.section-heading p {
    color: #7f899b;

    font-size: 14px;
}



/* =====================================
   SERVICES
===================================== */

.services {
    background: #090e18;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 30px;

    min-height: 270px;

    border-radius: 15px;

    background:
        rgba(255,255,255,.025);

    border: 1px solid
        rgba(255,255,255,.06);

    overflow: hidden;

    transition: .35s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0,168,255,.25);

    background:
        rgba(0,168,255,.035);
}

.service-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    margin-bottom: 22px;

    font-size: 20px;
}

.service-icon.blue {
    background: rgba(0,168,255,.1);
    color: #00a8ff;
}

.service-icon.purple {
    background: rgba(168,85,247,.1);
    color: #a855f7;
}

.service-icon.green {
    background: rgba(34,197,94,.1);
    color: #22c55e;
}

.service-icon.orange {
    background: rgba(249,115,22,.1);
    color: #f97316;
}

.service-icon.red {
    background: rgba(239,68,68,.1);
    color: #ef4444;
}

.service-icon.cyan {
    background: rgba(6,182,212,.1);
    color: #06b6d4;
}

.service-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.service-card p {
    color: #7e899b;
    font-size: 12px;
}

.service-number {
    position: absolute;

    right: 22px;
    bottom: 12px;

    font-size: 50px;

    font-weight: 800;

    color:
        rgba(255,255,255,.025);
}



/* =====================================
   ABOUT
===================================== */

.about-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    height: 430px;

    position: relative;

    display: grid;
    place-items: center;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(0,168,255,.15),
            transparent 65%
        );

    border: 1px solid
        rgba(255,255,255,.05);
}

.about-box {
    width: 220px;
    height: 220px;

    border-radius: 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 7px;

    border:
        1px solid
        rgba(0,168,255,.2);

    background:
        rgba(0,168,255,.04);

    box-shadow:
        0 0 80px
        rgba(0,168,255,.12);
}

.about-box i {
    font-size: 55px;

    color: #00a8ff;

    margin-bottom: 10px;
}

.about-box span {
    color: #657084;

    font-size: 11px;

    letter-spacing: 4px;
}

.about-box strong {
    font-size: 22px;

    letter-spacing: 5px;
}

.experience-card {
    position: absolute;

    right: -20px;
    bottom: 50px;

    padding: 15px 20px;

    display: flex;
    flex-direction: column;

    border-radius: 12px;

    background: #111927;

    border: 1px solid
        rgba(255,255,255,.07);

    box-shadow:
        0 20px 40px
        rgba(0,0,0,.3);
}

.experience-card strong {
    color: #00a8ff;

    font-size: 25px;
}

.experience-card span {
    color: #737e91;

    font-size: 10px;
}

.about-content h2 {
    font-size:
        clamp(30px,4vw,45px);

    line-height: 1.25;

    margin-bottom: 20px;
}

.about-content > p {
    color: #7f899a;

    font-size: 14px;

    margin-bottom: 30px;
}

.feature {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        rgba(0,168,255,.08);

    color: #00a8ff;
}

.feature h4 {
    font-size: 14px;
}

.feature p {
    color: #737e91;

    font-size: 11px;
}

/* =====================================
   PORTFOLIO
===================================== */

.portfolio {
    background: #070b14;
}


.portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.portfolio-card {

    overflow: hidden;

    border-radius: 16px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.06);

    transition: .35s;

}


.portfolio-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0,168,255,.25);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);

}


/* Image */

.portfolio-image {

    position: relative;

    height: 210px;

    overflow: hidden;

    background:
        #101827;

}


.portfolio-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.portfolio-card:hover
.portfolio-image img {

    transform: scale(1.06);

}


.portfolio-placeholder {

    width: 100%;

    height: 100%;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(0,168,255,.12),
            transparent 70%
        );

}


.portfolio-placeholder i {

    font-size: 55px;

    color:
        rgba(0,168,255,.45);

}


/* Overlay */

.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(0,0,0,.55);

    opacity: 0;

    transition: .3s;

}


.portfolio-card:hover
.portfolio-overlay {

    opacity: 1;

}


.portfolio-overlay a {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        #00a8ff;

    color: white;

    transition: .3s;

}


.portfolio-overlay a:hover {

    transform: scale(1.1);

}


/* Content */

.portfolio-content {

    padding: 22px;

}


.portfolio-content h3 {

    font-size: 17px;

    margin-bottom: 9px;

}


.portfolio-content p {

    color: #7d8798;

    font-size: 12px;

    line-height: 1.8;

    min-height: 65px;

}


.project-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: #00a8ff;

    font-size: 12px;

    font-weight: 600;

}


.project-link i {

    transition: .3s;

}


.project-link:hover i {

    transform:
        translateX(5px);

}


/* Empty */

.portfolio-empty {

    grid-column:
        1 / -1;

    text-align: center;

    padding: 70px 20px;

    border:
        1px dashed
        rgba(255,255,255,.1);

    border-radius: 15px;

}


.portfolio-empty i {

    font-size: 40px;

    color: #00a8ff;

    margin-bottom: 15px;

}


.portfolio-empty h3 {

    font-size: 18px;

}


.portfolio-empty p {

    color: #707a8c;

    font-size: 12px;

}

/* =====================================
   TECHNOLOGIES
===================================== */

.technologies {
    background: #090e18;
}

.tech-grid {
    display: grid;

    grid-template-columns:
        repeat(6,1fr);

    gap: 15px;
}

.tech-item {
    min-height: 120px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 10px;

    border-radius: 13px;

    background:
        rgba(255,255,255,.025);

    border: 1px solid
        rgba(255,255,255,.06);

    color: #818b9d;

    transition: .3s;
}

.tech-item i {
    font-size: 30px;
}

.tech-item span {
    font-size: 11px;
}

.tech-item:hover {
    color: #00a8ff;

    transform: translateY(-5px);

    border-color:
        rgba(0,168,255,.2);
}



/* =====================================
   PROCESS
===================================== */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    position: relative;
}

.process-item {
    text-align: center;

    position: relative;

    padding: 30px 20px;
}

.process-number {
    font-size: 11px;

    color: #00a8ff;

    margin-bottom: 15px;
}

.process-item > i {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin: auto;

    border-radius: 50%;

    background:
        rgba(0,168,255,.08);

    border:
        1px solid
        rgba(0,168,255,.15);

    color: #00a8ff;

    font-size: 22px;
}

.process-item h3 {
    font-size: 16px;

    margin-top: 18px;
}

.process-item p {
    color: #737e91;

    font-size: 11px;
}



/* =====================================
   CTA
===================================== */

.cta {
    padding: 60px 0;
}

.cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 55px;

    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            rgba(0,168,255,.09),
            rgba(124,58,237,.07)
        );

    border:
        1px solid
        rgba(0,168,255,.12);
}

.cta h2 {
    font-size:
        clamp(28px,4vw,42px);

    line-height: 1.2;

    margin-bottom: 12px;
}

.cta p {
    color: #7d8798;

    font-size: 13px;
}

.cta-buttons {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}



/* =====================================
   FOOTER
===================================== */

.footer {
    border-top:
        1px solid
        rgba(255,255,255,.06);

    background: #050810;
}

.footer-content {
    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer p {
    color: #657084;

    font-size: 11px;

    margin-top: 8px;
}

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-contact a {
    color: #8b95a6;

    font-size: 12px;
}

.footer-contact i {
    color: #00a8ff;

    width: 20px;
}

.footer-bottom {
    padding: 18px 0;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    color: #4f596b;

    font-size: 10px;
}



/* =====================================
   FLOATING CONTACT
===================================== */

.floating-contact {
    position: fixed;

    right: 20px;
    bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 900;
}

.floating-contact a {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.3);

    transition: .3s;
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.telegram {
    background: #229ED9;
}

.viber {
    background: #7360F2;
}



/* =====================================
   MOBILE
===================================== */

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 20px;

        flex-direction: column;

        align-items: flex-start;

        background: #090e18;

        border-bottom:
            1px solid
            rgba(255,255,255,.06);

        display: none;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: auto;
    }

    .hero-buttons,
    .hero-contact {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }

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

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tech-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .cta-box {
        flex-direction: column;

        text-align: center;
    }

}



@media (max-width: 600px) {

    .section {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-contact {
        flex-direction: column;

        gap: 5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .tech-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 350px;
    }

    .experience-card {
        right: 10px;
    }

    .cta-box {
        padding: 35px 22px;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-content {
        padding: 30px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .code-body {
        padding: 15px;

        overflow-x: auto;
    }

    .code-body pre {
        font-size: 10px;
    }

    .floating-card {
        display: none;
    }


@media (max-width: 900px) {

    .portfolio-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .portfolio-grid {

        grid-template-columns: 1fr;

    }

}