/* Improved typography */
h2, h3, h4 {
    font-weight: 600;
}

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

h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Box shadow for images */
.img-fluid {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: 400px;
    width: 900px;
    transition: transform 0.2s;
}

.img-fluid:hover {
    transform: scale(1.05);
}

/* Improved spacing */
.nav-item a {
    padding: 10px 15px;
}

.nav-item a:hover {
    background-color: #f8f8f8;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.company-logo {
    max-width: 250px;
    margin: 0 auto;
}

/* Color scheme */
.navbar-light .navbar-nav .nav-link {
    color: #333;
}

.navbar-light .navbar-toggler-icon {
    background-color: #333;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #007bff;
}

.navbar {
    margin-bottom: 2rem;
}

/* Carousel customization */
.carousel-item img {
    border-radius: 10px;
}

/* Your styles */

body {
    background-color: #f5f5f5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(50, 50, 50, 0.5);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: rgba(50, 50, 50, 0.9);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-item.active .nav-link {
    font-weight: bold;
    color: #000;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-container {
    text-align: center;
    padding: 10px 0;
}

.company-logo {
    max-width: 100%;
    height: auto;
}
.uniform-image {
    width: 300%; /* or any specific width */
    height: 300px; /* or any specific height */
    object-fit: cover; /* This will ensure that your images are not stretched or squished */
}