@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    background: #111111;
    font-family: "Quicksand", sans-serif;
    color: #ffffff;
}

.btn-yellow {
    background-color: #ffb923;
    border: none;
}

.bg-yellow {
    background-color: #ffb923;
}


.btn {
    font-weight: 700;
}

.vector img {
    height: 330px;
}

.welcome-container {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 5%;
}

.preloader-text {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 600;
}

.loading-text {
    overflow: hidden;
    /* border-bottom: .15em solid #ffb923; */
    white-space: wrap;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
    width: 70%;
    text-align: center;
}

.cursor {
    display: inline-block;
    width: 0.5rem;
    height: 3rem;
    background-color: #ffb923;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Navbar styling */
.navbar {
    transition: all 0.5s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 1) !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

img.navbar-logo {
    height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    color: #ffb923;
    font-size: 1.1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffb923;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
}

/* Content sections */
.ptb-5 {
    padding: 50px 0;
}

.pb-5 {
    padding-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    background-color: #ffb923;
    margin: 10px auto 1rem;
}

h4.card-title {
    font-weight: 700;
    color: #b27619;
    font-size: 1.5rem;
    text-decoration: underline;
}

.services:nth-child(even) .service-card {
    background-color: #ffea91;
    color: #111111;
}

.services:nth-child(odd) .service-card {
    background-color: #fff5c8;
    color: #111111;
}

.service-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    color: #FFF;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 25px rgba(255, 185, 35, 0.9);
}

/* Footer */
footer {
    background-color: rgb(255, 185, 35);
    color: #111111;
    padding: 1rem;
    text-align: center;
}

.feature-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    color: #FFF;
    background: #343a40;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 25px rgba(255, 185, 35, 0.9);
}

.feature-icon {
    font-size: 3.5rem;
    color: #ffb923;
    margin-bottom: 1.2rem;
}

.feature-card h4 {
    font-weight: 600;
    color: #FFF;
    margin-bottom: 1rem;
}

.highlight-badge {
    background-color: #ffb923;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}