body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0f1b;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #00f2ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #00c3cc;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #0a0f1b;
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.nav-links li {
    margin: 0 20px;
}

.nav-links a.active,
.nav-links a:hover {
    color: #00f2ff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.hero-text {
    flex: 1;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-text h3 {
    font-size: 1.8rem;
    color: #00f2ff;
    margin-bottom: 20px;
}

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

.hero-image img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 25px #00f2ff;
    object-fit: cover;
}


.hero-image img {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 0 20px #00f2ff;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Responsive: Stack on Mobile */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-image img {
        width: 200px;
    }
}

.about-section {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 242, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.3);
    max-width: 800px;
    margin: 100px auto;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(10px);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.about-section h2 span {
    color: #00f2ff;
}

.about-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

/* Fade Up Animation */
@keyframes fadeUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.services-section,
.portfolio-section,
.contact-section {
    text-align: center;
    padding: 80px 50px;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.service-box {
    background-color: #1a1f2d;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00f2ff;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box .btn {
    margin-top: 20px;
    border: 2px solid #00f2ff;
    padding: 10px 20px;
    display: inline-block;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.project-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px #00f2ff;
    transition: transform 0.3s ease;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 60%;
    margin: 10px 0;
    padding: 15px;
    background-color: #1a1f2d;
    border: 2px solid #00f2ff;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00c3cc;
    outline: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #00f2ff;
    color: #0a0f1b;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0099cc;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image img {
        margin: 0 0 20px 0;
    }

    .contact-form input,
    .contact-form textarea {
        width: 90%;
    }
}

.skills-section {
    text-align: center;

}

.skills-columns {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.skills-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    background-color: #0e1625;
    width: 220px;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
}

.stars {
    color: gold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .skills-columns {
        flex-direction: column;
        align-items: center;
    }
}

.contact-footer-section {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    background-color: #0b0f19;
}

.contact-footer-section a {
    color: #00f2ff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-footer-section a:hover {
    color: #ffffff;
}

.social-links {
    margin-top: 15px;
    font-size: 18px;
}

.social-links i {
    margin-right: 8px;
}

footer {
    background: #0e1625;
    text-align: center;
    padding: 15px 0;
    color: #aaa;
    font-size: 14px;
}

.animated-text {
    color: #00f2ff;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-img {
    height: 115px;
    margin-left: 10px;
    filter: drop-shadow(0 0 5px #00f2ff);
}