body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif
}

body {
    background-image: url("/assets/images/page-background-image.png");
    background-size: cover;
    background-position: center
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #848181;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: top .3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, .1);
    z-index: 3
}

.logo-img {
    margin-left: 20px;
    width: 120px;
    height: auto
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative
}

.menu-icon .bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 3px 0;
    transition: background-color .3s, transform .3s
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0
}

.menu-icon.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
}

.menu-icon.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-list li {
    margin-right: 20px
}

.nav-list li:last-child {
    margin-right: 20px
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    transition: color .3s
}

.nav-list a:hover {
    color: #f80
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: flex;
        margin: 10px
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100px;
        left: 0;
        background-color: #848181;
        width: 100%;
        z-index: 1;
        opacity: 0;
        pointer-events: none;
        transition: top .3s, opacity .4s
    }

    .nav-list.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 1;
        pointer-events: auto;
        top: 90px
    }

    .nav-list li {
        margin: 10px 0
    }
}

.dropdown {
    position: relative
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #848181;
    min-width: 150px;
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2)
}

.dropdown:hover .dropdown-content {
    display: block
}

.dropdown-content a {
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    transition: background-color .3s
}

.dropdown-content a:hover {
    background-color: rgba(252, 150, 33, .211)
}

.nav-list a ion-icon {
    font-size: 14px;
    vertical-align: middle
}

.rotate-icon {
    transform: rotate(180deg);
    transition: transform .3s
}

@media screen and (max-width: 768px) {
    .nav-list.active a ion-icon {
        transform: rotate(180deg);
        transition: transform .3s
    }
}

.nav-list li.active a {
    color: #f80
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    background-color: #f4f4f4;
    background: linear-gradient(to right, rgb(255, 136, 0), rgb(132, 129, 129))
}

.about-content {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px
}

.about-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px
}

.about-content p {
    font-size: 1.2rem;
    color: #fff
}

.about-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .147)
}

.about-image img {
    max-width: 100%;
    height: auto;
    display: block
}

@media screen and (min-width: 768px) {
    .about-section {
        flex-direction: row;
        justify-content: space-around
    }

    .about-content {
        flex: 1;
        text-align: left;
        margin: 0;
        padding: 0 40px
    }

    .about-image {
        flex: 1
    }
}

.partner-brands {
    text-align: center;
    padding: 0
}

.brand-slider {
    display: flex;
    overflow: hidden;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .1)
}

.slide-container {
    display: flex
}

.slides {
    display: flex;
    width: fit-content;
    animation: slideAnimation 12s linear infinite
}

.slide {
    flex: 0 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center
}

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

@keyframes slideAnimation {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media screen and (max-width: 768px) {
    .slide img {
        max-width: 80px
    }
}

.team {
    padding: 80px 0
}

.team h2 {
    font-size: 48px;
    margin-bottom: 20px
}

.team h5 {
    font-size: 24px;
    margin-bottom: 30px
}

.team p {
    font-size: 1.2rem;
    color: #666
}

.team .accent-color {
    color: #ff651d
}

.team .image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.team .image-gallery img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    transition: transform .3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    border-radius: 10px
}

.team .image-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3)
}

@media screen and (max-width: 991px) {
    .team .team {
        padding: 60px 0
    }

    .team h2 {
        font-size: 36px
    }

    .team h5 {
        font-size: 20px
    }
}

@media screen and (max-width: 1199px) {
    .image-gallery img {
        max-width: 100%
    }
}

.mission,
.vision,
.experience {
    padding: 50px 0
}

.mission .accent-color,
.vision .accent-color,
.experience .accent-color {
    color: #ff651d
}

.mission-content,
.vision-content,
.experience-content {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px
}

.mission-content h2,
.vision-content h2,
.experience-content h2 {
    font-size: 50px;
    color: #333;
    margin-bottom: 15px
}

.mission-content p,
.vision-content p,
.experience-content p {
    font-size: 1.2rem;
    color: #666
}

.mission-image,
.vision-image,
.experience-image {
    text-align: center;
    margin-top: 20px
}

