.back-to-top {
    position: fixed;
    right: 70px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

body {
    font-family: "Lato", sans-serif;
}

:root {
    --primary: #569c00;
    --secondary: #ffffff;
    --tertiary: #7dc722;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;

}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--primary);
}

/*** Topbar End ***/
.section-title {
    text-align: center;
    /* margin-bottom: 10px; */
    position: relative;
    padding: 30px 0px;
}


.section-title span {
    position: absolute;
    top: 4px;
    color:
        color-mix(in srgb, var(--primary), transparent 85%);
    left: 0px;
    right: 0px;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 1;
}

@media(max-width:576px) {

    .section-title span {
        position: absolute;
        top: 4px;
        color:
            color-mix(in srgb, var(--primary), transparent 85%);
        left: 0px;
        right: 0px;
        z-index: 1;
        font-weight: 700;
        font-size: 43px;
        text-transform: uppercase;
        line-height: 1;
    }
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0px;
    position: relative;
    z-index: 2;
    color: var(--primary);
}

/*** Navbar ***/
.navbar img {
    width: 220px;
}

.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: black;
    font-weight: 600;
    outline: none;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 11px 21px;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #ffffff;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



@media screen and (max-width: 840px) {
    .navbar-brand {
        width: 100px;
    }

    .navbar-collapse {
        position: absolute;
        background: rgb(255, 255, 255);
        height: 100vh;
        width: 221px;
        left: -282px;
        top: 52px;
        box-shadow: var(--box-shadow);
        padding-bottom: 10px;
        transition: .3s linear;
    }

    .navbar-collapse.show {
        top: 59px;
        left: 0px;
    }

    .nav-number {
        padding: 0 20px;
    }

    .navbar-light .navbar-toggler {
        color: var(--light) !important;
        /* border-color: var(--light) !important; */
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: end;
    }
}


.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;

}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler {
    color: var(--secondary) !important;
    /* border-color: var(--light) !important; */
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--primary);
    transition: all 300ms linear;

}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.carousel .carousel-inner .carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    /* animation-delay: 1s; */
    animation-direction: alternate;
    animation-iteration-count: infinite;
    /* transition: 0.5s; */
}

@keyframes image-zoom {
    0% {
        width: 100%;
        height: 100%;
        -webkit-filter: blur(0px);
        opacity: 1;
    }

    25% {
        width: 115%;
        height: 115%;
        -webkit-filter: blur(3px);
        opacity: 0.9;
    }

    50% {
        width: 130%;
        height: 130%;
        -webkit-filter: blur(10px);
        opacity: 0.7;
    }

    75% {
        width: 115%;
        height: 115%;
        -webkit-filter: blur(3px);
        opacity: 0.9;
    }

    100% {
        width: 100%;
        height: 100%;
        -webkit-filter: blur(0px);
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 260px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}

.testimonial h4 {
    font-size: 20px;
    font-weight: 600;
}

/*** testimonial End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}

/*** Contact End ***/



/*** Footer ***/
.footer {
    background-color: #569c00;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer a {
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--secondary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: var(--tertiary);
}

.copyright a {
    color: var(--secondary);
}

.copyright a:hover {
    color: var(--secondary);
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}

@media(max-width:576px) {
    .about h4 {
        font-size: 10px;
    }
}

.about p {
    color: #111111;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    /* padding: 100px 0; */
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bg/abstract-bg-3.webp") no-repeat center center;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us .image-showcase {
    position: relative;
}

.why-us .image-showcase .main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.why-us .image-showcase .main-image-wrapper .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
    position: absolute;
    top: -30px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
    background: var(--primary);
    color: var(--secondary);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
    transform: rotate(-3deg);
    background: var(--secondary);
    color: var(--tertiary);
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.why-us .image-showcase .experience-card {
    position: absolute;
    bottom: 0;
    left: -25px;
    background: var(--secondary);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
}

.why-us .image-showcase .experience-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), transparent 30%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us .image-showcase .experience-card .card-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.why-us .image-showcase .experience-card .card-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.why-us .image-showcase .experience-card .card-content p {
    font-size: 0.9rem;
    margin: 0;
    color: color-mix(in srgb, black, transparent 30%);
}

.why-us .content-wrapper {
    padding-left: 2rem;
}

.why-us .content-wrapper .section-badge {
    display: inline-flex;
    align-items: center;
    background: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
    color: var(--primary);
}

.why-us .content-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: black;
}

