/* Global styles */

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #021024;
    color: white;
}

.navbar {
    background-color: #021024;
    height: 70px;
    font-size: 20px;
}

.nav-link {
    color: white !important;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    color: white;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 1.75rem;
}

.highlight {
    color: #00e0ff;
}

p {
    font-size: 1.1rem;
}


/* Social Media Icons */

.social-icons {
    margin-bottom: 20px;
}

.social-icon {
    margin-right: 15px;
    color: white;
    font-size: 1.75rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #00e0ff;
}


/* Button */

.btn-primary {
    background-color: #00e0ff;
    border-color: #00e0ff;
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.5);
}

.btn-primary:hover {
    background-color: #00c4e0;
    border-color: #00c4e0;
    box-shadow: 0 5px 25px rgba(0, 224, 255, 0.7);
}


/* Circle Image */

.image-container {
    position: relative;
}

.image-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 30px rgba(0, 224, 255, 0.5);
    /* Circle shadow */
    margin: 0 auto;
    position: relative;
}

.profile-img {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    /* top: 50px; Adjusts the image's position within the circle */
}


/* Media Query */

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .image-circle {
        margin-top: 20px;
        width: 300px;
        height: 300px;
    }
    .profile-img {
        width: 280px;
        height: 280px;
    }
}


/* About Me Section Styles */

.about-me {
    background-color: #1d1d1d;
    color: white;
    padding: 100px 0;
}

.about-me h2 {
    font-size: 3rem;
    color: white;
}

.about-me h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.about-me p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.highlight {
    color: #00e0ff;
}


/* Circle Image */

.about-image-container {
    position: relative;
}

.about-image-circle {
    width: 300px;
    height: 300px;
    background-color: transparent;
    box-shadow: 0 5px 30px rgba(0, 224, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.profile-img-a {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}


/* Button */

.btn-primary {
    background-color: #00e0ff;
    border-color: #00e0ff;
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.5);
}

.btn-primary:hover {
    background-color: #00c4e0;
    border-color: #00c4e0;
    box-shadow: 0 5px 25px rgba(0, 224, 255, 0.7);
}


/* Media Queries */

@media (max-width: 768px) {
    .about-me {
        text-align: center;
    }
    .about-image-circle {
        margin-bottom: 30px;
    }
}


/* My Services Section */

.my-services {
    background-color: #1d1d1d;
    color: white;
}

.my-services h2 {
    font-size: 3rem;
    color: white;
}

.highlight {
    color: #00e0ff;
}

.service-card {
    background-color: #2c2c2c;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #00e0ff;
}

.service-icon {
    font-size: 3rem;
    color: #00e0ff;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    margin-bottom: 30px;
}


/* Button */

.btn-primary {
    background-color: #00e0ff;
    border-color: #00e0ff;
    box-shadow: 0 5px 15px rgba(0, 224, 255, 0.5);
}

.btn-primary:hover {
    background-color: #00c4e0;
    border-color: #00c4e0;
    box-shadow: 0 5px 25px rgba(0, 224, 255, 0.7);
}


/* -----------footer--------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container8 {
    max-width: 1170px;
    margin: auto;
}

ul {
    list-style: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.footer {
    background-color: #24162b;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul i:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

.footer-col .social-links i {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #00dde5;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #000000;
    transition: all0.5s ease;
}

.footer-col .social-links i:hover {
    color: #24262b;
    background-color: #4da8d2;
}

@media (max-width:700px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
        margin: 30px;
    }
}