body {
    background-color: rgba(0, 0, 0, 0.911);
    color:darkgray;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    background-image: url(\images/pexels-felixmittermeier-956999.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.navbar {
    display: flex;
    justify-content:left;
    align-items: center;
    background: #222;
    padding-top: 5px;
    padding-bottom: 5px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.dropdown-content {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.dropdown-content li {
    margin: 0;
    display: flex;
}

.dropdown-content a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 8px 12px;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #555;
    border-radius: 5px;
}

.menu-btn {
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 44px;
        left: 0;
        background: #222;
        flex-direction:column;
        width: 200px; 
        padding: 10px 0;
        text-align: center;
    }

    .dropdown-content li {
        margin: 0;
    }

    .dropdown-content.show {
        display:flex;
        position:absolute;
    }
}

#visitorCounter {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    color: white;
    display: inline-block;
    border-radius: 5px;
    display: flex;
}
.profile_icons {
    display:flex;
    gap: 20px;
    align-items:center;
    position:absolute;
    right: 20px;
}

.profile_icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.profile_icons img:hover {
    transform: scale(1.1);
}

#Home_section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

#main-titles {
    font-size: 72px;
    font-weight: bold;
    white-space: nowrap;  
    overflow: hidden;  
    border-right: .15em solid #fff;
    width: 100%;
    margin: 0 auto;
    animation: 
    typing 1.75s steps(13),
    blink .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  @keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: rgb(219, 217, 213); }
  }

.my_info_header {
    font-size: 50px;
    background: #222;
    border-radius: 10px;
    width: 100%;
    display: center;
    text-align: center;
    
}

#About_Section {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding-top: 60px;

}

#Resume_section {
    min-height: 50vh;
    padding-top: 60px;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
    
}

.resume_box {
    width: 60%;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.778);
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.subtext {
    align-items:center;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.subheading {
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    color: #333;
}

.my_cert {
    display:inline-flex;
    justify-content:center;
    list-style: none;
    margin: 10px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    padding: 0;
    font-weight: 400;
    color: #333;
}


.company {
    text-align:left;
    display: flex;
    font-weight: 400;
    color: #333;
}
span {
    font-size: 20px;
    padding: 1px;
    margin-right: 5px; 
    align-items: center;
    font-weight: 400;
    color: #333;
    
}

.my_info {
    align-items: flex-start;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}
.my_info_p {
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

ul {
    text-align: left;
}

html {
    scroll-behavior: smooth;
}



