/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #38bdf8;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #38bdf8;
}

.hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0ea5e9;
}

/* Section Common Layouts */
.section {
    padding: 6rem 10%;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

/* About Section */
.about-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #94a3b8;
}

/* Portfolio Section Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #1e293b;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #334155;
}

.project-img {
    height: 200px;
    background-color: #334155;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.project-card h3 {
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Contact Section Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #fff;
    border-radius: 5px;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #38bdf8;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #0b0f19;
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar { padding: 1.5rem 5%; }
    .nav-links { display: none; } /* Kept simple for raw CSS */
    .hero-content h1 { font-size: 2.5rem; }
    .section { padding: 4rem 5%; }
}
.highlight {
    color:#fff !important;
    /* background-image: url('../img/amare2.jpg');
    background-position: right; */
}

.hero-section {
    background-image: url('../img/coding\ image.avif');
    background-position: right;
}
.description {
    color: #fff !important;
}
.about-section {
    background-image: url('../img/am3.png');
    background-repeat: no-repeat;
    background-position: left;
    margin-top: 0 auto;
    /* margin-left: 2px !important;
    padding-left: 1px;
     */
}
 .project-img1 {
    background-image: url('../img/evan2.png');
    background-repeat: no-repeat;
    height: 150px;
 }
 .project-img2 {
    background-image: url('../img/appl.png');
    background-repeat: no-repeat;
    height: 150px;
 }