



/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #333;
    min-height: 100vh;
}
/* Menu Buttons */
.menu {
    text-align: center;
    padding: 1rem;
}

.menu button {
    background: linear-gradient(145deg, #6bdb69, #4CAF50);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px #f8f8f8;
}

.menu button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu button:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Sections */
.section {
    display: none;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
}

.section.active {
    display: block;
}

/* Project Cards Grid */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.project-header {
    padding: 1.5rem 1.5rem 0;
    position: relative;
}

.project-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.4rem;
}

.project-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.project-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-card a {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(145deg, #6bdb69, #4CAF50);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.project-card a:hover {
    background: linear-gradient(145deg, #4CAF50, #6bdb69);
    transform: translateY(-2px);
}

.tech-stack {
    margin: 10px 0;
}

.tech-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #555;
}

.tech-icon img.tech-svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.tech-icon:hover img.tech-svg {
    filter: grayscale(0%) brightness(1.1);
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.view-more-btn {
    background: #f0f0f0;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.view-more-btn:hover {
    background: #e0e0e0;
}

.project-details {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.github-link {
    color: #0366d6;
    text-decoration: none;
}

/* Experience Section */
.experience {
    margin-top: 2rem;
}

.experience h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.experience h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #6bdb69);
    border-radius: 3px;
}

.experience-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.experience-list li {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.experience-list li:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
    border-left-color: #4CAF50;
}

.experience-list li.active {
    background: rgba(76, 175, 80, 0.2);
    border-left-color: #4CAF50;
    font-weight: 500;
}

.experience-list li i {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.experience-list li span {
    font-weight: 500;
    color: #2c3e50;
}

.experience-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    animation: fadeIn 0.4s ease-out;
    border-top: 2px solid #4CAF50;
}

.experience-details h4 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.experience-details p {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.6;
}

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

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(76, 175, 80, 0.1);
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.experience-list li.active {
    background: rgba(76, 175, 80, 0.2);
    border-left-color: #4CAF50;
    font-weight: 500;
}

/* Skills Section */
#skills {
    background: rgba(255, 255, 255, 0.97);
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skills-category {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.skills-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.skills-category h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.category-icon {
    margin-right: 0.8rem;
    color: #4CAF50;
    font-size: 1.2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    border-radius: 8px;
    background: rgba(245, 245, 245, 0.7);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: scale(1.05);
}

.skill-item i, .skill-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.skill-icon {
    width: 32px;
    height: 32px;
}

.skill-item span {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

/* Contact Section */
#contact {
    background: rgba(255, 255, 255, 0.97);
    text-align: center;
}

.contact-subtitle {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #555;
    margin: 0.3rem 0;
}

.contact-cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 500;
}

/* Hire Me Section */
.hire-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hire-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hire-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.hire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.hire-card i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.hire-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.resume-btn, .contact-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-btn {
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border: none;
}

.resume-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.submit-btn {
    background: linear-gradient(145deg, #6bdb69, #4CAF50);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(145deg, #4CAF50, #6bdb69);
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #4CAF50, #6bdb69);
    color: #fff;
    margin-top: 2rem;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer .social-links {
    margin-top: 0.5rem;
}

footer .social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: scale(1.1);
    text-decoration: underline;
}

/* Home Section Styles */
#home {
    text-align: center;
    padding: 2rem 1rem;
}

#home h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0f0f0f;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#home h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e61010;
    font-weight: 400;
}

#home img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #000000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.home-sections-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.home-section-card {
    background: rgba(0, 0, 0, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.home-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    background: rgb(255, 255, 255);
}

.home-section-card h3 {
    color: #535050;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.home-section-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #6bdb69);
    border-radius: 3px;
}

.home-section-card p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.home-section-card button {
    background: linear-gradient(145deg, #6bdb69, #4CAF50);
    color: rgb(233, 228, 228);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.home-section-card button:hover {
    background: linear-gradient(145deg, #4CAF50, #6bdb69);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* Home Section Styles */
#home {
    text-align: center;
    padding: 3rem 1rem;
    background: #000000;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.welcome-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    color: white;
}

.welcome-text {
    font-size: 3rem;
    margin: 0;
    color: rgb(236, 14, 14);
    position: relative;
    display: inline-block;
}

.animated-border {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cde5eb, #e4e003);
    border-radius: 2px;
    animation: borderGrow 1.5s ease-out forwards;
}

@keyframes borderGrow {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

.name-heading {
    font-size: 2.8rem;
    margin: 0.5rem 0;
    color: #ffffff;
    font-weight: 700;
}

.name-heading span {
    color: #4CAF50;
    position: relative;
}

.name-heading span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #6bdb69);
    border-radius: 2px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #6bdb69);
    border-radius: 2px;
}

.expertise-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #6bdb69);
}

.expertise-item i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.expertise-item h3 {
    color: #4CAF50;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.expertise-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.expertise-item:hover i {
    transform: scale(1.1);
    color: #3d8b40;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 2.5rem;
    }
    
    .name-heading {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .expertise-item {
        min-width: 200px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 2rem;
    }
    
    .name-heading {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .expertise-container {
        flex-direction: column;
        align-items: center;
    }
    
    .expertise-item {
        width: 100%;
        max-width: none;
    }
}
/* Certifications Component */
.certifications {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.certifications h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.certifications h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #6bdb69);
}

.certification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #4CAF50;
}

.certification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.certification-details h4 {
    margin: 0 0 0.3rem 0;
    color: #2c3e50;
    font-size: 1rem;
}

.certification-details p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: linear-gradient(145deg, #6bdb69, #4CAF50);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: linear-gradient(145deg, #6bdb69, #4CAF50);
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px #f8f8f8;
}

/* Make subsections animate smoothly */
.subsection {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subsection.active {
    opacity: 1;
    height: auto;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
    
    .home-sections-overview {
        grid-template-columns: 1fr 1fr;
    }
    
    #home h1 {
        font-size: 2rem;
    }
    
    #home h2 {
        font-size: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .skill-item i, .skill-icon {
        font-size: 1.8rem;
    }
    
    .certifications {
        padding: 1.2rem;
    }
    
    .certification-item {
        padding: 0.8rem;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .home-sections-overview {
        grid-template-columns: 1fr;
    }
    
    .home-section-card {
        padding: 1.2rem;
    }
    
    #home img {
        width: 150px;
        height: 150px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .skill-item {
        padding: 0.8rem 0.3rem;
    }
    
    .skill-item span {
        font-size: 0.8rem;
    }
    
    .certification-icon {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    .certification-details h4 {
        font-size: 0.95rem;
    }
    
    .certification-details p {
        font-size: 0.85rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}