body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Navigation Styles */
.top-nav {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
}

/* Hero Section Styles */
.hero {
    background-image: url('image/bg.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.social-icons {
    font-size: 24px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffa500;
    transform: translateY(-3px);
}

/* About Me Section Styles */
.about-me {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;  /* This will align items to the top */
}

.profile-image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    color: #FFA500;
    line-height: 1;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image p {
    margin: 0;
}

.about-content {
    flex: 1;
    position: relative;
}

.about-content h2 {
    margin-top: -5px;  /* Adjust this value as needed */
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.about-content p:last-child {
    font-style: italic;
}

/* Import Projects Styles */
@import url('projects.css');

.resume-link {
    font-size: 18px;  /* Increased from 16px */
    color: #007bff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: normal;
}

.resume-link i {
    margin-right: 5px;
    font-size: 20px;  /* Increased icon size to match */
}

.resume-link:hover {
    color: #0056b3;
}

/* Wanna Collab Section Styles */
.wanna-collab {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.wanna-collab h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.section-divider {
    padding: 40px 0;
    position: relative;
}

.divider-line {
    height: 2px;
    background: linear-gradient(to right, transparent, #FFA500, transparent);
    position: relative;
}

.divider-line::before,
.divider-line::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    background-color: #FFA500;
    border-radius: 50%;
}

.divider-line::before {
    left: calc(50% - 50px);
}

.divider-line::after {
    right: calc(50% - 50px);
}

.ongoing-projects {
    padding-bottom: 20px;
}

.wanna-collab {
    padding-top: 20px;
}

/* Additional form styles */
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #666;
}

<div class="form-group">
    <label for="subject">Subject</label>
    <input type="text" id="subject" name="subject" required>
</div>

<div class="form-group">
    <label for="collab-type">Collaboration Type</label>
    <select id="collab-type" name="collab-type" required>
        <option value="">Select a type</option>
        <option value="project">Project Collaboration</option>
        <option value="research">Research Partnership</option>
        <option value="mentorship">Mentorship</option>
        <option value="other">Other</option>
    </select>
</div>

<div class="form-group">
    <label for="message">Message</label>
    <textarea id="message" name="message" required></textarea>
    <span id="char-count">0/500</span>
</div>

<script>
    document.getElementById('message').addEventListener('input', function() {
        document.getElementById('char-count').textContent = this.value.length + '/500';
    });
</script>

/* Footer Styles */
.site-footer {
    background-color: #1e2a3a;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer {
    background-color: #1e2a3a;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffa500;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffa500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

.hire-me-container {
    margin-top: 20px;
}

.hire-me-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0c1724;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.hire-me-button:hover {
    background-color: #12467b;
    color: #00ffff;
    border-color: #00ffff;
}

/* Remove any transform, box-shadow, or text-shadow properties */

.projects {
    background-color: #fff;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #1e2a3a;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,255,255,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

#chatbot-header {
    background-color: #0c1724;
    color: #00ffff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

#chatbot-toggle {
    background: none;
    border: none;
    color: #00ffff;
    cursor: pointer;
    font-size: 20px;
}

#chatbot-body {
    height: 350px;
    display: flex;
    flex-direction: column;
}

#chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    color: #fff;
}

#chat-messages div {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
}

#chat-messages div:nth-child(odd) {
    background-color: #2c3e50;
    align-self: flex-start;
}

#chat-messages div:nth-child(even) {
    background-color: #34495e;
    align-self: flex-end;
}

#chat-form {
    display: flex;
    padding: 10px;
    background-color: #0c1724;
}

#user-input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #2c3e50;
    color: #fff;
}

#chat-form button {
    margin-left: 10px;
    padding: 10px;
    background-color: #00ffff;
    color: #0c1724;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#chat-form button:hover {
    background-color: #00cccc;
}

.chatbot-closed #chatbot-body {
    display: none;
}

.chatbot-closed {
    height: 60px;
}