/* === GLOBAL VARIABLES === */
:root {
    /* Colors */
    /* --primary: #0f72ff;
    --primary-light: #3b82f6;
    --secondary: #8b5cf6;
    --dark: #1e293b;
    --light: #00000021;
    --muted: #dddddd;
    --card: #d3d1d1;
    --bg: #fafdff7f;
    --text: #c3c9d2;
    --glass: rgba(161, 155, 155, 0.497); */

    /* Hero specific colors */
    /* --hero-accent: #00eaff;
    --hero-shadow: 0 0 10px #00eaff;
    --hero-glow: 0 0 20px #00eaff; */

    /* Layout */
    --radius: 12px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --container: 1400px;


    --a-color: #7979ff;


}





body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-family: "Poppins", sans-serif;


    /* background: #ffffffec;
    color: #0a0b0a;

    background: #0f172a;
    color: #e2e8f0; */
}


/* body {
    background-image: radial-gradient(#754fc8d0 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
    height: 100vh;
} */



body::-webkit-scrollbar {
    display: none;
}
















#btn2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

#btn2:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-5px);
}


/* ------------------------------
   🔥 1. Fade Up
--------------------------------*/
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------
   🔥 2. Zoom In
--------------------------------*/
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ------------------------------
   🔥 3. Slide Left
--------------------------------*/
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 0.8s ease forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------------------------------
   🔥 4. Slide Right
--------------------------------*/
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 0.8s ease forwards;
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------------------------------
   🔥 5. Fade Down
--------------------------------*/
.fade-down {
    opacity: 0;
    transform: translateY(-40px);
    animation: fadeDown 0.8s ease forwards;
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* all */
/* Reveal Animation */
/* === SECTION ANIMATIONS === */


section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}



section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animations for different sections */
#about.visible {
    animation: slideUpFade 0.8s ease;
}

#skills.visible {
    animation: slideUpFade 0.8s ease 0.2s both;
}

#projects.visible {
    animation: slideUpFade 0.8s ease 0.4s both;
}

#contact.visible {
    animation: slideUpFade 0.8s ease 0.6s both;
}

/* Animation Keyframes */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Individual element animations */
.about-content.visible {
    animation: fadeInScale 0.8s ease;
}

.skills-grid.visible {
    animation: fadeInScale 0.8s ease 0.3s both;
}

.projects-grid.visible {
    animation: fadeInScale 0.8s ease 0.3s both;
}

.contact-content.visible {
    animation: fadeInScale 0.8s ease 0.3s both;
}

/* Stagger animations for grid items */
.skill-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.skill-category.visible {
    opacity: 1;
    transform: translateY(0);
}

/* .project-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
} */

