.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    background-image: url('your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 40px;
}

.apply-btn {
    background-color: #555;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.apply-btn:hover {
    background-color: #333;
    color: #fff;
}

/* features css */
.legacy-image-bg {
    background-image: url('../Images/featuresimgbg.jpeg');
    background-size: cover;
    min-height: 400px;
    /* Forces the section to be visible */
}

.display-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.feature-icon {
    width: 80px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)) brightness(0) invert(1);
}

.apply-sidebar-btn {
    position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 1050;
    background-color: #e52e06;
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* form */
.form-control,
.form-select {
    border-radius: 2px;
    border: 1px solid #ced4da;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}

.form-control::placeholder {
    color: #adb5bd;
}

.text-primary {
    color: #000000 !important;
    /* Matches the brand blue */
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* about */
.about-section {
    background-color: #000000;
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-section h2 {
    font-size: 2.25rem;
}

.about-section .lead-text {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
}
.footer{
    background-color: #f6f2ec;
    padding-top: 10px;
}

.floating-container-left {
    position: fixed;
    right: 10px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    /* Slight grow on hover */
    color: #fff;
}

/* Colors */
.whatsapp {
    background-color: #25D366;
}

.call {
    background-color: #007bff;
    /* Standard Blue, or use #34b7f1 for light blue */
}