body {
    color: black;
    background-color: white;
}
.uppercase {
    text-transform: uppercase;
  }
.navbar .btn {
    white-space: nowrap; /* Prevents text from wrapping to a new line */
    padding-left: 1.5rem; /* Adjust for more horizontal space */
    padding-right: 1.5rem;
    font-size: 1rem; /* Ensure consistent font size */
}

/* Main View */
.full-screen-img {
    height: 100vh;
    background: url('../img/bg1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.full-screen-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adds a dark overlay */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px; /* Ensure spacing for smaller screens */
}

.full-screen-img .overlay h1 {
    color: white;
    font-size: 3rem; /* Adjust heading size */
    margin-bottom: 1rem; /* Add spacing below the heading */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Adds text shadow for better readability */
}

.full-screen-img .overlay p {
    color: #f1f1f1;
    font-size: 1.25rem; /* Slightly smaller than the heading */
    margin-bottom: 1.5rem; /* Add spacing below the paragraph */
    max-width: 600px; /* Restrict the width of text */
}

.full-screen-img .overlay .btn {
    font-size: 1.1rem; /* Slightly larger button text */
    padding: 10px 20px; /* Adjust button padding */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow to the button */
}

/* End Main View */
/* stats */
.middlesection-w3pvt {
    background: url(../img/sect5.jpg) no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
}
.heading {
    color: #fff;
}
p.counter {
    color: #fff;
    font-size: 3em;
    font-weight: 700;
}

.text-stat p {
    color: #eee;
    font-size: 15px;
    letter-spacing: .5px;
}
p.para-text-w3ls{
    color: #ddd;
    font-size: 15px;
}
.w3layouts_stats_left span.fa {
    font-size: 35px;
    color: #00aeff;
}
.text-stat h4 {
    font-size: 22px;
    color: #00aeff;
    line-height: 35px;
    padding: 1em;
    border: 8px solid #aaa;
}
/* //stats */
.statistics {
    background: #000;
    color: #fff;
}
.footer-top h3 span.fa {
    color: #00aeff;
}
footer {
    padding: 20px 0;
    text-align: center;
    background-color: black;
    color: white;
}
/* Contact */
#contact-us {
    padding: 2rem;
    background-color: #fff; /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#contact-us p, #contact-us ul {
    font-size: 1rem;
    line-height: 1.6;
}

#contact-us ul {
    padding-left: 1.5rem;
}

#contact-us form .form-label {
    font-weight: bold;
    color: #333;
}

#contact-us form .form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.75rem;
}

#contact-us form .btn {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    padding: 0.75rem;
}
/* About US */
#about-us {
    background-color: black;
    color: white;
}

#about-us h2, #about-our-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#about-us p {
    font-size: 1rem;
    line-height: 1.8;
}

#about-our-team .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

#about-our-team .card:hover {
    transform: scale(1.05);
}

#about-our-team .card-img-top {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 50%;
}
/* footer */
footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

footer p, footer ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #00aeff; /* Highlighted link color */
}

footer .fab {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

footer .fab:hover {
    transform: scale(1.2); /* Slight zoom on hover */
}