.why-us .content-wrapper .lead-text {
    font-size: 1.2rem;
    color: #111111;
}

.why-us .content-wrapper .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), transparent 20%));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: color-mix(in srgb, black, transparent 30%);
}

.why-us .content-wrapper .achievement-highlights {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 2.5rem;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 85%);
    border-radius: 15px;
    background: var(--secondary);
    justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 1px;
    height: 40px;
    background: color-mix(in srgb, var(--primary), transparent 85%);
}

.why-us .content-wrapper .action-buttons {
    display: flex;
    gap: 1.5rem;
}

.why-us .content-wrapper .action-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.why-us .content-wrapper .action-buttons .btn.btn-primary {
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), transparent 20%));
    border: none;
    color: var(--secondary);
}

.why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary), transparent 70%);
}

.why-us .content-wrapper .action-buttons .btn.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .why-us {
        padding: 37px 0;
    }

    .why-us .content-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }

    .why-us .content-wrapper h2 {
        font-size: 20px;
    }

    .why-us .content-wrapper .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us .content-wrapper .achievement-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-us .content-wrapper .achievement-highlights .highlight-divider {
        width: 40px;
        height: 1px;
    }

    .why-us .content-wrapper .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .why-us .image-showcase .main-image-wrapper .main-image {
        height: 400px;
    }

    .why-us .image-showcase .floating-stats {
        position: relative;
        top: 20px;
        right: 0;
        flex-direction: row;
        justify-content: center;
    }

    .why-us .image-showcase .experience-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 2rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .why-us {
        padding: 30px 0;
    }

    .why-us .content-wrapper h2 {
        font-size: 2rem;
    }

    .why-us .content-wrapper .lead-text {
        font-size: 1.1rem;
    }

    .why-us .image-showcase .floating-stats {
        flex-direction: column;
        gap: 10px;
    }

    .why-us .image-showcase .floating-stats .stat-badge {
        min-width: 100px;
        padding: 15px;
    }

    .why-us .image-showcase .floating-stats .stat-badge .stat-number {
        font-size: 1.5rem;
    }

    .why-us .image-showcase .floating-stats .stat-badge {

        transform: rotate(0deg);
    }

    .why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
        transform: rotate(0deg);
    }

    .why-us .content-wrapper {
        margin-top: 0;
    }
}


.why-us .feature-item {
    margin-bottom: 1.5rem;
    padding: 20px;
    background-color: var(--secondary);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-us .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-us .feature-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.why-us .feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-us .feature-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
    background: var(--secondary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--primary), transparent 90%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    min-height: 280px;
}

.featured-services .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), black 20%));
    transition: width 0.4s ease;
    z-index: 1;
}

.featured-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px color-mix(in srgb, var(--primary), transparent 85%);
}

.featured-services .service-card:hover::before {
    width: 4px;
}

.featured-services .service-card:hover .service-visual img {
    transform: scale(1.05);
}

.featured-services .service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.featured-services .service-card:hover .service-icon i {
    color: var(--secondary);
}

.featured-services .service-card .service-icon {
    width: 64px;
    height: 64px;
    background: color-mix(in srgb, var(--primary), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.featured-services .service-card .service-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.featured-services .service-card .service-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.featured-services .service-card .service-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-services .service-card .service-info h3 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-services .service-card .service-info h3 a:hover {
    color: var(--primary);
}

.featured-services .service-card .service-info p {
    color: color-mix(in srgb, black, transparent 20%);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-services .service-card .service-info .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.featured-services .service-card .service-info .service-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.featured-services .service-card .service-info .service-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.featured-services .service-card .service-info .service-link:hover::after {
    width: 100%;
}

.featured-services .service-card .service-info .service-link:hover i {
    transform: translate(3px, -3px);
}

.featured-services .service-card .service-info .service-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.featured-services .service-card .service-visual {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.featured-services .service-card .service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-services .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.featured-services .btn-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--secondary), transparent 80%), transparent);
    transition: left 0.5s ease;
}

.featured-services .btn-view-all:hover {
    background: color-mix(in srgb, var(--primary), black 15%);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--primary), transparent 60%);
}

.featured-services .btn-view-all:hover::before {
    left: 100%;
}

.featured-services .btn-view-all:hover i {
    transform: translateX(4px);
}

