/* styles.css */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.content {
    padding: 20px;
}

.modern-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 2rem;
}

.vision-text {
    font-size: 1.25rem;
    color: #34495e;
    text-align: center;
    margin-top: 1rem;
}

.content p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.6;
}

.navbar {
    background-color: #2c3e50 !important;
    padding: 1rem 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #1abc9c !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: #1abc9c !important;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.form-inline .form-control {
    border-radius: 20px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}

.form-inline .btn {
    border-radius: 20px;
    border: 1px solid #1abc9c;
    color: #1abc9c;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.form-inline .btn:hover {
    background-color: #1abc9c;
    color: #ffffff;
}

footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: auto;
}

footer p {
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

footer a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.carousel {
    margin: 0 auto;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    bottom: 20%;
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.25rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.card {
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 2rem;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.card-text {
    font-size: 1rem;
    color: #34495e;
}

.btn-primary {
    background-color: #1abc9c;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #16a085;
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.service-card .card-text {
    font-size: 1rem;
    color: #34495e;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container .form-group {
    margin-bottom: 1.5rem;
}

.form-container label {
    font-weight: 500;
    color: #2c3e50;
}

.form-container .form-control {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-container .form-control:focus {
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.form-container .btn-primary {
    background-color: #1abc9c;
    border: none;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.form-container .btn-primary:hover {
    background-color: #16a085;
}
/* Add this to your existing CSS file */

.service-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
    display: block; /* Ensure the image behaves as a block element */
    margin: 0 auto; /* Center the image horizontally */
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text inside the card */
}

.service-card .card-body {
    padding: 1.5rem;
    width: 100%; /* Ensure the card body takes full width */
}
/* Add this to your existing CSS file */

/* Adjust the left-side text (descriptions) to be a bit lower */
.col-md-8 p {
    margin-top: 30px; /* Adjust this value as needed */
    padding-top: 10px; /* Optional: Adds padding at the top */
}