* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #a8e3fc;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    background-color: #4ba3e3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
}

.logo span {
    background-color: #a8e3fc;
    color: #1a4b8c;
    font-weight: 700;
    font-size: 22px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #1a4b8c;
}

.navbar nav a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 600;
    margin-left: 25px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
}

.profile-frame {
    width: 220px;
    height: 280px;
    background-color: #ffffff;
    border-radius: 30px 10px 30px 10px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px 5px 22px 5px;
}

.hero-text h1 {
    font-size: 38px;
    color: #2b2b2b;
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: #5c62d6;
}

.hero-text p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    max-width: 500px;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 30px 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 2px solid #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #1a365d;
    color: #ffffff;
}

.copyright, .contact-info {
    font-size: 13px;
    color: #4a5568;
    margin-top: 4px;
}