.mission-image img,
.vision-image img,
.experience-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .1)
}

@media screen and (min-width: 768px)and (max-width: 1024px) {

    .mission,
    .vision,
    .experience {
        display: flex;
        flex-direction: column
    }

    .mission-content,
    .vision-content,
    .experience-content {
        text-align: center
    }

    .mission-image,
    .vision-image,
    .experience-image {
        text-align: center;
        margin-top: 20px
    }
}

@media screen and (min-width: 1025px) {

    .mission,
    .vision,
    .experience {
        display: flex;
        flex-direction: row;
        align-items: center
    }

    .mission-content,
    .vision-content,
    .experience-content {
        text-align: left;
        flex: 1;
        margin: 0
    }

    .mission-image,
    .vision-image,
    .experience-image {
        text-align: center;
        flex: 1;
        margin: 0
    }
}

.banner {
    position: relative;
    background-image: linear-gradient(to right, rgba(204, 96, 45, 0.658), rgba(0, 0, 0, 0.281)), url("/assets/images/about//about-count-background.jpg");
    padding: 100px 0;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.banner-content {
    max-width: 800px;
    margin: 0 auto
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.banner h2 .accent-color {
    color: #ff651d;
    font-size: 60px;
    font-weight: 900;
    font-style: italic
}

.banner p {
    font-size: 1.25rem;
    margin-bottom: 40px
}

.statistics {
    display: flex;
    justify-content: space-around;
    padding: 30px 0;
    flex-wrap: wrap
}

.stat-box {
    text-align: center;
    padding: 20px;
    transition: transform .3s, box-shadow .3s;
    flex: 1;
    max-width: 300px;
    margin: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background-color: rgba(85, 83, 83, .4)
}

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

.count {
    font-size: 40px;
    color: #ff6501;
    font-weight: bold;
    display: block
}

.stat-box p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 25px
}

.plus-sign {
    font-size: 24px;
    color: #ff6501;
    margin-left: 5px;
    vertical-align: middle
}

.count-and-plus {
    display: flex;
    align-items: center;
    justify-content: center
}

.count {
    font-size: 48px;
    color: #ff6501;
    font-weight: bold;
    display: block
}

.chat-widget {
    position: fixed;
    bottom: 5px;
    right: 20px;
    max-width: 300px;
    max-height: 280px;
    background-color: #848181;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, .2);
    font-size: 14px;
    line-height: 1;
    animation: fadeInUp .5s ease forwards
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.chat-header {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.logo-widget {
    max-width: 150px
}

.chat-header-text {
    font-size: 20px;
    font-weight: 650;
    color: #fff
}

.chat-content {
    text-align: center;
    max-height: 150px;
    overflow-y: auto
}

.fake-message {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .1)
}

.fake-message p {
    margin: 0;
    font-size: 14px;
    color: #333
}

.chat-now-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #9c9b9b;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px
}

.chat-now-button:hover {
    background-color: #ff8018
}

#minimizeButton {
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    font-size: 10px;
    color: #f80
}

#minimizeButton:hover {
    transform: scale(1.3);
    transition: transform .3s ease-in-out
}

.footer {
    background-color: #848181;
    color: #fff;
    padding: 40px 0
}

.footer-logo {
    width: 180px;
    height: auto
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.footer-content a {
    color: #fff;
    padding: 10px;
    text-decoration: none
}

.footer-content a:hover {
    color: #f80
}

.footer-section {
    flex: 1;
    margin-bottom: 30px;
    max-width: 500px;
    text-align: center
}

.footer-section h2 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    color: #f80
}

.footer-section p,
.footer-section ul {
    margin: 0;
    padding: 0
}

.footer-section ul li {
    list-style: none;
    margin-bottom: 5px
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-top: 10px
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: color .3s;
    padding: 0
}

.footer-social a:hover {
    color: #f80
}

.footer-bottom {
    text-align: center;
    margin-top: 20px
}

.footer-links {
    text-align: center;
    margin: 20px 0
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px
}

/*# sourceMappingURL=about.css.map */