/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior:smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background-color:#7da2a9
    ;
    padding: 1rem 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color:white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color:white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color:#f4db7d;
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background:#09203f ;
    color:white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.profile-img {
    width: 300px;
    height:300px;
    border-radius: 50%;
    border: 4px solid #E9D5FF;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: white;
    color: #4C1D95;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-primary:hover {
    background-color: #E9D5FF;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #4C1D95;
    margin-bottom: 3rem;
}
.section-titlecon {
    text-align: center;
    font-size: 2rem;
    color: #e9ede2;
    margin-bottom: 3rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    color: #4B5563;
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.skills-tag:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.skill-tag {
    background-color: #F3E8FF;
    color: #4C1D95;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
}

/* Education Section */
.education-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.education-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.education-card h3 {
    color:#d48166;
}

.education-card p {
    color: #6B7280;
}

/* Certifications Section */
.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.certification-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.certification-card h3 {
    color:#0b4141;
}

.certification-card p {
    color: #6B7280;
}
/* Experience Section */
#experience {
    padding: 5rem 2rem;
    background-color: #F9FAFB;
}

.experience-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.experience-card h3 {
    color: #4C1D95;
    margin-bottom: 0.5rem;
}

.company {
    color: #6B7280;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.period {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contact Section */
#contact {
    padding: 5rem 2rem;
    background-color: #464547;
    color: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: rgb(18, 18, 18);
    font-size: 2rem;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.social-links a:hover {
    color: #c68a07;
    transform: scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-input {
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 100%;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 5px #E9D5FF;
}

textarea.form-input {
    min-height: 150px;
}

.submit-btn {
    background-color: white;
    color: #4C1D95;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: #E9D5FF;
    color: #4C1D95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }
    /* Footer Styles */
/* Footer Styles */
/* Footer Styles */
.footer {
    background-color: #4C1D95;  /* Dark purple background */
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centers text horizontally */
    justify-content: center; /* Centers content vertically */
}

.footer-text {
    text-align: center; /* Ensures text inside is centered */
    font-size: 1rem;
    opacity: 0.8;
}


}