:root {
    --bs-btn-hover-color: #fff;
    --bs-card-spacer-x: 1rem;
    --bs-card-spacer-y: 1rem;
    --bs-card-title-spacer-x: 0.5rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-light-rgb: #e9eef5;
    --bs-success: #1A91CD;
    --bs-success-rgb: 26, 145, 205;
    --bs-success-text-emphasis: #0D4FAE;
    /* #0056b3 */
    --bs-success-text-emphasis-rgb: 13, 79, 174;
}

/* All elements */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global */
html {
    background-color: rgba(var(--bs-dark-rgb)) !important;
    scroll-behavior: smooth;
}

body,
ul,
li,
p,
a,
label,
input,
div {
    font-family: 'Roboto', sans-serif;
    font-size: 18px !important;
    font-weight: 300 !important;
}

a {
    text-decoration: none !important;
}

.btn-custom,
.btn-primary {
    background-color: var(--bs-success);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--bs-success-text-emphasis);
}

/* Header */
.navbar-brand.logo {
    margin: 0;

    img {
        width: auto;
        height: 80px !important;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: calc(var(--bs-navbar-nav-link-padding-x) * 3);
        padding-left: calc(var(--bs-navbar-nav-link-padding-x) * 3);
    }
}

@media (max-width: 992px) {
    .flex-fill {
        width: 100%;
    }
}

/* Hero */
#template-mo-zay-hero-carousel {
    margin-top: 10px !important;
    background: #efefef !important;
}

#template-mo-zay-hero-carousel .carousel-indicators li {
    background-color: var(--bs-success);
}

#template-mo-zay-hero-carousel .carousel-control-next i,
#template-mo-zay-hero-carousel .carousel-control-prev i {
    color: var(--bs-success) !important;
    font-size: 2.8em !important;
}

.carousel-indicators {
    list-style: none;
}

/* Us */
.custom-bg {
    background-color: #d6deeb !important;
}

@media (min-width: 992px) {
    section#us .col-lg-6 {
        flex: 0 0 auto;
        width: 80%;
    }
}

/* Allies */
section#our-allies .row:last-child,
section#corporate-values .row:last-child {
    justify-content: center;
}

section#our-allies .col-lg-3.mb-4,
section#corporate-values .col-lg-3.mb-4 {
    display: flex;
    justify-content: center;
}

section#our-allies .col-lg-3.mb-4 {
    flex-flow: column;
}

section#our-allies .col-lg-3.mb-4 .card,
section#corporate-values .col-lg-3.mb-4 .card {
    border: none
}

section#our-allies .col-lg-3.mb-4 .card img.card-img-top,
section#corporate-values .col-lg-3.mb-4 .card img.card-img-top {
    max-width: 200px;
}

@media (max-width: 777px) {

    section#our-allies .row:last-child,
    section#corporate-values .row:last-child {
        justify-content: space-around;
    }

    section#our-allies .col-lg-3.mb-4,
    section#corporate-values .col-lg-3.mb-4 {
        width: unset;
    }

    section#our-allies .col-lg-3.mb-4 .card img.card-img-top,
    section#corporate-values .col-lg-3.mb-4 .card img.card-img-top {
        max-width: 120px;
    }
}

@media (max-width: 991px) {

    section#our-allies .row:last-child>*,
    section#corporate-values .row:last-child>* {
        width: unset;
    }
}

/* Allies */
.justify-content-center {
    justify-content: space-evenly !important;
}

.cards {
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cards-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.card-body {
    align-content: center;
}

.cards-text {
    text-align: justify;
}

.service-box img {
    background-size: cover;
    background-position: center;
    display: block;
    height: 150px;
    margin: 0 auto;
    width: 150px;
}

.service-box {
    display: flex;
    flex-flow: column;
    min-height: 100%;
    overflow: hidden;
    padding-top: var(--bs-card-spacer-y);
    position: relative;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: scale(1.1);
}

section#about .mb-4 {
    min-width: 444px;
}

