/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0f14;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 20, 0.96);
    border-bottom: 1px solid #222831;
    backdrop-filter: blur(10px);
}

.nav-container {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #ff9900;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: #c7c7c7;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #ff9900;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 153, 0, 0.13),
            transparent 30%
        ),
        #0b0f14;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.small-title {
    color: #ff9900;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 78px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero h1 span {
    color: #ff9900;
}

.hero h2 {
    font-size: 28px;
    color: #d7d7d7;
    margin-bottom: 20px;
}

.hero-description {
    max-width: 650px;
    color: #aeb4bb;
    font-size: 17px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.primary-btn {
    background: #ff9900;
    color: #111;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.2);
}

.secondary-btn {
    border: 1px solid #555;
    color: #fff;
}

.secondary-btn:hover {
    border-color: #ff9900;
    color: #ff9900;
}


/* HERO CARD */

.hero-card {
    padding: 45px 30px;
    border: 1px solid #2a3038;
    border-radius: 18px;
    background: #11161d;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cloud-icon {
    font-size: 65px;
    margin-bottom: 15px;
}

.hero-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.hero-card p {
    color: #9ca3aa;
}

.card-line {
    width: 50px;
    height: 3px;
    background: #ff9900;
    margin: 25px auto;
}

.cloud-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cloud-tags span {
    padding: 7px 12px;
    border-radius: 20px;
    background: #1b222b;
    color: #ff9900;
    font-size: 12px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading p {
    color: #ff9900;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: 40px;
}


/* =========================
   ABOUT
========================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #aeb4bb;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-card {
    padding: 25px;
    background: #11161d;
    border: 1px solid #272d35;
    border-radius: 12px;
    transition: 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #ff9900;
}

.highlight-card span {
    font-size: 30px;
}

.highlight-card h3 {
    margin-top: 10px;
}

.highlight-card p {
    color: #9299a1;
    font-size: 13px;
}


/* =========================
   SKILLS
========================= */

.skills-section {
    background: #0e1319;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-card {
    padding: 30px;
    background: #11161d;
    border: 1px solid #272d35;
    border-radius: 14px;
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #ff9900;
}

.skill-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.skill-card h3 {
    font-size: 21px;
    margin-bottom: 20px;
}

.skill-tags {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.skill-tags span {
    background: #1b222b;
    border: 1px solid #303740;
    padding: 7px 11px;
    border-radius: 5px;
    color: #d5d9dd;
    font-size: 12px;
}


/* =========================
   PROJECTS
========================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    position: relative;
    padding: 35px;
    background: #11161d;
    border: 1px solid #272d35;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #ff9900;
}

.project-number {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 50px;
    font-weight: bold;
    color: #20262d;
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-category {
    color: #ff9900;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
}

.project-card p:not(.project-category) {
    color: #9ea5ad;
    font-size: 14px;
}

.project-tech {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.project-tech span {
    color: #ff9900;
    background: rgba(255, 153, 0, 0.08);
    padding: 6px 9px;
    border-radius: 4px;
    font-size: 11px;
}

.project-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.project-btn {
    padding: 9px 15px;
    border-radius: 5px;
    background: #ff9900;
    color: #111;
    font-size: 12px;
    font-weight: bold;
}

.project-btn.outline {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
}

.project-btn.outline:hover {
    color: #ff9900;
    border-color: #ff9900;
}


/* =========================
   EDUCATION
========================= */

.education-section {
    background: #0e1319;
}

.education-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: #11161d;
    border: 1px solid #272d35;
    border-radius: 15px;
}

.education-icon {
    font-size: 45px;
}

.education-label {
    color: #ff9900;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 8px;
}

.education-card h3 {
    font-size: 23px;
    margin-bottom: 7px;
}

.education-card p:last-child {
    color: #9ea5ad;
}


/* =========================
   CONTACT
========================= */

.contact-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.contact-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-text p {
    color: #9ea5ad;
}

.contact-links {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #11161d;
    border: 1px solid #272d35;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-item:hover {
    border-color: #ff9900;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 25px;
}

.contact-item small {
    display: block;
    color: #777f88;
    margin-bottom: 3px;
}

.contact-item strong {
    font-size: 14px;
    word-break: break-word;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #222831;
    padding: 25px 0;
    background: #080b0f;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #737b84;
    font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {

    .nav-container {
        flex-direction: column;
        padding: 18px 0;
        gap: 15px;
    }

    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


@media (max-width: 500px) {

    .container {
        width: 92%;
    }

    .logo {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero-description {
        font-size: 15px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .education-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-item strong {
        font-size: 12px;
    }

}