/* Contact items animation */
.contact-item-simple {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.contact-item-simple.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Form animation */
/* .contact-form-simple {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.contact-form-simple.visible {
    opacity: 1;
    transform: translateX(0);
} */




/* ////////////////////////////////////////////// */

.section-soft {
    position: relative;
    width: 100%;
    /* height: 220px; */
    background: transparent;
    background-color: #007bff;
}

/* हल्का सा smooth movement */
.soft-icon {
    position: absolute;
    top: 437px;
    left: 85%;
    font-size: 77px;
    transform: translate(-50%, -40%);
    animation: softFloat 4.5s ease-in-out infinite;
}

/* बहुत हल्का movement (2-6px) */
@keyframes softFloat {
    0% {
        transform: translate(-50%, -100%) translateY(0) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(6px) rotate(5deg);
    }

    100% {
        transform: translate(-50%, -100%) translateY(10) rotate(10deg);
    }
}



/* 2 */
.section-move3 {
    background-color: #007bff;
    position: relative;
    width: 100%;
    background: transparent;
}

.circle-container {
    background-color: #007bff;
    position: absolute;
    width: 160px;
    height: 160px;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    animation: rotate 6s linear infinite;
    /* height: 280px; */
}


/* 
    html {
        font-size: 16px;
    } */


@media (max-width:700px) {

    html {
        font-size: 14px;
    }




    /* .circle-container {
        display: none;
    } */

    .circle-container {
        background-color: #ff0000;
        position: absolute;
        width: 88px;
        height: 94px;
        top: -150px;
        left: 78%;
        transform: translate(-50%, -50%);
        animation: rotate 6s linear infinite;
        /* height: 280px; */
        /* position: sticky; */
    }


}


@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*  */
.bubble {
    width: 214px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffd89b, #19547b);
    box-shadow: 0 10px 20px rgba(25, 84, 123, 0.15);
    animation: floata .1s ease-in-out infinite;
    cursor: pointer;
    margin-left: 50px;
    margin-top: -74px;

    margin-left: -55px;
    margin-top: -73px;
    position: sticky;
}

/* @media (min-width:1300px) {
    .bubble {

        margin-left: 85px;
    }
} */

@media (max-width:1100px) {
    /* .bubble {

        margin-left: -7px;

    } */


    /* .circle-container {
        background-color: #ff0000;
        position: absolute;
        width: 142px;
        height: 160px;
        top: -100px;
        left: 68%;
        transform: translate(-50%, -50%);
        animation: rotate 6s linear infinite; */
    /* height: 280px; */

    /* position: sticky; */
    /* } */
}


.bubble i {
    background: linear-gradient(135deg, #ffd89b, #19547b);
    font-size: 36px;
    color: #ffffff
}

@keyframes floata {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}





/* Search Results Styles */
.search-results {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: none;
}

.search-results h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.result-item {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s; */
}



.result-title {
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
    font-size: 18px;
}

.result-snippet {
    color: #555;
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-size: 18px;
}

.result-item {
    position: fixed;
    top: 71px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

/* ///////////////////////////////////////////////////////////////////////// */



/* 
#github-stats {
    height: 90vh;
    margin-top: 100px;

} */

#services {
    margin-top: 50px;
    min-height: 70vh;
    padding: 10px;

}

section {
    padding-top: 70px;
    min-height: 100vh;

}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 50px 0;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-end;
    padding-bottom: 100px;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.greeting {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    /* color: var(--hero-accent); */
    /* text-shadow: var(--hero-shadow); */
    /* color: #ca6df8; */
    color: var(--highlight-color);
}

.title-3d {
    font-size: 3.5rem;
    font-weight: 800;
    perspective: 900px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-3d span {
    color: var(--hero-accent);
    text-shadow: var(--hero-glow);
}

.sub {
    margin-top: 15px;
    max-width: 500px;
    opacity: 0.9;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
}


/* RIGHT SIDE 3D CARD */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    justify-content: flex-end;
    min-width: 300px;
    flex-direction: column;
    flex-direction: column;
    align-items: flex-end;

}

.card3d {
    width: 320px;
    height: 320px;
    background: #0f172a;
    border-radius: 25px;
    border: 1px solid #00eaff66;
    box-shadow: 0px 0px 40px #00eaff44;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transition: transform 0.2s ease-out;
}

/* 3D CUBE INSIDE */
.cube {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #00eaff80, #003bff80);
    border: 2px solid var(--hero-accent);
    border-radius: 20px;
    box-shadow: 0 0 25px #00eaff88, inset 0 0 20px #00eaff44;
    animation: float 3s ease-in-out infinite alternate;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cube img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% {
        transform: translateY(-15px) rotateY(0deg);
    }

    100% {
        transform: translateY(15px) rotateY(25deg);
    }
}

/* Social Icons */
.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 234, 255, 0.1);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: var(--a-color, #11ffb8);

}

.social-icons a:hover {
    background: transparent;
    color: #0968ff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.4);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1500px) {

    .title-3d {
        font-size: 3.3rem;
    }
}

@media (max-width: 1199px) {
    .title-3d {
        font-size: 2.6rem;
    }
}





@media (max-width: 768px) {



    .hero-right {
        align-items: center;
    }

    .hero {
        justify-content: center;
        gap: 50px;
        margin-top: 50px;
    }

    .hero-left {
        padding-right: 0;
    }

    .title-3d {
        font-size: 3rem;
    }

    .card3d {
        width: 280px;
        height: 280px;
    }

    .cube {
        width: 160px;
        height: 160px;
    }

    /* .social-icons {
        justify-content: center;
    } */
}

@media (max-width: 480px) {
    .title-3d {
        font-size: 2.5rem;
    }

    .sub {
        font-size: 1rem;
    }

    .card3d {
        width: 250px;
        height: 250px;
    }

    .cube {
        width: 140px;
        height: 140px;
    }
}







/* Scroll Indicator */

/* .scroll-indicator {
    position: absolute;
    bottom: 30px;
} */


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: grid;
    justify-content: space-around;
    width: 100%;
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid var(--text);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    width: 4px;
    height: 8px;
    /* background: white; */
    background: var(--primary);

    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 5px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}


@media (max-width: 750px) {



    .scroll-indicator {
        /* display: none; */

        position: relative;
    }
}







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




.about-container {
    max-width: var(--container, 1500px);
    margin: 0px auto;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1px 40px 25px;
}

.image-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

@media (max-width: 1000px) {
    .image-section {
        display: none;
    }
}

/* .profile-img {
    width: 290px;
    height: 420px;
    border-radius: 10%;
    object-fit: cover;
    border: 5px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    max-width: 100%;
    height: auto;
    display: block;
} */


.profile-img {
    width: 245px;
    aspect-ratio: 245/327;
    border-radius: 10%;
    object-fit: cover;
    /* border: 5px solid #e9ecef; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;


    outline: 15px solid #4facfe;
    outline-offset: 4px;
}

.text-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.name {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.description {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.highlight {
    padding: 5px;
    border-radius: 8px;
    border-left: 4px solid #0080ff;
    /* color: #0080ff; */

    color: var(--highlight-color);

    line-height: 1.4;
}





.links {
    display: flex;
    gap: 25px;
    align-items: center;
}




@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        padding: 25px;
    }

    .text-section {
        flex: 1;
        min-width: 300px;
        padding: 0px;
        width: 100%;
    }

    .profile-img {
        width: 220px;
        height: 220px;
    }

    .name {
        font-size: 1.8rem;
    }
}






