/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Modern sans-serif font */
    line-height: 1.6;
    color: #333; /* Neutral dark gray */
    background-color: #f4f4f4; /* Light background */
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.navbar {
    background-color: #3a4a58; /* Dark blue-gray for the navbar */
}

.navbar-nav .nav-link {
    font-size: 18px;
    color: white !important; /* Ensure white nav links */
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #57a1c6 !important; /* Light blue on hover */
}

.navbar-brand {
    font-size: 1.5rem;
    color: #57a1c6 !important; /* Brand logo in light blue */
    font-weight: bold;
}


.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    border: none;
    border-radius: 10px; /* Rounded corners */
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Hero Section Styling */
.hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 200vh; /* Slightly reduced height */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #57a1c6; /* Light blue for header */
}

.hero-content p {
    font-size: 1.8rem;
    color: #ffffff;
}

.hero-content h1, .hero-content p {
    color: #ffffff !important; /* Ensures text is white */
    text-shadow: 
        -1px -1px 0 #000, /* Top left shadow */
        2px -1px 0 #000, /* Top right shadow */
        -1px 1px 0 #000, /* Bottom left shadow */
        1px 1px 0 #000 !important; /* Bottom right shadow */
    /* Optional: To make the border thicker, you can duplicate these shadows with more offsets */
}

/* Custom Call Button */
.custom-call-btn {
    background-color: #57a1c6; /* Light blue button */
    color: white;
    border-radius: 40px;
    padding: 15px 40px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.custom-call-btn:hover {
    background-color: #4a90a3; /* Darker blue on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Add shadow */
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #57a1c6;
    padding: 15px 25px;
    border-radius: 40px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* Strong shadow for floating button */
    z-index: 1000;
    font-size: 1.2rem;
}

.floating-btn:hover {
    background-color: #4a90a3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Service Cards */
.card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #57a1c6; /* Light blue title */
}

.card-text {
    font-size: 1rem;
    color: #7f8c8d; /* Lighter gray for description text */
}

.card-body {
    padding: 20px;
}

/* Footer */
footer {
    background-color: #3a4a58; /* Dark blue-gray */
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Section Titles */
h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #57a1c6;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

/* Contact Form */
form input, form textarea {
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
}

form input:focus, form textarea:focus {
    border-color: #57a1c6; /* Light blue border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(87, 161, 198, 0.5); /* Soft glow on focus */
}

form button {
    background-color: #57a1c6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

form button:hover {
    background-color: #4a90a3;
}

/* Text Shadow for Hero Section */
h1.display-4, p.lead {
    color: white;
    text-shadow: 
        1px 1px 5px #3a4a58; /* Softer shadow for text clarity */
}
