/* Section Background */
.contact-form-section {
    background: linear-gradient(145deg, #274e9b 0%, #F41E1E 100%);
    padding: 50px 0;
}

/* Headings */
.contact-form-section h3,
.contact-form-section h6 {
    color: #ffffff;
    font-weight: bold;
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form-section h6 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Labels */
.text-input label {
    color: #ffffff !important;
    font-weight: 500;
}

/* Inputs and Selects */
input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
select {
    border: 2px solid #1e3a78;
    border-radius: 6px;
    color: #ccc !important;
    /* Ensures typed text is dark and visible */
    padding: 12px 14px;
    width: 100%;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input::placeholder {
    color: #ccc;
    font-size: 15px;
}

input:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(244, 30, 30, 0.3);
}

/* Checkbox Labels */
.checkbox-item label span {
    color: #ffffff !important;
    font-weight: 500;
}

/* Image next to checkbox */
.checkbox-item img {
    vertical-align: middle;
    margin-right: 8px;
    border: 2px solid #ffffff;
}

/* Price */
p.mt-50 {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

/* Submit Button */
.prt-btn {
    /* background-color: #F41E1E !important;
        color: #ffffff !important;
        border: 2px solid #ffffff; */
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.prt-btn:hover {
    /* background-color: #ffffff !important;
        color: #F41E1E !important;
        border-color: #F41E1E; */
    cursor: pointer;
}

/* Error message */
.error {
    color: #F41E1E !important;
    font-size: 14px !important;
    margin-top: 5px;
}

/* Total Section */
.col-lg-6 h6.ml-450,
.col-lg-6 p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Dropdown text color */
select option {
    color: #274e9b;
}

/* Card-like Fee Selection */
.fee-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin: 15px 0;
    background: #ffffff;
    border: 3px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.fee-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.fee-card p {
    margin: 0;
    color: #274e9b;
    font-weight: 600;
    font-size: 16px;
}

.fee-card strong {
    margin-left: auto;
    color: #274e9b;
    font-size: 16px;
}

.fee-card.selected {
    border-color: #F41E1E;
    background: #ffe6e6;
}

/* ✅ Newly Added Total Section */
.total {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.total strong {
    background-color: #ffffff;
    color: #F41E1E;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.total strong span {
    color: #274e9b;
}

.featured-icon-content-box {
    padding: 30px 0;
}

.featured-icon-box.style3 {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-icon-box.style3:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.featured-title h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.featured-link a,
.featured-link p {
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff;
    text-decoration: none;
}

.featured-link a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.red {
    color: #FFD700 !important;
	font-size: 14px !important;
}