html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Basic CSS for layout and styling */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-image: url('../images/HireMebinary.jpg');
    background-repeat: repeat;
    color: white;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
}

.ascroll {
    scroll-margin-top: 120px;
}

header h1 {
    margin: 0;
}

/* Navigation */
nav {
    background-color: #444;
    padding: 10px;
}

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    nav li {
        display: inline-block;
        margin: 0 10px;
    }

    nav a {
        color: #fff;
        text-decoration: none;
    }

/* Hero Section */
.hero {
    background-color: #ddd;
    padding: 50px 20px;
    text-align: center;
}

    .hero img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

.card1 {
    position: inherit !important;
}

/* Portfolio Section */
.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
}

.portfolio-item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

/* Experience Section */
.experience-item {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}



.img-profile {
    max-width: 10rem;
    max-height: 10rem;
    border: .5rem solid rgba(255,255,255,.2);
}

.subheading {
    font-weight: 500;
    font-family: sans-serif;
    font-size: 1.15rem
}

#resume h1, h2 {
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

#resume h3, h4, h5, h6 {
    font-family: sans-serif;
    font-weight: 700;
}

section.resume-section {
    border-bottom: 1px solid #dee2e6;
    padding-top: 2rem !important;
    padding-bottom: 5rem !important
}

    section.resume-section .resume-item .resume-date {
        min-width: none;
        text-align: right !important;
    }

@media (min-width: 992px) {
    section.resume-section {
        min-height: 100vh
    }

        section.resume-section .resume-item .resume-date {
            min-width: 18rem
        }
}

.about-line {
    margin-bottom: .5rem !important;
}

    .about-line::before {
        content: "\2BC8";
        color: green;
    }
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}