@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #555;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.logo {
    font-size: 2em;
    color: #555;
}

.logo span {
    color: #FF2C2C;
}

.navigation a {
    color: #555;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #FF2C2C;
}

.btn-chat {
    color: #fff;
    background: #FF2C2C;
    text-decoration: none;
    padding: 8px 35px;
    border-radius: 10px;
    border: 2px solid #FF2C2C;
    transition: all 0.3s;
}

.btn-chat:hover {
    color: #FF2C2C;
    background: transparent;
}

/* Home Section */
.home {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
}

.home-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
    width: 100%;
}

.text-content {
    max-width: 600px;
    margin-right: auto;
    padding-right: 50px;
}

.text-content h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.text-content h4 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.text-content p {
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-group a {
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-group a:first-child {
    background: #FF2C2C;
    color: #fff;
    border: 2px solid #FF2C2C;
}

.btn-group a:first-child:hover {
    background: transparent;
    color: #FF2C2C;
}

.btn-group a:last-child {
    background: transparent;
    color: #e06640;
    border: 2px solid #e06640;
}

.btn-group a:last-child:hover {
    background: #FF2C2C;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #FF2C2C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #ff4545;
}

.image-container {
    flex-shrink: 0;
}

.image-container img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.header-social-icons {
    display: flex;
    gap: 20px;
}

.header-social-icons a {
    width: 35px;
    height: 35px;
    background: #FF2C2C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.header-social-icons a:hover {
    background: #ff4545;
}

.connect-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content p {
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.dropdown-content p:last-child {
    border-bottom: none;
}

.dropdown-content i {
    margin-right: 10px;
    color: #FF2C2C;
}
* About Section Styles */
.about {
    min-height: 100vh;
    padding: 120px 0 60px;
    background-color: #fafafa;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #555;
}

.about h2 span {
    color: #FF2C2C;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bio-section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bio-section h3 {
    color: #FF2C2C;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.bio-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.bio-section p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #FF2C2C;
    font-weight: 600;
}

.projects-list {
    list-style-type: none;
    margin: 15px 0;
    padding-left: 20px;
}

.projects-list li {
    position: relative;
    padding: 5px 0 5px 25px;
    color: #555;
}

.projects-list li:before {
    content: "•";
    color: #FF2C2C;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .about {
        padding: 100px 20px 40px;
    }
    
    .about h2 {
        font-size: 2.5em;
    }
    
    .bio-section {
        padding: 20px;
    }
}