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

body {
    font-family: 'Inter', sans-serif;
    background-color: #080808;
    color: #FFFFFF;
    overflow-x: hidden;
}

.main-header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 840px;
    z-index: 1000;
}

.main-nav {
    background-color: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    backdrop-filter: blur(12px);
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 6px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.cta-button {
    background: linear-gradient(180deg, rgba(8, 8, 8, 1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    border-radius: 120px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
}

main {
    padding-top: 160px;
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px 100px;
}

.hero-content {
    max-width: 1200px;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.title-badge {
    display: inline-block;
    background-color: #0F0F0F;
    border: 1px solid rgba(184, 180, 180, 0.08);
    box-shadow: 16px 24px 20px 8px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 15px;
    margin-bottom: 24px;
}

#hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 67px;
    font-weight: 400;
    letter-spacing: -2.98px;
    line-height: 1.28;
    margin-bottom: 16px;
}

#hero p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    max-width: 500px;
    margin: 0 auto 24px;
}

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

.btn {
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(180deg, #787878 0%, #080808 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(180deg, #FFFFFF 0%, #787878 100%);
    color: #0F0F0F;
}

#profile {
    padding: 100px 40px;
    display: flex;
    justify-content: center;
}

.profile-container {
    display: flex;
    gap: 44px;
    max-width: 1100px;
    align-items: flex-start;
}

.profile-card {
    background-color: #0F0F0F;
    border-radius: 16px;
    padding: 24px;
    width: 452px;
    box-shadow: 16px 24px 20px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-picture-container {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.profile-picture {
    width: 100%;
    border-radius: 10px;
}

.status-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.profile-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.social-media {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    width: 100%;
    justify-content: center;
}

.social-media a {
    display: inline-block;
    padding: 8px;
    background-color: #0F0F0F;
    border-radius: 50%;
}

.connect-btn {
    width: 100%;
}

.profile-details {
    flex: 1;
    background-color: #0F0F0F;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 16px 24px 20px 8px rgba(0, 0, 0, 0.4);
}

.about-section, .skills-section, .experience-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-details h3 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.about-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.skills-grid {
    display: none; /* Hiding the old simple grid */
}

.skills-category {
    margin-bottom: 15px;
}

.skills-category h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.skills-category p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.experience-section ul {
    list-style: none;
}

.experience-section li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

#projects {
    padding: 100px 40px;
    background-color: #0F0F0F;
    border-radius: 44px;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.projects-header {
    text-align: center;
    margin-bottom: 44px;
}

.projects-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 49px;
    font-weight: 400;
    margin-bottom: 16px;
}

.projects-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.projects-grid {
    display: none; /* Hide old grid */
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-item {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-item:last-child {
    border-bottom: none;
}

.project-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    color: #87CEEB;
    text-decoration: none;
}

/* Styles for new sections */
.new-section {
    padding: 100px 40px;
    background-color: #0F0F0F;
    border-radius: 44px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 49px;
    font-weight: 400;
    margin-bottom: 16px;
}

.item-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.list-item {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list-item:last-child {
    border-bottom: none;
}

.list-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.list-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.item-link {
    display: inline-block;
    margin-top: 15px;
    color: #87CEEB;
    text-decoration: none;
}

#testimonials {
    padding: 100px 40px;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 44px;
    align-items: flex-start;
}

.testimonials-left {
    flex-basis: 50%;
}

.testimonials-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 49px;
    font-weight: 400;
    margin-bottom: 16px;
}

.testimonials-left > p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.stat-item {
    background-color: #0F0F0F;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 16px 24px 20px 8px rgba(0, 0, 0, 0.4);
}

.stat-item h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-right {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    background: linear-gradient(134deg, #787878 0%, #0F0F0F 19%, #080808 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: inset 0px 2px 0px 0px rgba(184, 180, 180, 0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header img {
    width: 76px;
    height: 76px;
    border-radius: 8px;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.reviewer-info p {
    color: rgba(255, 255, 255, 0.6);
}

.rating {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.6);
}

.review-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

#contact {
    padding: 40px;
    background-color: #0F0F0F;
    border-radius: 48px;
    margin: 100px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 44px;
}

.contact-left {
    flex-basis: 50%;
}

.contact-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 49px;
    font-weight: 400;
    margin-bottom: 32px;
}

.contact-services {
    margin-bottom: 32px;
}

.service-item {
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item:last-child {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.service-info h5 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 10px;
}

.service-info p {
    color: rgba(255, 255, 255, 0.6);
}

.price-badge {
    background-color: #0F0F0F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
}

.contact-right {
    flex-basis: 50%;
}

.contact-right img {
    width: 100%;
    border-radius: 20px;
}

footer {
    padding: 100px 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-left .nav-links {
    gap: 32px;
}

.footer-right.social-media {
    padding-top: 0;
    border-top: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
}

.list-item img {
    width: 100%;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.4);
}

.footer-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-actions .btn {
    min-width: 140px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .profile-container, .testimonials-container, .contact-container, .footer-container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .main-header {
        width: 90%;
    }
    .profile-container, .testimonials-container, .contact-container {
        flex-direction: column;
    }
    .testimonials-left, .testimonials-right, .contact-left, .contact-right {
        flex-basis: 100%;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card:nth-child(1), .project-card:nth-child(4) {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0 20px;
    }
    .nav-links {
        display: none; /* Simple hide for mobile, can be replaced with hamburger menu */
    }
    #hero h1 {
        font-size: 48px;
    }
    .profile-card {
        width: 100%;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
