* {
    margin: 0px;
    padding: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

* {
    box-sizing: border-box;
}

li {
    list-style: none;

}

.gallery h3 {
    font-family: "Josefin Sans", sans-serif;
    color: #0a6297;
}



h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #0a6297;
}

.navbar a {
    font-size: 18px;
    padding-right: 20px;
}

.navbar-nav a:hover {
    border-bottom: 1px solid #0a6297;
}

/* Shadow class to add when scrolling */
.navbar-scroll-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease-in-out;
}

.navbar img {
    width: 30%;
}



body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 70vh;
    /* height: 30vh; */
    /* Flexible height based on viewport */
    max-height: 500px;
    margin: auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 12px;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .slider {
        height: 100vh;
    }

    .prev,
    .next {
        padding: 8px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 70vh;
    }

    .prev,
    .next {
        padding: 6px;
        font-size: 16px;
    }
}

.about-us-breadcrumb {
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: linear-gradient(rgba(54, 53, 51, 0.5)), url(../img/bg_image_2.jpg);
    background-repeat: no-repeat;
    background-position: center;

}

.read-more {
    color: #0a6297;
}

.read-more:hover {
    background-color: #0a6297;
    color: white;
    padding: 3px;
}

.about-section p {
    text-align: justify;
}

.page-title p {
    color: #0a6297;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

/* Responsive: on smaller screens show 2 columns */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: on very small screens show 1 column */
@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* footer */
.footer-sec {
    background-color: #333333;
}

.contact-wrapper:hover {
    background-color: #0a6297;
    color: rgb(255, 255, 255);
}



.services-h3::after {
    content: "Services";
    color: #0a6297;
}

.engineering-breadcrumb {
    background-image: url(../img/photos/banner\ 2.png);

    background-size: cover;
    background-repeat: no-repeat;

    padding: 150px;
}

.trading-breadcrumb {
    background-image: url(../img/Nichetech\ banner\ 2.png);

    background-size: cover;
    background-repeat: no-repeat;

    padding: 150px;
}