/* ==========
project-hero
========== */

.project-hero {
    height: 100vh;
    /* background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085") center/cover no-repeat; */
    /* background: url("/Assetes/IMG/susheel.webp") center/cover no-repeat; */
    background-attachment: fixed;
    position: relative;
    /* background-position: 100%; */
    /* background-size: 50vh; */
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    background: rgb(0 0 0 / 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

.hero-content {
    max-width: 800px;
    /* color: white; */
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: var(--highlight-color,#00eaff);
}

.hero-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 20px;
    /* color: #bbbbbb; */
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    /* color: #e5e5e5; */
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 30px;
    background: #00eaff;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

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

.btn-outline {
    padding: 12px 30px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #00eaff;
    color: black;
    transform: translateY(-3px);
}

/* Scroll Indicator */

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

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

.scroll-indicator span::after {
    content: "";
    width: 4px;
    height: 8px;
    background: var(--text);
    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;
    }
}


























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



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

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

.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, 20px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 450px;
}

.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;
    }
}