body {
    font-family: 'Roboto', sans-serif;
}



html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Custom styles for navbar menu */
@media (min-width: 768px) {
    .navbar-nav.center-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .navbar-nav.center-menu {
        position: static;
        transform: none;
    }
}

.nav-link.active {
    color: #0d6efd; /* blue */
    font-weight: bold;
    border-bottom: 2px solid #0d6efd;
}


/*------------------ Home hero Section end-------------------*/
.hero-section {
    display: flex;
    align-items: center;
    scroll-margin-top: 70px;
    animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
/*----------- Home hero Section start ------------------*/

.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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.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;
}


/*Portfolio*/

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.carousel-inner img {
    height: 200px;
    object-fit: cover;
}

.btn {
    font-size: 0.9rem;
}


/*About*/
.section-heading {
    font-size: 3rem;
    font-weight: 700;
}

.badge {
    padding: 10px 15px;
    font-size: 1rem;
    margin: 5px;
}

.card {
    border: none;
    border-left: 5px solid #0d6efd;
    transition: transform 0.3s ease;
}
 .card:hover {
   transform: scale(1.02);
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }


/*contact button*/
.contact-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
}

    .contact-btn:hover {
        background-color: rgba(5, 10, 17, 0.1) !important; /* aro dark blue */
        transform: scale(1.05);
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        text-decoration: none;
    }