.featured-services .btn-view-all i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .featured-services .service-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        min-height: auto;
    }

    .featured-services .service-card .service-visual {
        width: 100px;
        height: 100px;
        align-self: center;
    }

    .featured-services .service-card .service-icon {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .featured-services .service-card {
        padding: 24px 20px;
    }

    .featured-services .service-card .service-info h3 {
        font-size: 20px;
    }

    .featured-services .service-card .service-info p {
        font-size: 14px;
    }


    .featured-services .service-card .service-visual {
        width: 80px;
        height: 80px;
    }

    .featured-services .service-card .service-icon {
        width: 56px;
        height: 56px;
    }

    .featured-services .service-card .service-icon i {
        font-size: 24px;
    }

    .featured-services .btn-view-all {
        padding: 16px 28px;
        font-size: 15px;
        margin-top: 32px;
    }
}

/*--------------------------------------------------------------
# Featured Agents Section
--------------------------------------------------------------*/
.featured-agents .featured-agent {
    position: relative;
    height: 100%;
}

.featured-agents .agent-wrapper {
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--primary), transparent 92%);
    height: 100%;
}

.featured-agents .agent-wrapper:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--primary), transparent 85%);
}

.featured-agents .agent-wrapper:hover .agent-photo::before {
    opacity: 1;
}

.featured-agents .agent-wrapper:hover .agent-photo img {
    transform: scale(1.1);
}

.featured-agents .agent-wrapper:hover .agent-photo .overlay-info {
    opacity: 1;
    visibility: visible;
}


.featured-agents .agent-photo {
    position: relative;
    height: 395px;
    overflow: hidden;
}

.featured-agents .agent-photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, color-mix(in srgb, var(--primary), transparent 70%) 0%, color-mix(in srgb, var(--heading-color), transparent 70%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.featured-agents .agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media(max-width:576px) {

    .featured-agents .agent-photo img {

        height: 415px;
    }
}

.featured-agents .agent-details {
    padding: 20px 25px;
    text-align: center;
}

.featured-agents .agent-details h4 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.featured-agents .agent-details .position {
    display: block;
    color: black;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-agents .agent-details .location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--primary), transparent 40%);
    font-size: 14px;
    font-weight: 500;
}

.featured-agents .agent-details .location-info i {
    color: var(--primary);
    font-size: 16px;
}

.featured-agents .agent-details .expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.featured-agents .agent-details .expertise-tags .tag {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary), transparent 85%) 0%, color-mix(in srgb, var(--primary), transparent 90%) 100%);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
}

.featured-agents .agent-details .view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), #0056b3 20%));
    color: var(--secondary);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-agents .agent-details .view-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--secondary), transparent 90%), transparent);
    transition: left 0.5s ease;
}

.featured-agents .agent-details .view-profile:hover {
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--primary), transparent 60%);
}

.featured-agents .agent-details .view-profile:hover::before {
    left: 100%;
}

.featured-agents .discover-all-agents {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featured-agents .discover-all-agents::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.featured-agents .discover-all-agents i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.featured-agents .discover-all-agents:hover {
    color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary), transparent 60%);
}

.featured-agents .discover-all-agents:hover::before {
    left: 0;
}

.featured-agents .discover-all-agents:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .featured-agents .agent-photo {
        height: 280px;
    }

    .featured-agents .agent-details {
        padding: 25px 20px;
    }

    .featured-agents .agent-details h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .featured-agents .agent-photo {
        height: 370px;
    }

    .featured-agents .agent-photo .overlay-info {
        opacity: 1;
        visibility: visible;
    }

    .featured-agents .agent-photo .overlay-info .contact-actions .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .featured-agents .agent-details {
        padding: 20px 18px;
    }

    .featured-agents .discover-all-agents {
        padding: 14px 30px;
        font-size: 15px;
    }
}



/*** gallery ***/
.project-item {
    position: relative;
}

.project-item .project-title {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.project-item:hover .project-title {
    color: #FFFFFF;
    background: var(--primary);
}


/* field========================== */
.field .card {
    background-color: #FFFFFF;
    border: 0;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(166, 249, 98, 0.15) 0px 1px 3px 1px; */

}

/*
.field .card:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    transition: 0.5s ease-in-out;
    border-radius: 20px;
} */

.field img {
    width: 81px;
    height: 81px;
}

@media(max-width:576px) {

    .field img {
        width: 60px;
        height: 61px;
    }
}

/* field========================== */
.about-start {
    /* background-color: #76fc5e; */
    background: linear-gradient(rgba(43, 167, 1, 0.917), rgba(100, 255, 92, 0.707)), url(../img/img-2.jpg) center center no-repeat;
    background-size: cover;
}

.project img {
    border-radius: 15px;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.743)), url(../img/ofc-Copy.jpg) center center no-repeat;
    background-size: cover;
}

