@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

/* ================= NAVBAR ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;              /* 👈 THICK NAVBAR */
    background: #000000;       /* grey like your screenshot */
    display: flex;
    align-items: center;
    z-index: 1000;
}


.logo{
    font-size: 3rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover{
    transform: scale(1.1);
}

.section-tag p {
    font-size: 5rem;   /* increase this value */
    line-height: 3;
}
nav {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 4rem;
}

nav a {
    margin-left: 3rem;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
}


nav a:hover,
nav a.active{
    color: #b74b4b;
    border-bottom: 3px solid #b74b4b;
}



@media(max-width:995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid #b74b4b;
        border-bottom: 3px solid #b74b4b;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
    }

    nav.active{
        display: block;
    }

    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active{
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #b74b4b;
    }
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color: #b74b4b;
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p{
    font-size: 1.6rem;
}

.home-img{
    border-radius: 50%;
}

.home-img img{
    position: relative;
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #b74b4b;
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0  0 25px #b74b4b;
}


/* ================= OUTLINE SOCIAL ICONS ================= */
.social-outline {
    display: flex;
    gap: 1.8rem;
    margin-top: 3rem;
}

/* Circle outline style */
.outline-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #ff6a00;   /* ORANGE BORDER */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;              /* ORANGE ICON */
    font-size: 1.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect (matches image) */
.outline-icon:hover {
    background: #ff6a00;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.6);
    transform: translateY(-4px) scale(1.1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .social-outline {
        justify-content: center;
    }

    .outline-icon {
        width: 46px;
        height: 46px;
        font-size: 1.7rem;
    }
}
.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "software Developer";
    color: #b74b4b;
    animation: words 20s infinite;
}

.typing-text span::after{
    content: "";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #b74b4b;
    }
}

@keyframes words{
    0%, 20%{
        content: "Web Developer";
    }
    21%, 40%{
        content: "Developer";
    }
    41%, 60%{
        content: "Web Designer";
    }
    61%, 80%{
        content: "Youtuber";
    }
    81%, 100%{
        content: "Script Writer";
    }
}

@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width:995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3{
        font-size: 2.5rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }
}

/* ================= ABOUT HERO ================= */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 9%;
    background: #000; /* solid black */
    gap: 4rem;
}

