/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e0f7fa;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo h1 {
    font-family: 'Pacifico', cursive;
    color: #00796b;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #00796b;
    margin: 0 1.5rem;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00796b;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: 100%;
}

.hero-img {
    flex: 1;
    max-width: 500px;
}

.hero-img img {
    /* margin-left: 150px; */
    width: 80%;
    border-radius: 50%;
    border: 2px solid #e0f7fa ;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hero-img img:hover{
    border-color: #00796b;
    cursor: pointer;
}
.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #004d40;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    background: #00796b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: #004d40;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
#about {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #004d40;
}
.bio-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-card h3 {
    color: #00796b;
    margin-bottom: 1rem;
}

/* Projects Section */
#projects {
    padding: 5rem 5%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card h3 {
    color: #00796b;
    margin-bottom: 1rem;
}

.project-card a {
    display: inline-block;
    margin-top: 1rem;
    color: #00796b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-card a:hover {
    color: #004d40;
}
.date {
    color: #666;
    font-size: 0.9rem;
}
/* Hover Effects */
.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Footer */
footer {
    background: #fff;
    padding: 3rem 5%;
    text-align: center;
    margin-top: 5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    font-size: 2rem;
    color: #00796b;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #004d40;
    transform: translateY(-5px);
}

.copyright {
    color: #666;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
  #contact {
    padding: 5rem 0;
    background-color: #e0f7fa;
    text-align: center;
  }
  #contact h2{
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #004d40;
    
  }
  #contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  
  #contact input, #contact textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  button {
    padding: 1rem;
    background-color: #00796b;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #004d40;
  }