.home-contact .border {
    /* border: 1px solid var(--primary); */
    border-radius: 10px;
}

.facts {
    background: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.743)), url(../img/ofc-Copy1.jpg) center center no-repeat;
    background-size: cover;
}



/*********************************** Contact Start  ***********************************/

.contact .info-box {
    color: var(--light);
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 32px 0;
    border-radius: 4px;
}

.contact .info-box i {
    font-size: 28px;
    color: var(--primary);
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted var(--primary);
    width: 46px;
    height: 46px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #111111;
    font-weight: 600;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.74);
    padding: 30px;
    border-radius: 4px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #111111;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: var(--primary);
    border: 0;
    padding: 10px 32px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #e35052;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*********************************** Contact End  ***********************************/

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    /* border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary); */
}

.gallery .gallery-item a {

    height: 260px !important;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    height: 260px !important;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*** project Start ***/
/* .project {
    background: linear-gradient(rgba(255, 255, 172, 0.826), rgb(216 215 197 / 70%)), url(../img/footer-img.jpg) center center no-repeat;
    background-size: cover;
} */

.projects .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.projects .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.projects .packages-item .packages-img .packages-info small,
.projects .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.projects .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}


.projects .packages-item .packages-img small,
.projects .packages-item .packages-img small i {
    transition: 0.5s;
}

.projects .packages-item .packages-img:hover small,
.projects .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.projects .packages-item .packages-img img {
    transition: 0.5s;
    height: 300px;
}

.projects .packages-item .packages-img:hover img {
    transform: scale(1.3);
}


.projects .packages-carousel {
    position: relative;
}

.projects .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.projects .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.projects .packages-carousel .owl-nav .owl-prev i,
.projects .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.projects .packages-carousel .owl-nav .owl-prev:hover,
.projects .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.projects .packages-carousel .owl-nav .owl-prev:hover i,
.projects .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}



/*** project End ***/





/*--------------------------------------------------------------
# mission Section
--------------------------------------------------------------*/
.mission .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission .about-content h2 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.mission .about-content h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
}

.mission .about-content p {
    margin-bottom: 30px;
    color: #000;
}

.mission .about-content .timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

.mission .about-content .timeline:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: color-mix(in srgb, var(--primary), transparent 70%);
}

.mission .about-content .timeline .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.mission .about-content .timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.mission .about-content .timeline .timeline-item .timeline-dot {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
}

.mission .about-content .timeline .timeline-item .timeline-content h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.mission .about-content .timeline .timeline-item .timeline-content p {
    margin-bottom: 0;
    color: black;
    font-size: 20px;
}

.mission .about-image {
    position: relative;
}

.mission .about-image img {
    width: 100%;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media(max-width:576px) {
    .mission .about-image img {
        height: 360px;
    }
}

.mission .about-image .mission-vision {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .mission .about-image .mission-vision {
        grid-template-columns: 1fr;
    }
}

.mission .about-image .mission-vision .mission,
.mission .about-image .mission-vision .vision {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.mission .about-image .mission-vision .mission h3,
.mission .about-image .mission-vision .vision h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.mission .about-image .mission-vision .mission h3:before,
.mission .about-image .mission-vision .vision h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 3px;
}

.mission .about-image .mission-vision .mission p,
.mission .about-image .mission-vision .vision p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.mission .core-values {
    margin-top: 30px;
}

.mission .core-values h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.mission .core-values .value-card {
    background-color: var(--surface-color);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission .core-values .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission .core-values .value-card .value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    margin-bottom: 20px;
}

.mission .core-values .value-card .value-icon i {
    font-size: 32px;
    color: var(--primary);
}

.mission .core-values .value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission .core-values .value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}



/* **************************FAQ START************************** */

.wrapper {
    background-color: rgb(176 178 176 / 21%);
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* box-shadow: 0 15px 25px rgba(0, 0, 50, 0.2); */
}

.toggle,
.content {
    font-family: "Poppins", sans-serif;
}

.toggle {
    width: 100%;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    color: #111130;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 0;
    text-align: start;
}

.content {
    position: relative;
    font-size: 14px;
    /* text-align: justify; */
    line-height: 30px;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.faq_font {
    font-size: 16px;
}
