* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

:root {
    --first: #1E60AA;
    --first-hover: #00436C;
    --second: #00FFEF;
    --second-hover: #009A91;
    --third: #A17E06;
    --third-hover: #A27E03;
    --white: #ffffff;
    --black: #000000;
}

.bg-first { background: var(--first); }
.bg-second { background: var(--second); }
.bg-third { background: var(--third); }

.text-first { color: var(--first); }
.text-second { color: var(--second); }
.text-third { color: var(--third); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }

.btn-first {
    background: var(--first);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-first:hover {
    background: var(--first-hover);
}

.btn-second {
    background: var(--second);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-second:hover {
    background: var(--second-hover);
}

.btn-third {
    background: var(--third);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-third:hover {
    background: var(--third-hover);
}

input, textarea, select, img, video {
    box-sizing: border-box;
}

.bg-banner {
    background-image: url('/img/home.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
}

.bg-banner .banner-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    text-align: center;
}

.bg-innerbanner {
    background-image: url('/img/inner-banner.jpg?v=1');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg-innerbanner .banner-content {
    padding: 2rem;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    text-align: center;
}

@media (max-width: 425px) {
    .bg-banner {
        /* height: 400px; */
    }

    .banner-content {
        padding: 1rem;
        left: 10px;
        right: 10px;
        transform: none;
        margin-top: 60px;
        width: 80%;
    }
}

.testimonial-item {
    padding: 30px;
    text-align: center;
}
.testimonial-text {
    font-size: 24px;
    margin-bottom: 20px;
}
.testimonial-name {
    font-weight: bold;
    margin-bottom: 5px;
}
.testimonial-role {
    color: #777;
}

.testimonial-carousel {
    position: relative;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.testimonial-photo {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.certifications-carousel img {
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.owl-nav span {
    background: var(--first);
    color: #fff;
    /* margin: 0 10px; */
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-90%);
    width: 50px;
    height: 50px;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.owl-nav .prev {
    left: -50px;
}

.owl-nav .next {
    right: -50px;
}
