body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar Styles */
.custom-navbar {
    background-color: #483d8b;
    /* Dark Slate Blue approximation */
    color: white;
    padding: 0.5rem 1rem;
}

.custom-navbar .navbar-brand {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 15px;
}

.custom-navbar .nav-link:hover {
    color: #ffc107 !important;
    /* Yellow on hover */
}

/* Banner Styles */
.banner-section {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}

.flag-wave {
    height: 100px;
    background: linear-gradient(to right, #ff9933, #ffffff, #138808);
    /* Indian flag colors gradient as placeholder */
    opacity: 0.8;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.5);
    margin-bottom: -50px;
}

/* Service Grid Styles */
.service-card {
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.bg-yellow-card {
    background-color: #fcf4a3;
    /* Light Yellow */
    color: #333;
}

.bg-blue-card {
    background-color: #483d8b;
    /* Dark Slate Blue */
    color: #fff;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-proceed {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.bg-blue-card .btn-proceed {
    color: #483d8b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 15px;
    }
}

/* Order Form Styles */
.order-form-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.form-heading {
    color: #483d8b;
    font-weight: 700;
    margin: 0;
}

.stepper {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 5px 10px;
    display: inline-flex;
}

.step {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.step.active {
    background-color: #483d8b;
    color: #fff;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    height: auto;
}

.form-control:focus {
    border-color: #483d8b;
    box-shadow: 0 0 0 0.2rem rgba(72, 61, 139, 0.25);
}

.form-text {
    font-size: 0.8rem;
    margin-top: 5px;
}