.section-tag {
    color: #4b5cff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Name */
.name {
    font-size: 5rem;
    font-weight: 800;
    color: #4b5cff;
}

.name span {
    background: linear-gradient(90deg, #6a5cff, #ff4fcf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.subtitle {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    color: #555;
}

/* Description */
.description {
    font-size: 1.6rem;
    max-width: 550px;
    line-height: 1.8;
    color: #444;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.github {
    background: linear-gradient(135deg, #6a5cff, #4b5cff);
    color: #fff;
}

.linkedin {
    background: linear-gradient(135deg, #ff4fcf, #ff6fa5);
    color: #fff;
}

/* Info Boxes */
.info-box {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.info-box h3 {
    font-size: 2.2rem;
    color: #6a5cff;
}

.info-box p {
    font-size: 1.3rem;
    color: #666;
}

/* Profile Image */
.about-image img {
    width: 320px;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-image img {
        width: 260px;
    }

    .info-box {
        justify-content: center;
    }
}


/* ================= CERTIFICATIONS SECTION ================= */
.cert-section {
    padding: 6rem 9%;
    background: #000; /* BLACK BACKGROUND */
}

/* Header */
.cert-header {
    text-align: center;
    margin-bottom: 5rem;
}

.cert-icon {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.cert-header h2 {
    font-size: 3.6rem;
    font-weight: 700;
}

.cert-header h2,
.cert-header h2 span {
    color: #ff6a00; /* ORANGE */
}

.cert-icon {
    color: #ff6a00;
}



/* Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

/* Card */
.cert-card {
    background: #808080 ;   /* ORANGE CARD */
    color: #000;
    border-radius: 1.8rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.cert-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Badge */
.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    border-radius: 2rem;
}

.professional {
    background: linear-gradient(135deg, #5b5cff, #7a7cff);
}

.internship {
    background: linear-gradient(135deg, #ff4fcf, #ff6fa5);
}

/* Image */
.cert-image {
    overflow: hidden;
}

.cert-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image img {
    transform: scale(1.08);
}

/* Content */
.cert-content {
    padding: 2.5rem;
}

.cert-content h3 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
        color: #000;

}
.cert-content .issuer,
.cert-content .date {
    color: #222;
}

.issuer {
    font-size: 1.4rem;
    color: #666;
}

.date {
    font-size: 1.3rem;
    margin: 1.2rem 0 2rem;
    color: #777;
}

/* Button */
.cert-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cert-btn:hover {
    background: #000;
    color: #ff6a00;

}
.badge {
    background: #000;
    color: #ff6a00;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cert-header h2 {
        font-size: 2.8rem;
    }

    .cert-image img {
        height: 180px;
    }
}

.section-tag,
.subtitle,
.description,
.info-box p {
    color: #ccc;
}

.name {
    color: #fff;
}

.section-tag {
    font-size: 2.4rem;     /* increase size */
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

/* ================= PROJECTS SECTION ================= */
.projects-section {
    padding: 6rem 9%;
    background: #000;
    color: #fff;
}

/* Header */
.projects-header {
    text-align: center;
    margin-bottom: 5rem;
}

.projects-header h2 {
    font-size: 3.4rem;
}

.projects-header h2 span {
    color: #008cff; /* Blue accent */
}

.projects-header p {
    font-size: 1.5rem;
    color: #ccc;
    margin-top: 1rem;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Card */
.project-card {
    background: #808080;
    border-radius: 1.8rem;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Glow effect */
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.8rem;
    background: linear-gradient(135deg, #008cff, #00c6ff);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.project-card:hover::before {
    opacity: 0.15;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0, 140, 255, 0.6);
}

/* Content */
.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.project-content p {
    font-size: 1.4rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Button */
.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.4rem;
    border-radius: 3rem;
    border: 2px solid #008cff;
    color: #008cff;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-btn:hover {
    background: #008cff;
    color: #000;
}
/* ================= TECH TAGS (TRANSPARENT STYLE) ================= */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tech-stack span {
    padding: 0.5rem 1.4rem;   /* SAME SIZE (unchanged) */
    font-size: 1.2rem;        /* SAME TEXT SIZE */
    border-radius: 2rem;
    background: transparent;  /* TRANSPARENT */
    color: #008cff;
    border: 1.5px solid #008cff; /* thin border */
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Subtle hover (optional) */
.tech-stack span:hover {
    background: rgba(0, 140, 255, 0.12);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-header h2 {
        font-size: 2.8rem;
    }
}

/* ================= WHAT I DO ================= */
.what-i-do {
    padding: 7rem 9%;
    background: radial-gradient(circle at top, #111, #000);
    color: #fff;
}

.section-title {
    display: flex;
    justify-content: center;   /* CENTER */
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    text-align: center;
}



.section-title .step {
    font-size: 3.2rem;
    font-weight: 700;
    color: #00e5ff;
}

.section-title h2 {
    font-size: 3.8rem;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Card */
.service-card {
    background: rgb(128, 128, 128);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Animated gradient border */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0,229,255,0.25), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
}

/* Icons */
.icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.frontend { background: linear-gradient(135deg, #00e5ff, #00bcd4); }
.backend  { background: linear-gradient(135deg, #00c853, #009624); }
.dsa      { background: linear-gradient(135deg, #ffb300, #ff8f00); }
.db       { background: linear-gradient(135deg, #ff5252, #d50000); }

/* Title */
.service-card h3 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tags span {
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 1);
    background: transparent;
    transition: all 0.3s ease;
}

/* Tag hover */
.service-card:hover .tags span {
    background: rgba(255,255,255,0.08);
}

/* FORCE TAG TEXT COLOR CHANGE */
.service-card .tags span {
    color: #000 !important;        /* BLACK TEXT */
    border-color: #000 !important; /* BLACK BORDER */
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 3rem;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #000);
    color: #ccc;
    padding: 5rem 9% 2rem;
}

/* Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer box */
.footer-box h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.8rem;
}

/* Logo */
.footer-logo {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: #00e5ff;
}

/* Text */
.footer-box p {
    font-size: 1.4rem;
    line-height: 1.8;
}

/* Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #aaa;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00e5ff;
    padding-left: 6px;
}

/* Social Icons */
.footer-social {
    margin-top: 1.8rem;
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #00e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e5ff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00e5ff;
    color: #000;
    transform: translateY(-4px);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding-
