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

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background: transparent; /* Makes the navbar invisible */
    padding: 20px 50px;
}



.nav-container {
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 22px;
    transition: 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #facc15;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 80%;
    margin: auto;
    padding-top: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.name {
    font-family: "Inter", sans-serif;
    font-weight: 800;
}

.description {
    max-width: 800px;
    color: #cbd5e1;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 30px;
}

.description span {
    display: inline-block;
    border: 1px solid #facc15;
    color: #facc15;
    background: rgba(250, 204, 21, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.description span:hover {
    background: #facc15;
    color: #111827;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    background: #facc15;
    color: #111827;
    border: 2px solid #facc15;
}

.hero-btn:hover {
    background: transparent;
    color: #facc15;
    transform: translateY(-3px);
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    min-height: 100vh;
    padding: 100px 40px;
    background: #2a2a2a
    color: #fff;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.projects-title {
    font-size: 48px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 15px;
}

.projects-subtitle {
    font-size: 18px;
    color: #94a3b8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #2a2a2a;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-btn {
    padding: 12px 30px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-overlay-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.project-description {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.project-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* ===== ABOUT SECTION ===== */
/* Tech Font */
.about-section {
    font-family: "JetBrains Mono", "Fira Code", monospace;
}


.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px 10%;
}


/* Profile Image */
.image-box {
    position: relative;
    padding: 5px;
}


.profile-image {
    width: 320px;
    height: auto;
    border-radius: 15px;
    transition: 0.4s ease;
    filter: grayscale(20%);
}


/* Image Hover */
.profile-image:hover {
    transform: translateY(-10px) scale(1.05);
    filter: grayscale(0%);
    box-shadow:
        0 0 20px #facc15,
        0 0 40px rgba(250,204,21,0.4);
}



/* About Title */
.about-name {
    font-size: 45px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
}


.about-name span {
    color: #facc15;
}



/* Description */
.about-text {
    max-width: 650px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}



/* Skills */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


.skill-tag {
    padding: 10px 18px;
    border: 1px solid #facc15;
    border-radius: 20px;
    color: #facc15;
    font-size: 14px;
    background: rgba(250,204,21,0.05);
    transition: 0.3s ease;
}


.skill-tag:hover {
    background: #facc15;
    color: #111827;
    transform: translateY(-3px);
}
/* ===== CONTACT SECTION ===== */
.contact-section {
    min-height: 100vh;
    padding: 100px 40px;
    background: #343837
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 700px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #999;
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    resize: none;
    transition: all 0.3s ease;
}

.form-textarea::placeholder {
    color: #666;
}

.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-btn {
    padding: 16px 40px;
    background: #999;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f0f0f;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    color: #999;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #facc15;
    transform: scale(1.2);
}

.footer-date {
    color: #999;
    font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: slideUp 0.6s ease-out forwards !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        font-size: 18px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        width: 95%;
        padding-top: 100px;
        padding-bottom: 50px;
    }

.name {
    font-family: "Inter", sans-serif;
    font-weight: 800;
}
    .description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .buttons {
        gap: 10px;
    }

    .hero-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .projects-section {
        padding: 60px 20px;
    }

    .projects-title {
        font-size: 36px;
    }

    .projects-subtitle {
        font-size: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-image-wrapper {
        height: 200px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-image {
        display: none;
    }

    .about-name {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .skills-tags {
        gap: 8px;
    }

    .skill-tag {
        font-size: 0.85rem;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-date {
        font-size: 0.9rem;
    }
}
.name {
    font-family: "Black Ops One", sans-serif;
    font-size: 57px;
    font-weight: 400;
    letter-spacing: -2px;
    color:#fefee3;
}
}
.footer {
    background: #050505;
    border-top: 1px solid rgba(250,204,21,0.2);
    padding: 35px 20px;
    margin-top: 80px;
}


.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.footer-text {
    color: #94a3b8;
    font-size: 15px;
    font-family: "JetBrains Mono", monospace;
}


.footer-text span {
    color: #facc15;
    font-weight: 700;
}


/* Social Icons */
.footer-links {
    display: flex;
    gap: 18px;
}


.footer-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333;
    border-radius: 50%;

    color: #cbd5e1;
    font-size: 20px;

    transition: 0.3s ease;
}


.footer-link:hover {
    color: #facc15;
    border-color: #facc15;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(250,204,21,0.4);
}
/* Skills Container - Two Columns */
.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* Skills Section with Progress Bars */
.skills-section {
    margin-top: 0;
}

.skills-category {
    font-size: 18px;
    font-weight: 600;
    color: #facc15;
    margin-bottom: 20px;
    font-family: "JetBrains Mono", monospace;
}

.skill-item {
    margin-bottom: 18px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
}

.skill-percent {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #facc15, #f59e0b);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.skill-item:hover .skill-progress {
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

