/* Common Styles */

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 24x;
}

h2 {
    text-align: center;
    font-size: 32px !important;
    margin-top: 16px !important;
}

/* Navbar Styles */

.navbar {
    background-color: #ffffff !important;
}

.nav-link {
    color: #181712 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    background-color: #fff;
    margin: 12px 8px;
    border-radius: 8px;
}

.nav-link:hover{
    background-color: #FFC107;
    border-radius: 8px;
    box-shadow: 0px 5px 30px #f1e199;
}

.navbar-toggler {
    margin-right: 24px !important;
    background-color: #eee !important;
}

.navbar-toggler-icon {
    color: #181712 !important;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(24, 23, 18)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/************* Home Page *************/

/* Banner Section */
.banner {
    background-image: url('/images/banner_5.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

/* Style for the headline and subheadline */
.banner h1 {
    font-size: 4rem !important;
}

@media (max-width: 767px) { /* Adjust the maximum width as needed */
    .banner h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) { /* Adjust the maximum width as needed */
    .banner h2 {
        font-size: 1rem !important;
        margin-top: 16px;
    }
}

.banner .btn {
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 16px;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

/* About Us Section */

.about_us p {
    font-size: 16px;
    border-left: 5px solid #FFC107;
    padding-left: 16px;
}

.about_us .col-md-6{
    display: flex;
    justify-content: center;
}

.about_us_image{
    align-items: center;
    padding-bottom: 16px;
}

.about_us_items{
    flex-direction: column;
}

/* Services Section */
.services {
    background-color: #1f1e17;
}

.service-item {
    display: flex;
    background-color: #181712;
    color: #ffffff;
    border-left: 5px solid #FFC107;
    padding: 16px;
    margin-bottom: 16px;
}

.service-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    max-width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #f8f8f8;
    margin-right: 32px;
}

.service-item .text h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 2px;
}

.service-icon {
    font-size: 32px;
    color: #FFC107;
}

.services .col-md-6{
    display: flex;
    justify-content: center;
}

.service_image{
    align-items: center;
}

.service_items{
    flex-direction: column;
}

.services img{
    height: 85%;
}

/* Choose Us Section */
.chooseUs{
    background-color: #ffffff;
}

.reason-icon {
    font-size: 32px;
    color: #181712;
}

.reason-item {
    display: flex;
    background-color: #fff;
    color: #181712;
    border-left: 5px solid #181712;
    padding: 16px;
    margin-bottom: 16px;
}

.reason-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    max-width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #f8f8f8;
    margin-right: 32px;
}

.chooseUs .col-md-6{
    display: flex;
    justify-content: center;
}

.choose_image{
    align-items: center;
}

.choose_items{
    flex-direction: column;
}

.chooseUs img{
    height: 85%;
}

/* About Us Page */

/* About Us - Our Approach Section */

.our_approach{
    background-color: #1f1e17;
    color: #ffffff;
}

.our_approach p {
    font-size: 16px;
    border-left: 5px solid #FFC107;
    padding-left: 16px;
}

.our_approach .col-md-6{
    display: flex;
    justify-content: center;
}

.our_approach_image{
    align-items: center;
    padding-bottom: 16px;
}

.our_approach_items{
    flex-direction: column;
}

/* About Us -Testimonial */

.testimonial_logos{
    width: 50px;
    height: 50px;
}

.carousel-inner > .carousel-item > .card{
    align-items: center !important;
    padding: 8px;
}

/* About Us - Statistics */

#stats{
    background-color: #181712;
    color: #ffffff
}

.statistics {
    display: flex;
    justify-content: center;
    align-items: center;
}


.stat-card {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    color: #181712;
    border-radius: 5px;
}

.count {
    font-size: 36px;
    font-weight: bold;
    color: #007BFF;
    animation-duration: 2s; /* Adjust the animation duration as needed */
    animation-timing-function: ease;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Page */

#gallery{
    margin-bottom: 24px;
}

.carousel-item > img{
    height: 90vh !important;
}

/* Contact Us Page */

#contact_us .container{
    background-color: #fff;
}

#maps{
    display: flex;
    flex-direction: column;
    align-items: center;
}

iframe {
    width: 500px;
    height: 400px;
}

@media (max-width: 767px) {
    iframe {
        width: 300px;
        height: 300px;
    }
}

#contact_us_boxes{
    display: flex;
    justify-content: center;
}

.dbox {
    width: 100%;
    height: 200px !important;
    margin-bottom: 25px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.dbox .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2553b8;
    color: #ffffff;
    margin: 0 auto;
    margin-bottom: 16px;
}

.dbox .icon span {
    font-size: 24px;
    color: #fff;
}

#contact_us form{
    display: flex;
    flex-direction: column;
}

#contact_us .form-group{
    padding-bottom: 16px;
}

/* Footer */
.footer {
    background-color: #181712;
    color: #fff;
    padding: 16px 0;
}

.social-icons {
    font-size: 24px;
    margin: 8px;
}

.footer-links > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links > a:hover {
    color: #FFC107;
    text-decoration: none;
}

.copyright {
    font-size: 16px;
}