body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bs-dark);
}

a{
    color: #f8c51d;
}
/* Navbar Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
}

.nav-link {
    font-weight: 500;
    margin-right: 20px;
}

.hero {
    background-color: #fff;
    padding: 40px 0 30px;
    height: 60vh;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero h2 {
    font-style: italic;
    font-weight: 300;
    color: #6c757d;
}

.hero p {
    color: #6c757d;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 10px 24px;
}

.hero img {
    position: absolute;
    top: 45%;
    left: 15%;
    border-radius: 10px;
    object-fit: cover;
    width: 70%;
    height: 50%;
    z-index: 1;
}

.card {
    background-color: transparent;
    border: none;
}

.card-body h5,
p {
    color: #fff;
}

.step-icon {
    color: yellow;
    font-size: 25px;
}

.how-it-works-image {
    width: 260px;
    height: 260px;
    border-radius: 0 50% 0 50%;
    overflow: hidden;
    display: flex;
    position: absolute;
    right: 15%;
}

.how-it-works-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.center-icon {
    background-color: #f8c51d;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box {
    background-color: #f8c51d;
    color: #0f0f0f;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.image-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.image-grid img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.process-step{
    background-color: #363737;
    padding: 10px;
    border-radius: 10px;
}

.about-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.about-banner .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero img {
        left: 10%;
        width: 80%;
        height: 40%;
    }
}