/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;

}

.brand-logo {
    max-width: 100px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Add spacing below the logo */
    animation: fadeIn 1.2s ease-in-out; /* Optional animation */
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease-in-out;
    margin-left: 1rem; /* Space between links */
}

.navbar-nav .nav-link:hover {
    color: #ff5d00; /* Highlight on hover */
}

.navbar-brand {
    font-weight: 700;
    font-family: 'Merriweather', serif;
    padding: 0.1rem 0; /* Adjust spacing around the logo */
    margin-right: 1rem; /* Space between logo and navigation items */
 }

/* Navbar Logo */
.navbar-logo {
    height: 70px; /* Increase height for better visibility */
    width: auto; /* Maintain aspect ratio */
    display: inline-block;
}

/* Navbar Shadow */
nav.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

 /* Navbar Toggler Icon */
.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: #333; /* Dark color for visibility */
}

 #about, #values, #services, #team {
     padding: 4rem 2rem;
 }

/* Optional Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Text Styling */
.container {
    position: relative;
    z-index: 2; /* On top of the overlay */
    text-align: center;
    padding: 20px;
    overflow-x: hidden; 
}

.custom-heading {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.custom-heading .brand-name {
    font-size: 5rem;
    font-weight: 600;
    color: #ff5d00; /* Set the desired color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional for depth */
}


/* Subheading */
.lead {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 800;
    font-family: 'Dancing Script', cursive;
    letter-spacing: 0.08em; /* Increase letter spacing */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Optional for depth */
    line-height: 1.5; /* Comfortable line spacing */
}

/* Button */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #212529;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4);
}

/* Hero Section */
#hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content .btn {
    background: #007BFF;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

/* About Section */
#about {
    padding: 2rem;
    text-align: justify-all;
}

/* Services Section */
#services {
    padding: 2rem;
    text-align: justify-all;;
}
/* Value Section */
#values {
    padding: 2rem;
    text-align: justify-all;;
}
/* Team Section */
#team {
    padding: 2rem;
    text-align: justify-all;;
}

.service {
    margin: 1rem 0;
}

.icon {
     color: #2980b9;
     font-size: 1.2rem;
     margin-right: 10px;
 }

/* Client Success Stories */
#success {
    padding: 2rem;
    background: #e8f5e9;
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 2rem;
    text-align: center;
    background: #f4f4f4;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea, form button {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
}

form button {
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}

.client-display {
    height: 100vh; /* Full-screen height */
    width: 100%;
    display: flex; /* Align items within the container */
    position: relative;/* Position context for foreground image */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* Makes text more legible on images */
    justify-content: center; /* Center horizontally */
    margin: 0;
    padding: 0;
    align-items: center; /* Center vertically */
    overflow: hidden; /* Prevent image overflow */
}

.client-image {
    max-width: 100%; /* Restrict width to container width */
    max-height: 100%; /* Restrict height to container height */
    object-fit: contain; /* Ensures the entire image fits without clipping */
    position: absolute; /* Keeps the image in the foreground */
}

.description {
    text-align: justify;
    padding: 10px;
    background-color: #f9f9f9; /* Light background for readability */
    border-radius: 5px;
    margin-top: 10px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.modal-body {
    font-size: 1rem;
    line-height: 1.6;
}