@media (max-width: 555px) {
    section#about .mb-4 {
        min-width: unset;
    }
}

/* About Us */
#about-us-section,
#mission-vision-section {
    padding: 100px 0;
}

.highlight {
    font-weight: bold;
    color: var(--bs-success);
}

.section-description {
    line-height: 1.8;
}


@media (max-width: 576px) {
    #about-us-section {
        padding: 1rem 0 2rem 0;
    }

    #mission-vision-section {
        padding: 2rem 0 !important;
    }
}

/* Mission Vission */

.bg-light {
    background-color: var(--bs-light-rgb) !important;
}

.card-custom {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-around;
    padding: 40px;
    text-align: center;
}

.icon-circle {
    background-position: center;
    /* #476fb0; */
    background-repeat: no-repeat;
    background-size: cover;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.icon-circle i {
    align-content: center;
    font-size: 72px;
    /* 36-72-90 */
    color: #ffffffaa;
}

#mission-vision-section .row .col-md-6:last-child .icon-circle i {
    font-size: 108px;
}

@media (max-width: 767px) {
    #mission-vision-section .row>* {
        padding: calc(var(--bs-gutter-x) * .5);
    }
}

/* Corporate Values */
#corporate-values .container .row:last-child>* .card {
    background: linear-gradient(to bottom right, #000, rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)));
    color: #fff;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    min-height: 230px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 360px;
}

section#corporate-values .row:last-child {
    gap: 66px;
}

#corporate-values .container .row:last-child>* .card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section#corporate-values .col-lg-3.mb-4 {
    flex-flow: row;
}

@media (min-width: 768px) {
    #corporate-values .container {
        max-width: 100%;
    }
}

/* Service */
#service h2.text-dark,
#service h4.text-dark {
    color: var(--bs-success) !important;
}

#service .container .row:last-child {
    display: block;
    padding-top: 0 !important;
    text-align: center;
    width: 100%;
}

@media (max-width: 576px) {
    #service {
        padding: 0 0 3rem 0 !important;
    }

    #service .container .row:last-child {
        width: unset;
    }

}

/* Offices */
#offices .container .row:nth-child(2) {
    padding: 2rem 6.8rem;
}

#offices .city-list {
    column-gap: 77px;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    row-gap: 33px;
}

#offices .city-list li:hover {
    color: var(--bs-success);
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 576px) {
    #offices .container .row:nth-child(2) {
        padding: var(--bs-gutter-y) var(--bs-gutter-x);
    }
}

/* Contact */
#contact a {
    color: inherit;
}

#contact .container .contact-info p {
    padding: 0 0 0 1.6rem;
    text-align: left;
    margin-bottom: 0;
}

.contact-info i {
  margin-right: 10px;
}

#contact_section .container .row .col-md-5 p {
  font-weight: bold !important;
  font-size: 1.5rem !important;
  padding: 20px;
  text-align: justify;
  max-width: 80%;
}

#contact_section .container .row .col-md-5 p span {
  color: var(--bs-success);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.checkbox {
  display: flex;
}

.form-group.checkbox input {
  height: calc(1.5em + .75rem + 2px);
  width: calc(1.5em + .75rem + 2px);
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.form-group.checkbox label {
  margin: auto 1rem;
}

section#contact_section {
    padding-bottom: 7rem;
}

/* Footer */
#tempaltemo_footer,
#tempaltemo_footer .container a {
    color: #fff;
}

#tempaltemo_footer .container .row .col-md-4.pt-5 {
    min-width: 363px !important;
}

#tempaltemo_footer .container .row.text-light.mb-4 {
    margin-bottom: 0 !important;

    .col-auto.me-auto .list-inline.text {
        margin-bottom: 0;

    }
}

/* Fixed Elements */
.float-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--bs-success);
    color: white;
    padding: 15px 20px;
    border-radius: 40px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.float-button:hover {
    background-color: var(--bs-success-text-emphasis);
}