.hero-left,
.hero-slides {
    position: relative;
    width: 50%
}

.arrow,
.btn {
    cursor: pointer
}

.hero-section,
.hero-slides,
.why-us-bar {
    display: flex;
    overflow: hidden
}

.services-section,
.slide {
    background-size: cover;
    background-position: center
}

body,
footer ul {
    padding: 0;
    margin: 0
}

.about-us-heading,
.about-us-right,
.card,
.section-heading,
.services,
.services-section,
.why-us-heading,
.why-us-item,
footer .copyright {
    text-align: center
}

:root {
    --dark-blue: #0e1f32;
    --red: #d02f26;
    --white: #ffffff;
    --black: #000000;
    --dark-blue: #0e1f32;
    --red: #d02f26;
    --white: #ffffff;
    --black: #000000
}

html {
    scroll-behavior: smooth
}

.hero-section {
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 80vh;
    background-color: #000
}

.hero-left {
    padding: 20px;
    color: var(--white);
    z-index: 1;
    background-color: #000;
    border-radius: 0
}

.short-sentence {
    font-size: 1.2rem;
    color: var(--white)
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 10px 0
}

.btn,
.hero-description {
    font-size: 1rem;
    color: var(--white)
}

.hero-description {
    margin-bottom: 20px
}

.buttons {
    display: flex;
    gap: 20px
}

.btn {
    padding: 12px 30px;
    border: none;
    background-color: #1459a1;
    border-radius: 5px
}

.hero-slides {
    height: 100%
}

.slide {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    transition: transform 2s
}

.slide-1 {
    background-image: url(../imgs/istockphoto-1268366917-612x612.jpg)
}

.slide-2 {
    background-image: url(../imgs/istockphoto-1175908588-612x612.jpg)
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white)
}

.left-arrow {
    left: 10px
}

.right-arrow {
    right: 10px
}

.navbar-toggler-icon {
    background-color: #000
}

.about-us,
.navbar-custom {
    background-color: #fff
}

body {
    font-family: Signika;
    overflow-x: hidden;
    color: #000;
    box-sizing: border-box
}

.about-us {
    color: #0e1f32;
    padding: 40px 20px
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.about-us-left {
    width: 50%;
    padding: 20px
}

.about-us-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color:  #1459a1
}

.about-us-description {
    font-size: 1rem;
    color: #0e1f32;
    margin-top: 20px
}

.why-us-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    color:  #1459a1
}

.why-us-bar {
    justify-content: space-between;
    margin-top: 20px;
    border: 1px solid #0e1f32;
    border-radius: 10px
}

.why-us-item {
    width: 33%;
    padding: 20px;
    border-right: 1px solid #0e1f32
}

.why-us-item:last-child {
    border-right: none
}

.why-us-item h4 {
    font-size: 1.2rem;
    color: var(--red)
}

.why-us-item p {
    font-size: 1rem;
    color: #0e1f32
}

.about-us-right {
    width: 50%
}

footer {
    width: 100%
}

.about-us-image {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.products-section {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f8f9fa
}

.products-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    color:   #1459a1
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    text-align: center;
    transition: transform .3s, box-shadow .3s
}

.card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem
}

.card h2 {
    font-size: 1.25rem;
    color:   #1459a1;
    margin-bottom: 1rem
}

.card p {
    font-size: 1rem;
    color: #555
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

@media (max-width:768px) {
    .products-heading {
        font-size: 1.5rem
    }
    .card h2 {
        font-size: 1.1rem
    }
    .card p {
        font-size: .9rem
    }
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px
}

@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-15px)
    }
}

@media (max-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:768px) {
    .hero-section {
        flex-direction: column;
        height: auto
    }
    .hero-left {
        width: 100%;
        text-align: center;
        background-color: var(--dark-blue);
        padding: 20px 10px
    }
    .buttons {
        flex-direction: column;
        gap: 10px
    }
    .hero-slides {
        width: 100%;
        height: 300px
    }
    .container2,
    footer>div {
        flex-direction: column;
        align-items: center
    }
    .about-us-left,
    .about-us-right {
        width: 100%
    }
    .why-us-bar {
        flex-direction: column
    }
    .why-us-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--white)
    }
    .why-us-item:last-child {
        border-bottom: none
    }
    .products-grid {
        flex-wrap: wrap
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    footer .right-logo,
    footer>div {
        text-align: center
    }
    footer>div img {
        margin-bottom: 15px
    }
}

@media (max-width:480px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color:   #1459a1;
    margin-bottom: 2rem
}

h3 {
    color:  #1459a1;
    font-size: 1.25rem
}

p {
    color: #555;
    font-size: 1rem
}

.target-market {
    padding: 3rem 1rem;
    background-color: #f8f9fa
}

.market-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem
}

.market-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    text-align: center
}

.value-proposition {
    padding: 3rem 1rem;
    background-color: #f0f8ff
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem
}

.value-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    text-align: center
}

.cta {
    text-align: center;
    font-size: 1.25rem;
    color:  #0e1f32;
    margin-top: 2rem
}

@media (max-width:768px) {
    .section-title {
        font-size: 1.5rem
    }
    h3 {
        font-size: 1.1rem
    }
    p {
        font-size: .9rem
    }
}

footer {
    background: #000;
    color: #fff;
    padding: 20px 0
}

footer h5 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px
}

footer ul {
    list-style: none
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: block
}

footer ul li a:hover {
    text-decoration: underline
}

footer img {
    max-width: 100px;
    height: auto
}

footer .copyright {
    margin-top: 10px;
    border-top: 1px solid #444;
    padding-top: 10px
}