<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">select option {
    display: flex;
    align-items: center;
}

select option .country-flag img {
    display: inline-block;
    vertical-align: middle;
}

/* Form container */
.form-floating-custom {
    position: relative;
    margin-top: 2rem;
}

/* Input, select, and textarea styles */
.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Placeholder styles */
.form-floating-custom input::placeholder,
.form-floating-custom textarea::placeholder {
    color: transparent; /* Hidden by default */
    transition: color 0.3s ease;
}

/* Show placeholder when field is focused */
.form-floating-custom input:focus::placeholder,
.form-floating-custom textarea:focus::placeholder {
    color: #aaa;
}

/* Label styles */
.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 0 4px;
    font-size: 16px;
    color: #666;
    pointer-events: none;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

/* Label behavior on input focus or when value is entered */
.form-floating-custom input:focus + label,
.form-floating-custom input:not(:placeholder-shown) + label,
.form-floating-custom select:focus + label,
.form-floating-custom select:not([value=""]) + label,
.form-floating-custom textarea:focus + label,
.form-floating-custom textarea:not(:placeholder-shown) + label {
    top: -5px;
    font-size: 14px;
    color: #007bff;
}

/* Input, select, and textarea focus styles */
.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.imp {
    color: red !important;
}

.main-heading {
    font-size: 2.5rem; /* Larger font size for main heading */
    color: #ff0d0df5; /* Dark gray color */
    font-weight: 700; /* Bold text */
    margin-bottom: 0.5rem; /* Adjust spacing below heading */
    letter-spacing: 0.5px; /* Slight spacing for readability */
    text-transform: capitalize; /* Capitalize words */
    padding-bottom: 0.5rem; /* Space between text and underline */
}

.sub-heading {
    font-size: 1.8rem; /* Slightly smaller font size */
    color: #f78e39; /* Lighter gray for contrast */
    font-weight: 500; /* Semi-bold text */
    margin-top: 0.5rem; /* Adjust spacing above */
    letter-spacing: 0.3px; /* Slight letter spacing */
    text-transform: capitalize; /* Capitalize words */
}

.form-floating-custom .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.form-floating-custom .form-check-input {
    margin-right: 10px; /* Adds space between the checkbox and label */
}

.form-floating-custom label {
    font-size: 1rem; /* Adjust label font size if needed */
}


.about-us-section {
    background-color: #f9f9f9;
}

.main-heading {
    font-size: 2.5rem;
    color: #ff0d0df5;
    font-weight: bold;
}

.sub-heading {
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
}

.about-card {
    background-color: #fff;
    border: 1px solid #ddd;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: scale(1.05);
    border-color: #ff0d0df5;
}

/* Contact-Us */

.contact-us-section {
    background-color: #fdfcfcf5; /* Dark theme background */
}

.main-heading {
    color: #ff0d0df5;
    font-weight: bold;
}

.text-primary {
    color: #ff0d0df5;
}

.btn-primary {
    background-color: #ff0d0df5;
    border: none;
    color: #ffffff;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e00c0c;
    color: #ffffff;
}

.map-container iframe {
    border: none;
    border-radius: 8px;
}
</pre></body></html>