﻿/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}

a {
    color: #666666;
    transition: .3s;
    text-decoration: none;
}

    a:hover,
    a:active,
    a:focus {
        color: #fdbe33;
        outline: none;
        text-decoration: none;
    }

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #fdbe33;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9999;
}

    .back-to-top:hover {
        color: #fdbe33;
        background: #121518;
    }

    .back-to-top i {
        padding-top: 10px;
    }

.btn {
    transition: .3s;
}

.whatsapp {
    position: fixed;
    border-radius: 50px;
    background: #25D366;
    color: #ffffff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 1;
    font-size: 30px;
    right: 15px;
    bottom: 90px;
    transition: background 0.5s;
    z-index: 9999;
}

    .whatsapp:hover {
        color: #fff;
        background: #10ff69;
    }

    .whatsapp i {
        padding-top: 10px;
    }


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 90px;
    background: #000000;
}

    .top-bar .logo {
        padding: 15px 0;
        text-align: left;
        overflow: hidden;
    }

        .top-bar .logo h1 {
            margin: 0;
            color: #000000;
            font-size: 60px;
            line-height: 60px;
            font-weight: 700;
        }

        .top-bar .logo img {
            max-width: 100%;
            max-height: 60px;
        }

    .top-bar .top-bar-item {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .top-bar .top-bar-item span a {
            color: #fff;
        }

    .top-bar .top-bar-icon {
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .top-bar .top-bar-icon [class^="flaticon-"]::before {
            margin: 0;
            color: #fdbe33;
            font-size: 40px;
        }

    .top-bar .top-bar-text {
        padding-left: 15px;
    }

        .top-bar .top-bar-text h3 {
            margin: 0 0 0px 0;
            color: #fdbe33;
            font-size: 16px;
            font-weight: 400;
        }

        .top-bar .top-bar-text p {
            margin: 0;
        }

            .top-bar .top-bar-text p a {
                margin: 0;
                color: #eee;
                font-size: 13px;
                font-weight: 400;
            }

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: #000000;
    transition: .3s;
}

    .nav-bar .container-fluid {
        padding: 0;
    }

    .nav-bar.nav-sticky {
        position: fixed;
        top: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
        z-index: 999;
    }

    .nav-bar .navbar {
        height: 100%;
        background: #fff !important;
    }

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #000000;
}

    .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
        color: #ff5c00;
    }


    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #000000;
        transition: none;
        font-weight: 600;
    }

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    background: #ff5c00;
    border-color: #ff5c00;
}

    .nav-bar .btn:hover {
        color: #000000;
        border: 2px solid #000000;
        background: none
    }
