body {
    font-family: 'Droid Sans Arabic', sans-serif !important;

    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    /* Adjust the background color as needed */
    color: #ffffff;
    /* Adjust the text color as needed */
    padding: 20px 0;
    /* Adjust the padding as needed */
    text-align: center;
}

.hero-section {
    position: relative;
    color: #fff;
    /* Ensure text readability */
    padding: 60px 0;
    /* Increased padding for emphasis */
}

/* Use media queries to adjust padding on smaller screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    /* Adjust the opacity as needed */
    z-index: -1;
    border-bottom: 2px solid silver;
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}


.label-sm {
    font-size: 14px;
    /* Adjust the font size as needed */
}

/* Additional custom styling for form */
.form-control {
    border-radius: 0;
}

ul {
    list-style-type: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* You can keep the fade-in animation CSS if you still want to use it for other content */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-out;
}

/* Text animation */
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}


.hero-section,
.py-5 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadows for depth */
    margin: 20px 0;
    /* Better spacing */
    padding: 40px;
    /* Enhanced padding for better readability */
}