/* ===== MY SERVICES  ===== */
.my-services {
    /* color: #fff; */
    text-align: center;
}

.my-services h2 {
    font-size: 36px;
    margin-bottom: 6px;
}

.my-services,
.subtitle {
    /* color: #bdb9b9;#bdb9b9 */
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}




.services-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.4s ease;
    text-align: left;
    color: #444;
    box-shadow: 0 15px 40px rgba(56, 56, 56, 0.35);

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.35);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    /* color: black; */
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    /* color: #30363d; */
}

#work {
    height: 60px;
    width: 80px;
    background-color: #10b981;
    position: absolute;
    right: 700px;
    top: 300px;
    display: none;
}




.availability-card {

    right: 370px;
    width: 270px;
    /* width: 50%; */
    background: rgba(10, 25, 47, 0.85);
    /* Dark background with transparency */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 170, 0.3);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    margin: 20px;
}

.role-tag {
    background: rgba(0, 255, 170, 0.1);
    color: #00ffaa;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.status-container {
    margin: 15px 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #ffcc00;
    /* Yellow for 'Soon', change to #00ffaa for 'Available' */
    border-radius: 50%;
    box-shadow: 0 0 10px #ffcc00;
    animation: pulse 1.5s infinite;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffcc00;
}

.status-desc {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

.joining-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.5;
}

.date {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}




/* === 
SKILLS SECTION 
=== */



.skills-section {
    justify-content: center;
    align-items: center;
    max-width: var(--container, 1500px);
    width: 100%;
    overflow: hidden;
    margin: 0px auto;


}

.container {
    padding: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    /* color: #ca6df8; */
    font-weight: 200;
}

.section-subtitle {
    font-size: 1.1rem;
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.skill-category {
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.141);
    border: 1px solid rgba(0, 0, 0, 0.112);
    border-radius: 10px;

}

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

.category-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background-color: #ac30ff27;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.skill-name {
    font-weight: 500;
}

.skill-percentage {
    font-weight: 600;
    color: var(--a-color, #7979ff);
    font-size: 0.9rem;
}

.skill-bar {
    height: 8px;
    background-color: #82889281;
    border-radius: 4px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background-color: var(--a-color, #0080ff);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #a9a9a940;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.tool-item:hover {
    transform: translateY(-2px);
    background: rgba(15, 114, 255, 0.05);
}

.tool-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #ca6df8;
    background-color: #c5c5c555;
}

.tool-name {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 24px;
    }

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

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

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}





/* === 
PROJECTS SECTION 
=== */



.projects-section {
    max-width: var(--container, 1500px);
    width: 100%;
    overflow: hidden;
    margin: 0px auto;
}

.projects-section .section-header {
    padding: 40px 40px;
    text-align: center;
}

.projects-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.projects-section .section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.projects-content {
    padding: 0px 40px;
}

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

.project-card {
    background-color: rgb(255 255 255 / 7%);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    color: rgb(11, 11, 11);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-info {
    padding: 25px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.tech-tag {
    background: rgba(15, 114, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #0080ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: transparent;
    color: #0080ff;
    border: 2px solid #00eaff;
    box-shadow: 0 0 20px #00eaff;

}

.project-link.outline {
    background: transparent;
    color: #0080ff;
}

.project-link.outline:hover {
    color: rgb(0, 0, 0);
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 114, 255, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 114, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-section .section-header {
        padding: 40px 30px;
    }

    .projects-section .section-title {
        font-size: 2rem;
    }

    .projects-content {
        padding: 40px 30px;
    }

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

@media (max-width: 480px) {
    .projects-section .section-header {
        padding: 30px 20px;
    }

    .projects-content {
        padding: 30px 20px;
    }

    .project-links {
        flex-direction: column;
    }
}






/* === SIMPLE CONTACT SECTION === */
.contact-simple {
    max-width: 1100px;
    ;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info */
.contact-info-simple {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.contact-item-simple:hover {
    transform: translateY(-5px);
}

.contact-icon-simple {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ac30ff27;
    /* color: #ca6df8; */
    border-radius: 10px;
    font-size: 1.2rem;
}

.contact-details-simple h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.email a {
    color: var(--a-color, #11ffb8);
}

.email a:hover {
    color: #66e8bc;
}



/* Simple Form */
.contact-form-simple {
    padding: 30px;

}

.form-group-simple {
    margin-bottom: 20px;
}

@media (max-width:1050px) {
    .form-group-simple {

        /* margin-bottom: 20px; */
        margin-bottom: 8px;
    }

}

.form-label-simple {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    /* color: var(--text); */
}

.form-input-simple,
.form-textarea-simple {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8fafc9e;
}

.form-input-simple:focus,
.form-textarea-simple:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea-simple {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-simple {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn-simple:hover {
    transform: translateY(-2px);
}



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

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

    .contact-form-simple {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-simple {
        padding: 40px 15px;
    }

    /* .contact-item-simple {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    } */
}