/* Beautiful Girlish Aesthetic Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

* {
    box-sizing: border-box;
}

/* Basic Setup */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #6B4C8A;
    background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
    margin: 0;
    padding: 0;
}

/* Header/Title */
h1 {
    margin: 0;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #E6B8D7 0%, #D4A5D9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 106, 173, 0.2);
}

/* Navigation */
nav {
    text-align: center;
    padding: 25px 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid #FFB6D9;
}

nav a {
    color: #8B4789;
    text-decoration: none;
    margin: 0 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF69B4, #DDA0DD);
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

nav a:hover {
    color: #FF69B4;
}

/* Horizontal Line */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFB6D9, transparent);
    margin: 20px 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFB6D9 0%, #DDA0DD 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
    margin: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.2);
}

.hero-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.hero-section a {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.hero-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* General Sections */
section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.my-goal, .services, .top-section {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(230, 106, 173, 0.1);
    margin-bottom: 30px;
}

/* Section Titles */
section h3, section h4, section h5 {
    color: #8B4789;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Page Title */
.page-title {
    color: #8B4789;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin: 40px 0;
}

/* Profile Picture */
.profile-pic {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    margin: 30px auto 40px;
    border-radius: 50%;
    border: 5px solid #FFB6D9;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.25);
    transition: all 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.35);
}

/* Lists */
.services ol, .services ul, .skillset ul, .hobbies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services li, .skillset li, .hobbies li {
    background: linear-gradient(135deg, #FFE6F0, #E6D9F0);
    color: #6B4C8A;
    padding: 14px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #FF69B4;
}

.services li:hover, .skillset li:hover, .hobbies li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.15);
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
}

table th {
    background: linear-gradient(135deg, #E6B8D7, #D4A5D9);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 3px solid #FF69B4;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #FFE6F0;
    color: #6B4C8A;
}

table tr:hover {
    background-color: #FFF5F7;
}

/* Skills & Hobbies Sections */
.skillset, .hobbies {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(230, 106, 173, 0.1);
    margin-bottom: 30px;
}

/* Education Section */
.My-Education {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(230, 106, 173, 0.1);
    margin-bottom: 30px;
}

/* Who I Am Section */
.who-i-am {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(230, 106, 173, 0.1);
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(230, 106, 173, 0.1);
    max-width: 600px;
    margin: 30px auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    color: #8B4789;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #FFE6F0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #6B4C8A;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.2);
}

.contact-form input[type="submit"] {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.contact-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Sidebar */
aside {
    background: linear-gradient(135deg, #FFE6F0, #E6D9F0);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 30px auto;
    border-left: 5px solid #FF69B4;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

aside p {
    color: #6B4C8A;
    margin: 15px 0;
    font-weight: 500;
}

aside em {
    color: #FF69B4;
    font-style: normal;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #E6B8D7 0%, #D4A5D9 100%);
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    box-shadow: 0 -4px 15px rgba(230, 106, 173, 0.2);
    font-weight: 500;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
    
    .hero-section {
        padding: 50px 20px;
        margin: 20px;
    }
    
    .hero-section h2 {
        font-size: 28px;
    }
    
    nav a {
        margin: 0 15px;
        font-size: 14px;
    }
    
    section {
        margin: 30px auto;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    table {
        font-size: 14px;
    }
    
    table th, table td {
        padding: 10px;
    }
    
    .profile-pic {
        width: 250px;
        height: 250px;
        margin: 20px auto 30px;
    }
}









