
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ff6b6b;
}

.buy-now-btn {
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
 
    display: flex;
    align-items: center;
    padding: 170px 0 30px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    z-index: 2;
}

.welcome-text {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-name {
    color: #ff6b6b;
    display: inline;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.hero-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
     max-width: 800px;
    margin-left: auto;
    margin-right: auto; 
}

.social-skills-container {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.social-section {
    margin-bottom: 0;
}

.section-label {
    color: #888;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
   width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    /* animation: float 3s ease-in-out infinite; */
}

.social-link:hover {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.social-link:nth-child(1) {
    animation-delay: 0s;
}

.social-link:nth-child(2) {
    animation-delay: 0.5s;
}

.social-link:nth-child(3) {
    animation-delay: 1s;
}

.skills-section {
    margin-bottom: 40px;
}

.skill-links {
    display: flex;
    gap: 15px;
}

.skill-link {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    
}

.skill-link:hover {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.skill-link:nth-child(1) {
    animation-delay: 0.2s;
}

.skill-link:nth-child(2) {
    animation-delay: 0.7s;
}

.skill-link:nth-child(3) {
    animation-delay: 1.2s;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.demos-label {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    color: #888;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
}

/* Features Section */
.features {
    background-color: #1a1a1a;
    padding: 0px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-subtitle {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.features-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #2a2a2a;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.feature-icon {
    color: #ff6b6b;
    font-size: 40px;
    margin-bottom: 25px;
    display: block;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Skills Section */
.skills {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skills-header {
    text-align: center;
    margin-bottom: 60px;
}

.skills-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

/* .skills-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
} */

.skill-section {
    text-align: center;
}

.skill-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.skill-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    gap: 10px;
}

.skill-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.skill-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Resume Section */
.resume {
    background-color: #1a1a1a;
    padding: 10px 0;
}

.resume-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.resume-header {
    text-align: center;
    margin-bottom: 60px;
}

.resume-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.resume-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.resume-tab {
    color: #888;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.resume-tab.active {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

.resume-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.resume-column {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.resume-column.animate {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.6s ease-out;
}

.resume-column:nth-child(2) {
    transform: translateX(30px);
}

.resume-column:nth-child(2).animate {
    transform: translateX(0);
    animation: slideInRight 0.6s ease-out;
}

.resume-column::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b6b, #333);
    margin-left: -40px;
}

.resume-column:first-child::before {
    display: none;
}

.resume-column-header {
    margin-bottom: 40px;
}

.resume-column-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.resume-column-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.resume-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #333;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.resume-item.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.resume-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

.resume-item::before {
    display:none;
}

.resume-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.resume-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.resume-item-subtitle {
    color: #888;
    font-size: 14px;
}

.resume-item-rating {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 16px;
}

.resume-item-description {
    color: #ccc;
    line-height: 1.6;
}

/* Experience Section */
.experience {
    background-color: #1a1a1a;
    padding: 30px 0;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-subtitle {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.experience-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.experience-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 24px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 40px;
    align-items: center;
    border: 1px solid #333;
}

.experience-thumb {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    background: #ffffff;
}

.experience-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-content {
    flex: 1;
}

.experience-date {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,107,107,.12);
    border: 1px solid rgba(255,107,107,.35);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.experience-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.experience-role {
    color: #888;
    font-size: 16px;
    margin-bottom: 15px;
}

.experience-description {
    color: #ccc;
    line-height: 1.6;
}

.experience-contact-btn {
    background-color: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.experience-contact-btn:hover {
    background-color: #ff6b6b;
    color: #ffffff;
}

/* Unified Projects Grid */
.project-section-title {
    font-size: 28px;
    font-weight: 800;
    margin: 10px 0 20px;
    color: #ffffff;
    text-align: left;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.project-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #ff6b6b;
    box-shadow: 0 18px 36px rgba(255, 107, 107, 0.12);
}

.project-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.project-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.35);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.project-desc {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    min-height: 44px;
}

.project-actions {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-subtitle {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    text-align: center;
}

.contact-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-name {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-position {
    color: #888;
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    color: #ccc;
    margin-bottom: 10px;
}

.contact-social {
    margin-bottom: 20px;
}

.contact-social-label {
    color: #888;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2a2a2a;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.contact-form {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.form-submit {
    background-color: #ff6b6b;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-submit:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-copyright {
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .social-skills-container {
        flex-direction: column;
        gap: 30px;
    }

    .demos-label {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-title {
        font-size: 36px;
    }

    .skills-sections {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .resume-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .resume-tabs {
        flex-wrap: wrap;
        gap: 20px;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .experience-phones {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu li a {
        font-size: 12px;
    }
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        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);
    }
}

/* Mouse cursor effects */
.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Enhanced hover effects */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.2) rotate(5deg);
    color: #ff5252;
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced mouse effects */
.social-link, .skill-link {
    position: relative;
    overflow: hidden;
}

.social-link::before, .skill-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.social-link:hover::before, .skill-link:hover::before {
    width: 100%;
    height: 100%;
}
