/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}


.navbar-nav .nav-link {
    font-size: 18px;
}

.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* General Styling for Hero Section */
.hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 100vh; /* Reduced height for a better layout */
    position: relative; /* To allow the floating button to stay within context */
}

.hero-content {
    max-width: 800px; /* Limit width of text */
    margin: 0 auto; /* Center horizontally */
    padding: 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem; /* Adjust main title size */
}

.hero-content p {
    font-size: 1.25rem; /* Slightly smaller lead text */
    margin-bottom: 20px; /* Space between text and button */
}

/* Custom Call Button */
.custom-call-btn {
    background-color: #ff5722; /* Orange background color */
    color: white; /* White text */
    border-radius: 50px; /* Rounded button */
    padding: 10px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.custom-call-btn:hover {
    background-color: #e64a19; /* Darker orange on hover */
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 10%;
    right: 15%;
    background-color: #ff5722;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for floating effect */
    z-index: 1000;
}

.floating-btn:hover {
    background-color: #e64a19;
}


/* Footer */
footer {
    background-color: #343a40;
}

footer p {
    margin: 0;
}

h1.display-4, p.lead {
    color: white; /* White text */
    text-shadow: 
        1px 1px 0 #ff5722, /* Right bottom shadow */
        1px 1px 0 #ff5722, /* Left top shadow */
        1px 1px 0 #ff5722, /* Left bottom shadow */
        1px 1px 0 #ff5722; /* Right top shadow */
}


