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

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80vh;
    gap: 50px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-welcome {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.section-hero h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.2;
}

.hero-role {
    font-size: 2rem;
    color: #fff;
    margin: 10px 0 20px 0;
}

.hero-role .highlight {
    color: #00f0b5;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-pic {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    
    border: 4px solid #00f0b5;
    box-shadow: 0 0 25px rgba(0, 240, 181, 0.6),
                0 0 50px rgba(0, 240, 181, 0.3);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 240, 181, 0.8),
                0 0 70px rgba(0, 240, 181, 0.5);
}

@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        height: auto;
        padding-top: 120px;
    }

    .hero-text {
        text-align: center;
    }
    
    .profile-pic {
        width: 250px;
        height: 250px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family:'Poppins', sans-serif;; 
    background-color: #00679e; 
    color: #f4f4f4; 
    line-height: 1.6;
}

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

section {
    padding: 60px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    display: inline-block;
    background-color: #00f0b5;
    color: #1a1a1a;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00c795;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #00f0b5;
    border: 1px solid #00f0b5;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #00f0b5;
    color: #1a1a1a;
}

nav {
    background: #222;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .nav-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.section-hero {
    padding-top: 150px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-hero h1 {
    font-size: 3rem;
}

.section-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.section-about .about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.section-about .about-text {
    flex: 2;
}

.section-about .about-image {
    flex: 1;
}

.section-about .about-image img {
    border-radius: 50%;
    border: 3px solid #00f0b5;
}

.section-about {
    background-color: #1f1f1f;
    
    border-top: 3px solid #08a0ebf5; 
    
    border-radius: 40px 40px 0 0; 
    
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5); 
    
    margin-top: 50px; 
    padding-top: 80px; 
    padding-bottom: 80px;
}
.section-projects {
    background: #222;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.project-card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}

.project-card .tags {
    color: #00f0b5;
    font-style: italic;
    margin: 10px 0;
}

.skills-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.skills-list {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    width: 45%;
}

.skills-list h3 {
    color: #00f0b5;
    text-align: center;
    font-size: 1.5rem;
}

.skills-list ul {
    list-style: none;
    padding-top: 15px;
}

.skills-list ul li {
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid #444;
}

.section-contact form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    background: #333;
    color: #f4f4f4;
}

.footer {
    background-color: #f0f0f0;
    padding: 25px 0;
    margin-top: 40px;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}

.footer .accent-text {
    color: var(--primary-color);
    font-weight: bold;
}
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .skills-container {
        flex-direction: column;
    }

    .skills-list {
        width: 100%;
    }

    .section-about .about-content {
        flex-direction: column;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
}
.section-skills-new {
    padding-top: 100px;
    padding-bottom: 60px;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.skills-card {
    background-color: #fa5f5f;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.skills-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.skill {
    margin-bottom: 20px;
}

.skill:last-child {
    margin-bottom: 0;
}

.skill-name {
    display: block;
    font-weight: 600;
    color: #151414;
    margin-bottom: 8px;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: #00f0b5;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}
.section-services {
    padding-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #00f0b5;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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