.dropdown-item.active, .dropdown-item:active {
    background-color: #fdbe33 !important;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }

        .nav-bar.nav-sticky {
            padding: 14px 90px;
        }

        .nav-bar .navbar {
            padding: 20px;
        }

        .nav-bar .navbar-brand {
            display: none;
        }

        .nav-bar a.nav-link {
            padding: 8px 15px;
            font-size: 15px;
            text-transform: uppercase;
        }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }

    .nav-bar a.nav-link {
        padding: 5px;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }

    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

    .carousel .carousel-inner,
    .carousel .carousel-item {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .carousel .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel .carousel-item::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, .3);
            z-index: 1;
        }

    .carousel .carousel-caption {
        position: absolute;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        height: calc(100vh - 170px);
        min-height: 400px;
    }

        .carousel .carousel-caption p {
            color: #ffffff;
            font-size: 30px;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .carousel .carousel-caption h1 {
            color: #ffffff;
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 35px;
        }

        .carousel .carousel-caption .btn {
            padding: 15px 35px;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #ffffff;
            background: transparent;
            border: 2px solid #ffffff;
            border-radius: 0;
            transition: .3s;
        }

            .carousel .carousel-caption .btn:hover {
                color: #000000;
                background: #fdbe33;
                border-color: #fdbe33;
            }

@media (max-width: 767.98px) {

    .carousel .carousel-caption {
        align-items: center;
    }

        .carousel .carousel-caption h1 {
            font-size: 40px;
            font-weight: 700;
        }

        .carousel .carousel-caption p {
            font-size: 20px;
        }

        .carousel .carousel-caption .btn {
            padding: 12px 30px;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0;
        }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }

    .carousel .carousel-caption p {
        font-size: 16px;
    }

    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 45px 0;
    text-align: center;
    background: #f8f8f8;
    background-image: url(../img/subheader.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .page-header h2 {
        position: relative;
        color: #000000;
        font-size: 45px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }

        .page-header h2::after {
            position: absolute;
            content: "";
            width: 100px;
            height: 2px;
            left: calc(50% - 50px);
            bottom: 0;
            background: #000000;
        }

    .page-header a {
        position: relative;
        padding: 0 12px;
        font-size: 20px;
        color: #000000;
    }

        .page-header a:hover {
            color: #000000;
        }

        .page-header a::after {
            position: absolute;
            content: "/";
            width: 8px;
            height: 8px;
            top: -2px;
            right: -7px;
            text-align: center;
            color: #121518;
        }

        .page-header a:last-child::after {
            display: none;
        }

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }

        .page-header h2 {
            font-size: 45px;
        }

        .page-header a {
            font-size: 20px;
        }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }

        .page-header h2 {
            font-size: 35px;
        }

        .page-header a {
            font-size: 18px;
        }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

    .section-header p {
        color: #fdbe33;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .section-header h2 {
        margin: 0;
        position: relative;
        font-size: 50px;
        font-weight: 700;
    }
    .section-header.projectHead h2 {
        margin: 0;
        position: relative;
        font-size: 35px;
        font-weight: 700;
    }

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
    .section-header.projectHead h2 {
        font-size: 19px;
    }
    .section-header.projectHead p {
        font-size: 14px;
    }
    .Secpara {
        margin-top: 4px;
    }


}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

    .feature .col-md-12 {
        background: #000000;
    }

        .feature .col-md-12:nth-child(2n) {
            color: #000000;
            background: #dcdcdc87;
        }

    .feature .feature-item {
        min-height: 250px;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .feature .feature-icon {
        position: relative;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .feature .feature-icon::before {
            position: absolute;
            content: "";
            width: 80px;
            height: 80px;
            top: -20px;
            left: -10px;
            border: 2px dotted #ffffff;
            border-radius: 60px;
            z-index: 1;
        }

        .feature .feature-icon::after {
            position: absolute;
            content: "";
            width: 79px;
            height: 79px;
            top: -18px;
            left: -9px;
            background: #000000;
            border-radius: 60px;
            z-index: 2;
        }

    .feature .col-md-12:nth-child(2n) .feature-icon::after {
        background: #e0e0e0;
    }

    .feature .feature-icon [class^="flaticon-"]::before {
        position: relative;
        margin: 0;
        color: #f6f6f6;
        font-size: 60px;
        line-height: 60px;
        z-index: 3;
    }

    .feature .feature-text {
        padding-left: 30px;
    }

        .feature .feature-text h3 {
            margin: 0 0 10px 0;
            color: #f6f6f6;
            font-size: 25px;
            font-weight: 600;
        }

        .feature .feature-text p {
            margin: 0;
            color: #d0d0d0;
            font-size: 18px;
            font-weight: 400;
        }

    .feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
    .feature .col-md-12:nth-child(2n) h3,
    .feature .col-md-12:nth-child(2n) p {
        color: #000000;
    }


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .about .section-header {
        margin-bottom: 10px;
    }

    .about .about-img {
        position: relative;
        height: 100%;
    }

        .about .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .about .about-text p {
        font-size: 16px;
    }

    .about .about-text a.btn {
        position: relative;
        margin-top: 15px;
        padding: 15px 35px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #000000;
        border-radius: 0;
        background: #fdbe33;
        transition: .3s;
    }

        .about .about-text a.btn:hover {
            color: #fdbe33;
            background: #000000;
        }

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .fact .col-6 {
        display: flex;
        align-items: flex-start;
    }

    .fact .fact-icon {
        position: relative;
        margin: 7px 15px 0 15px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .fact .fact-icon [class^="flaticon-"]::before {
            margin: 0;
            font-size: 60px;
            line-height: 60px;
            background-image: linear-gradient(#ffffff, #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .fact .fact-right .fact-icon [class^="flaticon-"]::before {
        background-image: linear-gradient(#ffffff, #000000);
    }

    .fact .fact-left,
    .fact .fact-right {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .fact .fact-text h2 {
        font-size: 35px;
        font-weight: 600;
    }

    .fact .fact-text p {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .fact .fact-left {
        color: #000000;
        background: #fff;
    }

    .fact .fact-right {
        color: #000000;
        background: #fff;
    }

    .fact .fact-left h2 {
        color: #000000;
    }

@media only screen and (max-width:767px) {
    .fact .fact-left, .fact .fact-right {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .fact .col-6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .fact .fact-icon [class^="flaticon-"]::before {
        margin: 0;
        font-size: 51px;
        line-height: 51px;
    }

    .fact .fact-left h2 {
        color: #000000;
        text-align: center;
    }

    .fact .fact-text h2 {
        font-size: 27px;
        font-weight: 700;
        text-align: center;
    }

    .fact .fact-text p {
        margin: 0;
        font-size: 12px;
        text-align: center;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .service .service-item {
        position: relative;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .service .service-img {
        position: relative;
        overflow: hidden;
    }

        .service .service-img img {
            width: 100%;
        }

    .service .service-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(3, 15, 39, .7);
        transition: .5s;
        opacity: 0;
    }

    .service .service-item:hover .service-overlay {
        opacity: 1;
    }

    .service .service-overlay p {
        margin: 0;
        color: #ffffff;
    }

    .service .service-text {
        display: flex;
        align-items: center;
        height: 60px;
        background: #000000;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .service .service-text h3 {
            margin: 0;
            padding: 0 15px 0 25px;
            width: calc(100% - 60px);
            font-size: 20px;
            font-weight: 700;
            color: #fdbe33;
            text-align: left;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

    .service .service-item a.btn {
        width: 60px;
        height: 60px;
        padding: 3px 0 0 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 60px;
        line-height: 60px;
        font-weight: 100;
        color: #000000;
        background: #fdbe33;
        border-radius: 0;
        transition: .3s;
    }

    .service .service-item:hover a.btn {
        color: #ffffff;
    }


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .video .btn-play {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        box-sizing: content-box;
        display: block;
        width: 32px;
        height: 44px;
        border-radius: 50%;
        border: none;
        outline: none;
        padding: 18px 20px 18px 28px;
    }

        .video .btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: #fdbe33;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }

        .video .btn-play:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: #fdbe33;
            border-radius: 50%;
            transition: all 200ms;
        }

        .video .btn-play:hover:after {
            background-color: darken(#fdbe33, 10%);
        }

        .video .btn-play img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }

        .video .btn-play span {
            display: block;
            position: relative;
            z-index: 3;
            width: 0;
            height: 0;
            border-left: 32px solid #000000;
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
        }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 0;
}

    .team .team-item {
        position: relative;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .team .team-img {
        position: relative;
    }

        .team .team-img img {
            width: 100%;
        }

    .team .team-text {
        position: relative;
        padding: 10px 15px;
        text-align: left;
        background: linear-gradient(180deg, black, #464545);
        transition: .5s;
        height: 180px;
        border-radius: 0px 0px 20px 20px;
    }

        .team .team-text h4 {
            font-size: 18px;
            font-weight: 600;
            color: #fdbe33;
            transition: .5s;
        }

        .team .team-text .clamp {
            display: -webkit-box;
            -webkit-line-clamp: 4; /* Limit to 3 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin: 0px 0px 8px 0px;
            color: #fff;
        }

    .team .team-item:hover .team-text {
        background: #444;
    }

        .team .team-item:hover .team-text h2 {
            color: #000000;
            letter-spacing: 1px;
        }

    .team .team-social {
        position: absolute;
        width: 100px;
        top: 0;
        left: -50px;
        display: flex;
        flex-direction: column;
        font-size: 0;
    }

        .team .team-social a {
            position: relative;
            left: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #ffffff;
        }

    .team .team-item:hover .team-social a:first-child {
        background: #00acee;
        left: 50px;
        transition: .3s 0s;
    }

    .team .team-item:hover .team-social a:nth-child(2) {
        background: #3b5998;
        left: 50px;
        transition: .3s .1s;
    }

    .team .team-item:hover .team-social a:nth-child(3) {
        background: #0e76a8;
        left: 50px;
        transition: .3s .2s;
    }

    .team .team-item:hover .team-social a:nth-child(4) {
        background: #3f729b;
        left: 50px;
        transition: .3s .3s;
    }


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .faqs .row {
        position: relative;
    }

        .faqs .row.serviceSec::after {
            position: absolute;
            content: "";
            width: 1px;
            height: 100%;
            top: 0;
            left: calc(50% - .5px);
            background: #fdbe33;
        }

    .faqs #accordion-1 {
        padding-right: 15px;
    }

    .faqs #accordion-2 {
        padding-left: 15px;
    }

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }

    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }

    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
}

    .faqs .card:last-child {
        margin-bottom: 0;
    }

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

    .faqs .card-header a {
        display: block;
        padding: 10px 25px;
        width: 100%;
        color: #121518;
        font-size: 16px;
        line-height: 40px;
        border: 1px solid rgba(0, 0, 0, .1);
        transition: .5s;
    }

    .faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
        background: #fdbe33;
    }

    .faqs .card-header [data-toggle="collapse"]:after {
        font-family: 'font Awesome 5 Free';
        content: "\f067";
        float: right;
        color: #fdbe33;
        font-size: 12px;
        font-weight: 900;
        transition: .5s;
    }

    .faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
        font-family: 'font Awesome 5 Free';
        content: "\f068";
        float: right;
        color: #000000;
        font-size: 12px;
        font-weight: 900;
        transition: .5s;
    }

.faqs .card-body {
    padding: 15px 19px;
    font-size: 16px;
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 0px 0;
    padding: 30px 0;
    text-align: center;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

    .testimonial .testimonial-slider-nav .slick-slide {
        position: relative;
        opacity: 0;
        transition: .5s;
    }

    .testimonial .testimonial-slider-nav .slick-active {
        opacity: 1;
        transform: scale(1.3);
    }

    .testimonial .testimonial-slider-nav .slick-center {
        transform: scale(1.8);
        z-index: 1;
    }

    .testimonial .testimonial-slider-nav .slick-slide img {
        position: relative;
        display: block;
        margin-top: 37px;
        width: 100%;
        height: auto;
        border-radius: 100px;
    }

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

    .testimonial .testimonial-slider::before {
        position: absolute;
        content: "";
        width: 60px;
        height: 50px;
        top: 0;
        left: calc(50% - 30px);
        background: url(../img/quote.png) top center no-repeat;
    }

    .testimonial .testimonial-slider h3 {
        color: #fdbe33;
        font-size: 22px;
        font-weight: 700;
    }

    .testimonial .testimonial-slider h4 {
        font-size: 14px;
        font-weight: 300;
        color: #ffffff;
        font-style: italic;
        margin-bottom: 10px;
    }

    .testimonial .testimonial-slider p {
        color: #ffffff;
        font-size: 16px;
        font-weight: 300;
        margin: 0;
    }


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .blog .blog-item {
        position: relative;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .blog .blog-img {
        position: relative;
        overflow: hidden;
    }

        .blog .blog-img img {
            width: 100%;
        }

    .blog .blog-title {
        display: flex;
        align-items: center;
        height: 60px;
        background: #000000;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .blog .blog-title h3 {
            margin: 0;
            padding: 0 15px 0 25px;
            width: calc(100% - 60px);
            font-size: 18px;
            font-weight: 700;
            color: #fdbe33;
            text-align: left;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .blog .blog-title a.btn {
            width: 60px;
            height: 60px;
            padding: 3px 0 0 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            line-height: 60px;
            font-weight: 100;
            color: #000000;
            background: #fdbe33;
            border-radius: 0;
            transition: .3s;
        }

    .blog .blog-item:hover a.btn {
        color: #ffffff;
    }

    .blog .blog-meta {
        position: relative;
        padding: 25px 0 10px 0;
        background: #f3f6ff;
    }

        .blog .blog-meta::after {
            position: absolute;
            content: "";
            width: 100px;
            height: 1px;
            left: calc(50% - 50px);
            bottom: 0;
            background: #fdbe33;
        }

        .blog .blog-meta p {
            display: inline-block;
            margin: 0;
            padding: 0 3px;
            font-size: 14px;
            font-weight: 300;
            font-style: italic;
            color: #666666;
        }

            .blog .blog-meta p a {
                margin-left: 5px;
                font-style: normal;
            }

    .blog .blog-text {
        padding: 10px 25px 25px 25px;
        background: #f3f6ff;
    }

        .blog .blog-text p {
            margin: 0;
            font-size: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .blog .pagination .page-link {
        color: #000000;
        border-radius: 0;
        border-color: #fdbe33;
    }

        .blog .pagination .page-link:hover,
        .blog .pagination .page-item.active .page-link {
            color: #fdbe33;
            background: #000000;
        }

    .blog .pagination .disabled .page-link {
        color: #999999;
    }


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

    .single .single-content {
        position: relative;
        margin-bottom: 30px;
        overflow: hidden;
    }

        .single .single-content img {
            margin-bottom: 20px;
            width: 100%;
        }

    .single .single-tags {
        margin: -5px -5px 41px -5px;
        font-size: 0;
    }

        .single .single-tags a {
            margin: 5px;
            display: inline-block;
            padding: 7px 15px;
            font-size: 14px;
            font-weight: 400;
            color: #666666;
            border: 1px solid #dddddd;
        }

            .single .single-tags a:hover {
                color: #fdbe33;
                background: #000000;
            }

    .single .single-bio {
        margin-bottom: 45px;
        padding: 30px;
        background: #f3f6ff;
        display: flex;
    }

    .single .single-bio-img {
        width: 100%;
        max-width: 100px;
    }

        .single .single-bio-img img {
            width: 100%;
        }

    .single .single-bio-text {
        padding-left: 30px;
    }

        .single .single-bio-text h3 {
            font-size: 20px;
            font-weight: 700;
        }

        .single .single-bio-text p {
            margin: 0;
        }

    .single .single-related {
        margin-bottom: 45px;
    }

        .single .single-related h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 25px;
        }

    .single .related-slider {
        position: relative;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

        .single .related-slider .post-item {
            margin: 0 15px;
        }

    .single .post-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

        .single .post-item .post-img {
            width: 100%;
            max-width: 80px;
        }

            .single .post-item .post-img img {
                width: 100%;
            }

        .single .post-item .post-text {
            padding-left: 15px;
        }

            .single .post-item .post-text a {
                font-size: 16px;
                font-weight: 400;
            }

        .single .post-item .post-meta {
            display: flex;
            margin-top: 8px;
        }

            .single .post-item .post-meta p {
                display: inline-block;
                margin: 0;
                padding: 0 3px;
                font-size: 14px;
                font-weight: 300;
                font-style: italic;
            }

                .single .post-item .post-meta p a {
                    margin-left: 5px;
                    font-size: 14px;
                    font-weight: 300;
                    font-style: normal;
                }

    .single .related-slider .owl-nav {
        position: absolute;
        width: 90px;
        top: -55px;
        right: 15px;
        display: flex;
    }

        .single .related-slider .owl-nav .owl-prev,
        .single .related-slider .owl-nav .owl-next {
            margin-left: 15px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            background: #fdbe33;
            font-size: 16px;
            transition: .3s;
        }

            .single .related-slider .owl-nav .owl-prev:hover,
            .single .related-slider .owl-nav .owl-next:hover {
                color: #fdbe33;
                background: #000000;
            }

    .single .single-comment {
        position: relative;
        margin-bottom: 45px;
    }

        .single .single-comment h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 25px;
        }

    .single .comment-list {
        list-style: none;
        padding: 0;
    }

    .single .comment-child {
        list-style: none;
    }

    .single .comment-body {
        display: flex;
        margin-bottom: 30px;
    }

    .single .comment-img {
        width: 60px;
    }

        .single .comment-img img {
            width: 100%;
        }

    .single .comment-text {
        padding-left: 15px;
        width: calc(100% - 60px);
    }

        .single .comment-text h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .single .comment-text span {
            display: block;
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 5px;
        }

        .single .comment-text .btn {
            padding: 3px 10px;
            font-size: 14px;
            color: #000000;
            background: #dddddd;
            border-radius: 0;
        }

            .single .comment-text .btn:hover {
                background: #fdbe33;
            }

    .single .comment-form {
        position: relative;
    }

        .single .comment-form h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .single .comment-form form {
            padding: 30px;
            background: #f3f6ff;
        }

            .single .comment-form form .form-group:last-child {
                margin: 0;
            }

        .single .comment-form input,
        .single .comment-form textarea {
            border-radius: 0;
        }

        .single .comment-form .btn {
            padding: 15px 30px;
            color: #000000;
            background: #fdbe33;
        }

            .single .comment-form .btn:hover {
                color: #fdbe33;
                background: #000000;
            }


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

    .sidebar .sidebar-widget .widget-title {
        position: relative;
        margin-bottom: 30px;
        padding-bottom: 5px;
        font-size: 30px;
        font-weight: 700;
    }

        .sidebar .sidebar-widget .widget-title::after {
            position: absolute;
            content: "";
            width: 60px;
            height: 2px;
            bottom: 0;
            left: 0;
            background: #fdbe33;
        }

    .sidebar .sidebar-widget .search-widget {
        position: relative;
    }

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

    .sidebar .search-widget input:focus {
        box-shadow: none;
    }

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fdbe33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

    .sidebar .search-widget .btn:hover {
        color: #000000;
    }

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #fdbe33;
    background: #000000;
    border-radius: 0;
}

    .sidebar .tab-post .nav.nav-pills .nav-link:hover,
    .sidebar .tab-post .nav.nav-pills .nav-link.active {
        color: #000000;
        background: #fdbe33;
    }

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

    .sidebar .tab-post .tab-content .container {
        padding: 0;
    }

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar .category-widget ul li {
        margin: 0 0 12px 22px;
    }

        .sidebar .category-widget ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar .category-widget ul li a {
            display: inline-block;
            line-height: 23px;
        }

        .sidebar .category-widget ul li::before {
            position: absolute;
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #fdbe33;
            left: 1px;
        }

        .sidebar .category-widget ul li span {
            display: inline-block;
            float: right;
        }

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

    .single .tag-widget a:hover {
        color: #fdbe33;
        background: #000000;
    }

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

    .sidebar .image-widget img {
        max-width: 100%;
        transition: .3s;
    }

        .sidebar .image-widget img:hover {
            transform: scale(1.1);
        }


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

    .portfolio #portfolio-flters {
        padding: 0;
        margin: -15px 0 25px 0;
        list-style: none;
        font-size: 0;
        text-align: center;
    }

        .portfolio #portfolio-flters li,
        .portfolio .load-more .btn {
            cursor: pointer;
            display: inline-block;
            margin: 5px;
            padding: 8px 15px;
            color: #000000;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            border-radius: 0;
            background: #fdbe33;
            border: none;
            transition: .3s;
        }

            .portfolio #portfolio-flters li:hover,
            .portfolio #portfolio-flters li.filter-active {
                background: #000000;
                color: #fdbe33;
            }

    .portfolio .load-more {
        text-align: center;
    }

        .portfolio .load-more .btn {
            padding: 15px 35px;
            font-size: 16px;
            transition: .3s;
        }

            .portfolio .load-more .btn:hover {
                color: #fdbe33;
                background: #000000;
            }

    .portfolio .portfolio-warp {
        position: relative;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .portfolio .portfolio-img {
        position: relative;
        overflow: hidden;
    }

        .portfolio .portfolio-img img {
            width: 100%;
            transition: .3s;
        }

    .portfolio .portfolio-item:hover img {
        transform: scale(1.1);
    }

    .portfolio .portfolio-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(3, 15, 39, .7);
        transition: .5s;
        opacity: 0;
    }

    .portfolio .portfolio-warp:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio .portfolio-overlay p {
        margin: 0;
        color: #ffffff;
    }

    .portfolio .portfolio-text {
        display: flex;
        align-items: center;
        height: 60px;
        background: #000000;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .portfolio .portfolio-text h3 {
            margin: 0;
            padding: 0 15px 0 25px;
            width: calc(100% - 60px);
            font-size: 20px;
            font-weight: 700;
            color: #fdbe33;
            text-align: center;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

    .portfolio .portfolio-warp a.btn {
        width: 60px;
        height: 60px;
        padding: 3px 0 0 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 60px;
        line-height: 60px;
        font-weight: 100;
        color: #000000;
        background: #ffffff;
        border-radius: 0;
        transition: .3s;
    }

    .portfolio .portfolio-warp:hover a.btn {
        color: #ffffff;
        background: #fdbe33;
    }


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 0px 0 45px;
}

    .contact .col-md-6 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .contact .col-md-6:first-child {
            background: #000000;
        }

        .contact .col-md-6:last-child {
            background: #fafafa;
        }

    .contact .contact-info {
        position: relative;
        width: 100%;
        padding: 0 15px;
    }

    .contact .contact-item {
        position: relative;
        margin-bottom: 30px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        border: 1px solid rgba(256, 256, 256, .2);
    }

        .contact .contact-item [class^="flaticon-"]::before {
            margin: 0;
            color: #fdbe33;
            font-size: 40px;
        }

    .contact .contact-text {
        position: relative;
        width: auto;
        padding-left: 20px;
    }

        .contact .contact-text h2 {
            color: #fdbe33;
            font-size: 20px;
            font-weight: 600;
        }

        .contact .contact-text p, .contact .contact-text a {
            margin: 0;
            color: #ffffff;
            font-size: 16px;
        }

    .contact .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact .contact-form {
        position: relative;
        padding: 0 15px;
    }

        .contact .contact-form input {
            color: #111;
            height: 40px;
            border-radius: 0;
            border-width: 1px;
            border-color: rgb(2 12 33 / 17%);
            background: transparent;
        }


        .contact .contact-form textarea {
            color: #111;
            height: 185px;
            border-radius: 0;
            border-width: 1px;
            border-color: rgb(2 12 33 / 17%);
            background: transparent;
        }

        .contact .contact-form input:focus,
        .contact .contact-form textarea {
            box-shadow: none;
        }

        .contact .contact-form .form-control::placeholder {
            color: #666;
            opacity: 1;
        }

        .contact .contact-form .form-control::-ms-input-placeholder {
            color: #666;
        }

        .contact .contact-form .form-control::-ms-input-placeholder {
            color: #666;
        }

        .contact .contact-form .btn {
            padding: 16px 30px;
            font-size: 16px;
            font-weight: 600;
            color: #fdbe33;
            background: #000000;
            border: none;
            border-radius: 0;
            transition: .3s;
        }

            .contact .contact-form .btn:hover {
                color: #000000;
                background: #ffffff;
            }

    .contact .help-block ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 0;
    padding-top: 90px;
    background: #000000;
    color: #ffffff;
}

    .footer .footer-contact,
    .footer .footer-link,
    .footer .newsletter {
        position: relative;
        margin-bottom: 45px;
    }

        .footer .footer-contact p a,
        .footer .footer-link p,
        .footer .newsletter p {
            color: #fff;
        }

    .footer h2 {
        position: relative;
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 20px;
        font-weight: 600;
        color: #fdbe33;
    }

        .footer h2::after {
            position: absolute;
            content: "";
            width: 60px;
            height: 2px;
            left: 0;
            bottom: 0;
            background: #fdbe33;
        }

    .footer .footer-link a {
        display: block;
        margin-bottom: 10px;
        color: #ffffff;
        transition: .3s;
    }

        .footer .footer-link a::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .footer-link a:hover {
            color: #fdbe33;
            letter-spacing: 1px;
        }

    .footer .footer-contact p i {
        width: 25px;
    }

    .footer .footer-social {
        position: relative;
        margin-top: 20px;
    }

        .footer .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            padding: 7px 0;
            text-align: center;
            border: 1px solid rgba(256, 256, 256, .3);
            border-radius: 60px;
            transition: .3s;
        }

            .footer .footer-social a i {
                font-size: 15px;
                color: #ffffff;
            }

            .footer .footer-social a:hover {
                background: #fdbe33;
                border-color: #fdbe33;
            }

                .footer .footer-social a:hover i {
                    color: #000000;
                }

    .footer .newsletter .form {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer .newsletter input {
        height: 50px;
        border: 2px solid #121518;
        border-radius: 0;
    }

    .footer .newsletter .btn {
        position: absolute;
        top: 5px;
        right: 5px;
        height: 40px;
        padding: 8px 10px;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #fdbe33;
        background: #121518;
        border-radius: 0;
        border: 2px solid #fdbe33;
        transition: .3s;
    }

        .footer .newsletter .btn:hover {
            color: #121518;
            background: #fdbe33;
        }

    .footer .newsletter .logos {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 7px 0;
    }

        .footer .newsletter .logos img {
            width: 55px;
            height: auto;
            border-radius: 10px;
        }

    .footer .footer-menu .f-menu {
        position: relative;
        padding: 15px 0;
        font-size: 0;
        text-align: center;
        border-top: 1px solid rgba(256, 256, 256, .1);
        border-bottom: 1px solid rgba(256, 256, 256, .1);
    }

        .footer .footer-menu .f-menu a {
            color: #ffffff;
            font-size: 16px;
            margin-right: 15px;
            padding-right: 15px;
            border-right: 1px solid rgba(255, 255, 255, .1);
        }

            .footer .footer-menu .f-menu a:hover {
                color: #fdbe33;
            }

            .footer .footer-menu .f-menu a:last-child {
                margin-right: 0;
                padding-right: 0;
                border-right: none;
            }


    .footer .copyright {
        padding: 30px 15px;
    }

        .footer .copyright p {
            margin: 0;
            color: #ffffff;
        }

        .footer .copyright .col-md-6:last-child p {
            text-align: right;
        }

        .footer .copyright p a {
            color: #fdbe33;
            font-weight: 500;
            letter-spacing: 1px;
        }

            .footer .copyright p a:hover {
                color: #ffffff;
            }

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


.modal-body .btn-close.btn-close-white {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    border-radius: 100%;
    width: 35px;
    background: red;
    border: 0;
    height: 35px;
}

.modalForm {
    background: #fff;
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    z-index: 11;
}

.form-container {
    background: #0000004d;
    backdrop-filter: blur(20px);
    max-width: 350px;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 11;
    float: right;
    margin: 60px 130px 0px 0px;
}

    .form-container h2 {
        text-align: center;
        color: #ffffff;
        font-size: 21px;
        margin-bottom: 5px;
    }

    .form-container p {
        text-align: center;
        font-size: 13px;
        color: #e7e7e7;
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 15px;
}

    .appointmentForm .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #f7f7f733;
        border-radius: 8px;
        font-size: 14px;
        background: #f5f5f529;
        outline: none;
    }

        .appointmentForm .form-group input::placeholder {
            color: #fff;
        }

        .appointmentForm .form-group input:focus {
            border-color: #000000;
        }



    .cost-form .appointmentForm .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #39383833;
        border-radius: 8px;
        font-size: 14px;
        background: #f5f5f529;
        outline: none;
    }

        .cost-form .appointmentForm .form-group input::placeholder {
            color: #393838a3;
        }

        .cost-form .appointmentForm .form-group input:focus {
            border-color: #000000;
        }
        
        .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #39383833;
        border-radius: 8px;
        font-size: 14px;
        background: #f5f5f529;
        outline: none;
    }

        .form-group input::placeholder {
            color: #393838a3;
        }

        .form-group input:focus {
            border-color: #000000;
        }




.error {
    font-size: 12px;
    color: red;
    margin-top: 5px;
    display: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #ff5c00;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn-submit:hover {
        background: #000;
    }

.note {
    font-size: 11px !important;
    color: #444;
    margin-top: 10px;
    text-align: center;
}

    .note a {
        color: #0072ff;
        text-decoration: none;
    }

.form-container.Mobile {
    display: none
}

.form-container.Desktop {
    display: block
}

/* Responsive */
@media (max-width: 767px) {
    .form-container {
        padding: 25px 15px;
        margin: 0px 0px;
        float: none;
        max-width: 100%;
        border-radius: 0;
    }

        .form-container.Mobile {
            display: block;
            background: #000000;
        }

        .form-container.Desktop {
            display: none
        }

        .form-container h2 {
            font-size: 18px;
        }

    .btn-submit {
        font-size: 14px;
    }
}

/* ✅ Partner Logos Section */
.slick-slide {
    margin: 0px 20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    padding: 25px 0;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.house-tabs {
    padding: 40px 0;
    background: #f9f9f9;
    /*font-family: Arial, sans-serif;*/
}

    .house-tabs .tab-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        grid-gap: 15px;
    }

    .house-tabs .tab-item {
        background: #ffffff;
        border-left: 3px solid #0000004d;
        margin-bottom: 22px;
        padding: 14px 20px;
        cursor: pointer;
        width: 100%;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
    }

        .house-tabs .tab-item:hover {
            background: #f0f0f0;
        }

        .house-tabs .tab-item.active {
            background: #ff5c00;
            color: #fff;
            border-left: 3px solid red;
        }

    .house-tabs .tab-content {
        display: none;
    }

        .house-tabs .tab-content.active {
            display: block;
        }

    .house-tabs .content-wrapper {
        display: flex;
        gap: 20px;
        /*background: #fff;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    }

    .house-tabs .image img {
        width: 250px;
        border-radius: 8px;
    }

    .house-tabs .text {
        flex: 1;
    }

    .house-tabs .info-boxes {
        margin-top: 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .house-tabs .info {
        border-radius: 6px;
        font-size: 14px;
        background: #fff;
        padding: 11px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        gap: 10px;
    }

        .house-tabs .info p {
            margin: 0
        }

        .house-tabs .info img {
            max-width: 37px;
        }
/* Thumbnail styling */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

    .video-thumbnail img {
        width: 100%;
        border-radius: 10px;
        height: 100%;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 19px;
    width: 45px;
    height: 45px;
    border: 3px solid #fff;
    color: #ffffff;
    background: rgb(255 92 0);
    border-radius: 50%;
    padding: 6px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    /* wave animation base */
    .play-button::before,
    .play-button::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #ffffff;
        top: 0;
        left: 0;
        opacity: 0;
        animation: wavePulse 2s infinite;
    }

    /* delay second wave */
    .play-button::after {
        animation-delay: 1s;
    }

/* animation keyframes */
@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.8);
        opacity: 0.2;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 5% auto;
    background: #000;
    padding: 10px;
    border-radius: 10px;
}

    .video-modal-content iframe {
        width: 100%;
        height: 500px;
        border-radius: 10px;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@media only screen and (max-width:767px) {
    .house-tabs .content-wrapper {
        flex-direction: column;
    }

    .video-thumbnail img {
        max-width: 100%;
        height: 350px;
    }
}

.leftName {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background: aliceblue;
}


.owl-carousel.vertical-slider .item .card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    align-items: center
}

    .owl-carousel.vertical-slider .item .card img {
        width: 110px
    }

.our-packages {
    padding: 60px 0;
    background: #f9f9f9;
}

.our-packages-left h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.our-packages-left p {
    font-size: 16px;
    color: #555;
}

.our-packages-right {
    position: relative;
    height: 400px;
}

.pacakges-slider {
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3a5a7714;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}


.banner-text {
    text-align: center;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center
}

    .banner-text img {
        width: 100px;
        filter: contrast(0.5);
    }

.swiper-slide.swiper-slide-active .banner-text img {
    filter: invert(1);
}

.swiper-slide.swiper-slide-active .banner-text .price-details p {
    color: #fdbe33;
}

.swiper-slide.swiper-slide-active .banner-text .price-details span {
    color: #fff;
}

.swiper-slide.swiper-slide-active .banner-text .common-btn a {
    background: #fff;
    color: #ff5c00
}

.price-details p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.price-details span {
    color: #ffffff26;
    font-size: 14px;
}

.common-btn a {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: #007bff1f;
    color: #ffffff26;
    border-radius: 5px;
    text-decoration: none;
}

.swiper-button-next {
    right: 17px;
    transform: rotateZ(90deg);
}

.swiper-button-prev {
    left: auto;
    right: 20px;
    transform: rotateZ(90deg);
    top: 139px
}

.swiper-button-next,
.swiper-button-prev {
    color: #fdbe33;
}

@media only screen and (max-width:767px) {
    .banner-text {
        gap: 30px;
        align-items: center
    }

        .banner-text img {
            width: 60px;
            filter: contrast(0.5);
        }

    .price-details p {
        font-size: 13px;
        font-weight: bold;
        margin: 0;
    }

    .price-details span {
        color: #ffffff26;
        font-size: 12px;
    }

    .common-btn a {
        display: inline-block;
        margin-top: 1px;
        font-size: 12px;
        padding: 4px 10px;
        background: #007bff1f;
        color: #ffffff26;
    }
}


/* Social fixed icons - Top Left */
.social-fixed {
    position: fixed;
    top: 189px;
    left: 0;
    z-index: 9999;
}

    .social-fixed ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column; /* vertical stack */
        gap: 5px; /* space between icons */
    }

    .social-fixed a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 0 10% 10% 0%;
        background: #0b1320;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(3, 10, 20, 0.25);
        transition: transform .18s ease, background .18s ease;
        font-size: 16px;
    }

    .social-fixed ul li:nth-child(1) a {
        background: #1877F2
    }

    .social-fixed ul li:nth-child(2) a {
        background: linear-gradient(45deg, #833AB4, #E4405F, #FF7A00, #FCAF45);
    }

    .social-fixed ul li:nth-child(3) a {
        background: #FF0000
    }

    .social-fixed ul li:nth-child(4) a {
        background: #25D366
    }
    /* Hover / focus states */
    .social-fixed a:hover,
    .social-fixed a:focus {
        transform: translateY(-4px);
        background: #ffb703; /* accent on hover - change as needed */
        color: #081229;
        outline: none;
    }

    /* Small label tooltip (optional) */
    .social-fixed a::after {
        content: attr(aria-label);
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.75);
        color: #fff;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 13px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity .14s ease, transform .14s ease;
    }

    /* show tooltip on hover (desktop only) */
    .social-fixed a:hover::after,
    .social-fixed a:focus::after {
        opacity: 1;
        transform: translateY(-50%) translateX(4px);
    }

/* Responsive: hide on very small screens or move inside page */
@media (max-width: 480px) {
    .social-fixed {
        top: auto;
        bottom: 146px;
        left: auto;
        right: 14px;
    }

        .social-fixed a::after {
            content: attr(aria-label);
            position: absolute;
            left: auto;
            right: 56px;
        }

        .social-fixed a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: #fff;
            font-size: 28px;
        }
    /* Option: hide on very small screens */
    /* .social-fixed { display: none; } */
}

.testimonial-card {
    width: 250px;
    height: 253px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

    .testimonial-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* Hover Effect (optional) */
    .testimonial-card:hover img {
        transform: scale(1.05);
    }
/* Left Stylish Text Card */
.testimonial-text-card {
    width: 100%;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #0077b6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}



    .testimonial-text-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
        font-style: italic;
        margin: 0;
    }

        .testimonial-text-card p::before {
            content: "“";
            font-size: 60px;
            color: #0077b6;
            position: absolute;
            top: -30px;
            left: -14px;
            opacity: 0.2;
        }

    .testimonial-text-card h4 {
        margin-top: 20px;
        font-size: 16px;
        font-weight: 600;
        color: #0077b6;
        text-align: right;
    }

/* Right Image Card */
.testimonial-image-card {
    width: 250px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}


.legacy-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

    .legacy-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* Hover Effect (optional) */
    .legacy-card:hover img {
        transform: scale(1.05);
    }
/* Left Stylish Text Card */
.legacy-text-card {
    width: 100%;
    height: 100%;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff5c00 !important;
    border: 1px solid #0077b630;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}


    .legacy-text-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
        font-style: italic;
        margin: 0;
    }

        .legacy-text-card p::before {
            content: "“";
            font-size: 60px;
            color: #ff5c00;
            position: absolute;
            top: -30px;
            left: -14px;
            opacity: 0.2;
        }

    .legacy-text-card h4 {
        margin-top: 20px;
        font-size: 16px;
        font-weight: 600;
        color: #ff5c00;
        text-align: left;
    }

/* Right Image Card */
.legacy-image-card {
    width: 250px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}


@media only screen and (max-width:676px) {
    .testimonial-text-card {
        margin-top: 15px;
    }

    .testimonial-card {
        width: 100%;
        height: 253px;
        margin-bottom: 10px;
    }

    .legacy-text-card {
        margin-top: 15px;
    }

    .legacy-card {
        width: 100%;
        height: 253px;
        margin-bottom: 10px;
    }
}

.parteners {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    width: 100%;
    max-width: 185px;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 8px;
    margin: 10px;
}

.team-section .card {
    border-radius: 1rem;
    transition: transform 0.2s;
    background: #ffffff;
    flex-direction: row;
    align-items: center;
    padding: 10px 0px !important;
    border-right: 5px solid #ff5c00
}

    .team-section .card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    }

.team-section .card-img-top {
    width: 115px;
    height: 115px;
    object-fit: cover;
    border: 4px solid #ffffff;
    background: #e0e0e0;
    border-radius: 50%;
    box-shadow: 0px 0px 14px 0px #ff5c004a;
}

.team-section .card .card-body h5 {
    font-size: 18px;
    font-weight: 600;
}

.team-section .card .card-body p {
    font-size: 15px;
}

.team-section h2 {
    letter-spacing: 2px;
}

.leftImg {
    background: #000000;
    width: 25%;
    border-radius: 0px 90px 90px 0;
    padding: 10px;
    text-align: right;
    box-shadow: 3px 1px 11px 0px #ff5c007d;
}

@media only screen and (max-width:767px) {
    .team-section .card {
        flex-direction: column;
        align-items: center;
        border-top: 5px solid #ff5c00;
        border-right: none;
        padding: 10px 10px !important;
    }

    .leftImg {
        width: auto;
        border-radius: 50%;
    }

    .team-section .card .card-body h5 {
        text-align: center;
    }

    .team-section .card .card-body p {
        text-align: center;
    }
}


.vision-mission-section {
    background: #fff;
}

.vision-mission-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

    .vision-mission-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        position: relative;
        z-index: 2;
    }

    .vision-mission-image .pattern-overlay {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient( 45deg, #f2f2f2, #f2f2f2 10px, transparent 10px, transparent 20px );
        z-index: 1;
        border-radius: 15px;
    }

.vision-mission-content {
    padding: 20px;
}

.vm-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

    .vm-title::after {
        content: "";
        display: block;
        width: 50px;
        height: 3px;
        background: #ff5c00;
        margin-top: 5px;
        border-radius: 2px;
    }

.vm-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.core-values {
    background: #000000;
}

.core-card {
    background: linear-gradient(355deg, #312f2f, #42424269);
    padding: 40px 25px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

    .core-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(355deg, #767676, #42424269);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 6px 15px rgb(81 81 81 / 40%);
    transition: all 0.3s ease;
}

.core-card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.core-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.core-card p {
    font-size: 0.95rem;
    color: #ffffffc4;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
    }

.servicescard {
    display: flex;
    grid-gap: 14px;
    align-items: center;
}

    .servicescard .left-img {
        background: bisque;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        padding: 12px;
    }

        .servicescard .left-img img {
            width: 32px;
        }

    .servicescard .card-title {
        margin-bottom: 0;
        font-size: 17px;
    }

    .servicescard .card-text:last-child {
        margin-bottom: 0;
        font-size: 15px;
    }

.partner-card {
    padding: 20px 20px;
    border-top: 3px solid #ff5c00 !important;
    border: none;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(2deg, #f3f0ff, transparent);
}

    .partner-card i {
        font-size: 26px;
        color: #ffffff;
        background: linear-gradient(358deg, #173163, #3d76e7);
        width: 50px;
        border-radius: 50%;
        align-content: center;
        height: 50px;
        display: inline-block;
        margin-bottom: 10px;
        padding: 0;
    }

    .partner-card h6 {
        font-size: 18px
    }

    .partner-card p {
        margin: 0
    }

.partner-form {
    background: #fdbe33;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}


.partner-testimonials {
    background: #000000;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    padding: 25px;
}

    .partner-testimonials p {
        color: #eee
    }

    .partner-testimonials h6 {
        color: #fff
    }


.info-section {
    background: #f8f9fa;
}

.bg-image {
    background-image: url(../img/projects/TS-275-2-min.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 19px;
    border-radius: 10px;
    height: 100%;
}

.info-card {
    background: rgb(0 0 0 / 69%);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    min-height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.news-vertical-track .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff5c00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    margin-right: 6px;
    font-size: 14px;
}

.info-icon {
    width: 100%;
    max-width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgb(251 251 251 / 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
    border: 2px solid #ff5c00;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    width: 70%;
}

.info-item a {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
}


/* Base package card */
.package-card {
    color: #111;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 1px 4px 0px 1px rgb(200 200 200 / 16%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 310px;
    height: 100%;
}

    /* Hover Effect */
    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    }

    /* Price */
    .package-card .price {
        font-size: 1.6rem;
        font-weight: bold;
        margin: 10px 0;
    }

    /* Headings */
    .package-card h5 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .package-card h6 {
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 2px solid rgb(59 56 56 / 65%);
        display: inline-block;
        padding-bottom: 5px;
    }
    .package-card p {
        font-size: 14px;
        border-bottom: 1px dashed #c7c4c4;
        padding-bottom: 15px;
    }

    /* List with Stylish Arrows */
    .package-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        min-height: 230px;
    }

        .package-card ul li {
            margin: 10px 0;
            font-size: 13px;
            display: flex;
            align-items: center;
        }

            .package-card ul li::before {
                content: "✓";
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                max-width: 14px;
                height: 14px;
                border: 1px solid #000000;
                border-radius: 50%;
                margin-right: 10px;
                font-size: 8px;
                font-weight: bold;
                color: #111;
            }

    .package-card .Learn-btn {
        background: #ff5c00;
        color: #fff;
        box-shadow: 1px 0px 13px rgb(255 92 0 / 59%);
    }

    /* Popular Badge */
    .package-card.popular .badge-popular {
        position: absolute;
        top: 15px;
        right: -40px;
        background: #ff5c00;
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: bold;
        padding: 5px 40px;
        transform: rotate(45deg);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* -------- Unique Gradients for Each Card -------- */

    /* Structure */
    .package-card:nth-child(1) {
        background: linear-gradient(135deg, #e5dfdc, #ffffff) /* Blue Royal */
    }


/* Card Wrapper */
.property-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Image Section */
.property-card__image-wrapper {
    padding: 16px;
    background-color: #fff;
    text-align: center;
}

.property-card__image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .property-card__image:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    }

/* Content Section */
.property-card__content {
    padding: 20px;
}

.property-card__title {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.property-card__description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

/* Stats Grid */
.property-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.property-card__stat-item {
    flex: 1 1 45%;
    background: linear-gradient(135deg, #e0ecff, #f4f8ff);
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

/* Viewing Alert */
.property-card__viewing-alert {
    font-size: 13px;
    color: #ff6a00;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: center;
}

    .property-card__viewing-alert span {
        color: #787878;
    }

/* Action Buttons */
.property-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.property-card__btn {
    flex: 1;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
    text-align: center
}

.property-card__btn--primary {
    background: linear-gradient( 134deg, #100e12, #6b6b6b);
    color: white;
}

.property-card__btn--secondary {
    background: linear-gradient(135deg, #ff5c00, #f08a50);
    color: white;
}

.property-card__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.cost-estimator {
    background: aliceblue;
    border-radius: 55px;
    padding: 30px 72px;
}

    .cost-estimator .cost-form {
        max-width: 500px;
    }

@media only screen and (max-width:767px) {
    .cost-estimator {
        background: aliceblue;
        border-radius: 25px;
        padding: 20px 20px;
    }

        .cost-estimator .cost-form {
            max-width: 500px;
        }
}


.accordion-button {
    background: #eeeeee59;
    box-shadow: none;
    border: none;
    color: #111;
}

    .accordion-button span {
        font-size: 23px;
        font-weight: 600;
        color: #000000;
        margin-right: 10px;
    }

.accordion-body .accordionStyle {
    background: #e9ffff;
    border-radius: 14px;
    padding: 10px 20px;
    height: 100%;
}

.accordion-body .accordionStyle p{
    margin: 13px;
    font-size: 20px;
}

    .accordion-body .accordionStyle h4 {
        font-size: 17px;
        font-weight: 600;
        position: relative;
    }

        .accordion-body .accordionStyle h4::before {
            content: '';
            background: linear-gradient(45deg, #ff5c00, transparent);
            width: 100px;
            height: 2px;
            position: absolute;
            top: 24px;
            left: 0;
        }

    .accordion-body .accordionStyle ul li {
        font-size: 18px;
    }


.info-section h2 {
    text-align: center;
    color: #000;
    position: relative;
    margin-bottom: 25px;
    font-weight: 700
}

    .info-section h2::before {
        content: '';
        position: absolute;
        border-bottom: 2px dashed var(--deep-dark-blue);
        width: 80%;
        left: 0;
        right: 0;
        bottom: -5px;
        margin: auto;
    }

    .info-section h2 span {
        position: relative;
        color: #ff5c00;
    }

        .info-section h2 span::before {
            content: '';
            position: absolute;
            background: url(../img/hand.png) no-repeat center center / contain;
            width: 100%;
            max-width: 50px;
            height: 50px;
            bottom: 10px;
            right: -50px;
            /*filter: invert(10%) sepia(92%) saturate(1299%) hue-rotate(198deg) brightness(101%) contrast(101%);*/
        }

        .info-section h2 span::after {
            content: '';
            position: absolute;
            background: url(../img/hand.png) no-repeat center center / contain;
            width: 100%;
            max-width: 50px;
            height: 50px;
            left: -50px;
            bottom: 10px;
            transform: scaleX(-1);
            /*filter: invert(10%) sepia(92%) saturate(1299%) hue-rotate(198deg) brightness(101%) contrast(101%);*/
        }

.news-vertical-scroll {
    width: 100%;
    height: 270px;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.news-vertical-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: verticalScroll 20s linear infinite;
}

.news-vertical-scroll:hover .news-vertical-track {
    animation-play-state: paused;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0px;
    font-size: 15px;
}

    .info-item i {
        font-size: 18px;
        color: #ffbf00;
    }

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@media only screen and (max-width:767px){
    .accordion-body .accordionStyle ul li {
        font-size: 13px;
    }
    .accordion-body .accordionStyle {
        padding: 10px 0px;
    }
}

.Secpara {
    font-weight: 400 !important;
    color: #666 !important;
    margin-top: 13px;
}
/*.owl-carousel .owl-item img.ProjectImg {
    height: 450px;
}*/


.feature-badges {
    text-align: left;
    margin-top: 0px;
    background: #ffffff;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 3px solid #999999;
}

.badge-item {
    display: inline-block;
    background: #f1eaea;
    color: #000000;
    padding: 3px 9px;
    border-radius: 6px;
    margin: 0px;
    font-size: 10px;
    font-weight: 500;
}
/*.arrow-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

    .arrow-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 5px;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.5;
        display: flex;
        align-items: center;
    }

        .arrow-list li::before {
            content: "➤";
            position: absolute;
            left: 0;
            top: 0;
            color: #7c7b7b;
            font-size: 16px;
            line-height: 1.2;
        }*/

.arrow-list {
    list-style: disc; /* Default bullet points */
    padding-left: 20px; /* Space for bullets */
    margin: 16px 0;
}

    .arrow-list li {
        /* Remove custom pseudo-element */
        position: relative;
        padding-left: 0; /* No extra space needed for bullets */
        margin-bottom: 5px;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.5;
        display: list-item; /* Default display for list items */
    }

.project-overlay {
    position: relative;
    overflow: hidden;
}

    .project-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        transition: 0.3s ease;
        opacity: 1;
    }

    .project-overlay:hover::before {
        opacity: 1;
    }

.project-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 25px;
    z-index: 10;
    opacity: 1;
    transition: 0.3s ease;
    width: 100%;
}

    .project-info small {
        font-size: 13px;
        font-weight: 600;
    }

.project-overlay:hover .project-info {
    opacity: 1;
}



    .project-section .row {
        align-items: stretch !important;
    }


.project-info-box {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.project-subtitle {
    color: #d1a21d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 9px;
    color: #222;
}

.project-size {
    font-weight: 500;
    color: #322f2f;
    margin-bottom: 8px;
    background: #e1e1e17d;
    border-radius: 7px;
    padding: 3px 9px;
    border-left: 4px solid #606060;
    font-size: 13px;
}

.project-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

/* SLIDER IMG */
.ProjectImg {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media(max-width: 768px) {
    .project-info-box {
        margin-bottom: 20px;
    }

    .ProjectImg {
        height: 300px;
    }
}

