/* General Styles */
ul {
    list-style: disc;
    margin-left: 0;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
}

.custom-bullets {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 1.5em;     /* Add space below the list */
}

.custom-bullets li {
    list-style: none;
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.3em;     /* Optional: space between lines */
}

/* Spade bullet */
.custom-bullets .spade-bullet::before {
    content: '♠';
    position: absolute;
    left: 0;
    color: black;
}

/* Heart bullet */
.custom-bullets .heart-bullet::before {
    content: '♥';
    position: absolute;
    left: 0;
    color: crimson; /* You can also use red or any other color */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f9; /* Light gray-blue for a clean, modern look */
    color: #333;
}

header {
    height: 60px; /* Ensure consistent height for calculations */
    background: #003366; /* Example header background */
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem;
    background: #003366; /* Dark navy blue for a professional header */
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    text-decoration: none;
    color: #f4f4f9; /* Light text to contrast against navy */
    font-weight: bold;
}

header nav ul li a:hover {
    color: #1e90ff; /* Bright blue hover effect */
}

/* Section Layout */
.section {
    calc(100vh - header-height); /* Subtract the header height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

#about {
    background: #e6eefc; /* Light blue background for a calming effect */
}

#contact {
    background: #fdf5f0; /* Light background for contrast */
}

/* About Section */
.about-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 800px;
    background: #ffffff; /* White card background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
}

.about-info {
    flex: 1;
    padding: 1rem;
    text-align: left;
}

.about-info h1 {
    font-size: 2rem;
    color: #003366; /* Navy blue for headings */
    margin-bottom: 0.5rem;
}

.about-info h2 {
    font-size: 1.5rem;
    color: #1e90ff; /* Bright blue for subheadings */
    margin-bottom: 1rem;
}

.about-info p {
    font-size: 1rem;
    line-height: 1.6; /* Adjusts the space between lines */
    color: #555; /* Neutral text color for readability */
    margin-bottom: 1rem;
}

.links a {
    text-decoration: none;
    margin-right: 1rem;
    color: #003366; /* Navy default icon color */
    transition: color 0.3s ease;
}

.links a:hover {
    color: #1e90ff; /* Bright blue on hover */
}

.links i {
    font-size: 2rem;
    vertical-align: middle;
}

.about-image {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

.about-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1e90ff; /* Bright blue border for a standout look */
}

/* Contact Section */
    .contact-card {
        width: 100%;
        max-width: 600px;
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .contact-card h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #333;
        text-align: center;
    }

    .contact-card form {
        display: flex;
        flex-direction: column;
    }

    .contact-card label {
        margin-bottom: 0.5rem;
        font-weight: bold;
        color: #555;
    }

    .contact-card input,
    .contact-card textarea {
        padding: 0.75rem;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        color: #333;
        background: #f9f9f9;
    }

    .contact-card button {
        padding: 0.75rem;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .contact-card button:hover {
        background: #555;
    }

    .contact-card button:focus {
        outline: 2px solid #1e90ff;
        outline-offset: 2px;
    }

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #003366; /* Matches the header color */
    color: #f4f4f9;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Mobile-Friendly Layout */
@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-info {
        padding: 0.5rem;
    }

    .about-image img {
        width: 120px;
        height: 120px;
    }

    .links i {
        font-size: 1.5rem;
    }
}

}
