/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: black;
    color: white;
}

/* Navbar */
.navbar-dark .navbar-nav .nav-link {
    color: white;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ff5733;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('your-background-image.jpg') no-repeat center center/cover;
    color: white;
}

/* Circle Profile */
.circle-profile {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.circle-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Box */
.info-box {
    border-radius: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

/* Underline Style for Section Titles */
.underline {
    border-bottom: 3px solid blue; /* Change color as needed */
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

/* Responsive Layout */
@media (min-width: 768px) {
    .circle-profile {
        width: 250px;
        height: 250px;
    }

    .info-container {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .circle-profile {
        width: 300px;
        height: 300px;
    }

    .info-container {
        flex-direction: row;
    }

    .info-box {
        margin: 10px;
    }
}

/* Footer */
footer {
    background-color: #000;
}