.navbar.navbar-expand-lg.navbar-light.bg-light{
    background-color: #fff !important;
}
/* General Container Styling */
section .container {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
section h1 {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    text-align: center;
}

/* Image Holder */
section .img-holder img {
    border: 3px solid var(--main-color);
    border-radius: 8px;
    max-width: 100%;
    transition: transform 0.3s ease;
}

section .img-holder img:hover {
    transform: scale(1.05);
}

/* Form Styling */
section form .form-label {
    font-weight: bold;
    color: var(--main-color);
}

section .form-control, 
section .form-select {
    border: 2px solid var(--main-color-1);
    border-radius: 8px;
    padding: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

section .form-control:focus, 
section .form-select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 5px var(--main-color);
}

/* Email Help Text */
section #emailHelp {
    font-size: 0.85rem;
    color: var(--main-color-1);
}

/* Country Dropdown */
section select.form-select {
    font-size: 1rem;
    background-color: #fff;
}

/* Upload File Section */
section .files-input {
    border: 2px dashed var(--main-color-1);
    /* padding: 1rem; */
    background-color: #fefefe;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

section .files-input:focus {
    border-color: var(--main-color);
    background-color: #f9f9f9;
}

section .addMore {
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

section .addMore:hover {
    color: var(--main-color-2);
    text-decoration: underline;
}

/* Order Button */
section .btn-order {
    background-color: var(--main-color);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

section .btn-order:hover {
    background-color: var(--main-color-2);
    transform: translateY(-2px);
}

section .btn-order:active {
    transform: translateY(0);
}

/* List Styling */
section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

section ul li {
    margin-bottom: 0.5rem;
    color: var(--main-color);
    font-weight: 500;
    font-size: 1rem;
}

section ul li:before {
    content: '•';
    color: var(--main-color-2);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    section .container {
        padding: 1.5rem;
    }

    section h1 {
        font-size: 1.8rem;
    }

    section .btn-order {
        font-size: 0.9rem;
    }
}
