/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text i {
    font-size: 16px;
    color: #FDBE33;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.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 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FDBE33;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 20px 60px;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        z-index: 9;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #20212B !important;
        border-bottom: none;
    }

    .page .navbar {
        background: #20212B !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #20212B !important;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #20212B;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#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;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 35px;
    }

    .carousel .carousel-text p {
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../imgs/a.jfif);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    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: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.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%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FDBE33;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 100vh;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}


/*******************************/
/******* About V2 CSS **********/
/*******************************/
.about-v2 {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

/* --- Image Side --- */
.about-v2-img-wrap {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.about-v2-img {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-v2-accent-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border: 5px solid #FDBE33;
    border-radius: 6px;
    z-index: 0;
    pointer-events: none;
}

.about-v2-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #20212B;
    color: #fff;
    border-radius: 8px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-align: center;
    min-width: 130px;
}

.about-v2-badge .badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-v2-badge .badge-num {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #FDBE33;
    line-height: 1;
}

.about-v2-badge .badge-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #ccc;
    margin-top: 5px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Content Side --- */
.about-v2-content {
    padding-left: 15px;
}

.about-v2-tag {
    margin-bottom: 14px;
}

.about-v2-tag span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(253, 190, 51, 0.1);
    color: #d49b00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(253, 190, 51, 0.35);
}

.about-v2-tag i {
    color: #FDBE33;
    font-size: 12px;
}

.about-v2-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #20212B;
    margin-bottom: 14px;
}

.about-v2-heading em {
    font-style: normal;
    color: #FDBE33;
}

.about-v2-subtext {
    font-size: 15px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.7;
    border-left: 3px solid #FDBE33;
    padding-left: 14px;
}

/* --- Tab Nav --- */
.about-v2-nav {
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
    border-bottom: 2px solid #f0f0f0;
}

.about-v2-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    background: transparent;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s;
    text-decoration: none;
}

.about-v2-nav-link i {
    font-size: 13px;
}

.about-v2-nav-link:hover {
    color: #FDBE33;
    text-decoration: none;
}

.about-v2-nav-link.active {
    color: #FDBE33;
    border-bottom-color: #FDBE33;
}

/* --- Tab Content --- */
.about-v2-tab-content {
    padding: 24px 0 10px 0;
    background: transparent;
}

.about-v2-tab-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* Feature Grid */
.about-v2-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.av2-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 12px 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.av2-feature-item:hover {
    border-color: #FDBE33;
    box-shadow: 0 4px 16px rgba(253, 190, 51, 0.15);
}

.av2-feature-item i {
    font-size: 20px;
    color: #FDBE33;
    flex-shrink: 0;
}

.av2-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Mission & Vision Tab Icon Header */
.av2-tab-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.av2-tab-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDBE33, #f5a800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.av2-tab-icon-circle i {
    font-size: 20px;
    color: #fff;
}

.av2-tab-icon-header h4 {
    font-size: 22px;
    font-weight: 800;
    color: #20212B;
    margin: 0;
}

/* Mission Checklist */
.av2-mission-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.av2-mission-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #444;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
}

.av2-mission-list li:last-child {
    border-bottom: none;
}

.av2-mission-list li i {
    color: #FDBE33;
    font-size: 16px;
    flex-shrink: 0;
}

/* Vision Quote */
.av2-vision-quote {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
    border-left: 4px solid #FDBE33;
    border-radius: 0 8px 8px 0;
    padding: 18px 20px;
}

.av2-vision-quote i {
    font-size: 28px;
    color: #FDBE33;
    flex-shrink: 0;
    margin-top: 2px;
}

.av2-vision-quote em {
    font-style: italic;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* CTA Row */
.about-v2-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-v2-contact-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.about-v2-contact-inline i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(253, 190, 51, 0.12);
    border: 2px solid #FDBE33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    font-size: 17px;
    flex-shrink: 0;
}

.about-v2-contact-inline small {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-v2-contact-inline strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #20212B;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-v2-content {
        padding-left: 0;
    }

    .about-v2-heading {
        font-size: 30px;
    }

    .about-v2-img {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .about-v2 {
        padding: 55px 0;
    }

    .about-v2-img-wrap {
        padding-right: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .about-v2-img {
        height: 300px;
    }

    .about-v2-badge {
        left: -10px;
        bottom: 25px;
    }

    .about-v2-features {
        grid-template-columns: 1fr;
    }

    .about-v2-heading {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .about-v2-nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .about-v2-heading {
        font-size: 23px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: #FDBE33;
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: rgba(0, 0, 0, .1);
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
}


/*******************************/
/****** Svc Section CSS ********/
/*******************************/

/* --- Section Wrapper --- */
.svc-section {
    position: relative;
    width: 100%;
    padding: 80px 0 90px 0;
    background: #f7f8fc;
}

/* --- Section Header --- */
.svc-section-header {
    margin-bottom: 55px;
    padding: 0 15px;
}

.svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.12);
    color: #c48b00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 20px;
    border-radius: 50px;
    border: 1px solid rgba(253, 190, 51, 0.35);
    margin-bottom: 18px;
}

.svc-tag i {
    font-size: 12px;
    color: #FDBE33;
}

.svc-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #20212B;
    margin: 10px 0 14px 0;
    line-height: 1.2;
}

.svc-section-header h2 em {
    font-style: normal;
    color: #FDBE33;
}

.svc-section-header p {
    font-size: 16px;
    color: #777;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Card Grid --- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 40px;
}

/* --- Individual Card --- */
.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* --- Card Image --- */
.svc-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: background-size 0.4s ease;
}

.svc-card:hover .svc-card-img {
    background-size: 110%;
}

.svc-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(32, 33, 43, 0.25) 0%, rgba(32, 33, 43, 0.55) 100%);
    transition: opacity 0.3s ease;
}

.svc-card:hover .svc-card-img-overlay {
    opacity: 0.7;
}

/* --- Floating Icon Badge --- */
.svc-card-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FDBE33;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(253, 190, 51, 0.5);
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.svc-card:hover .svc-card-badge {
    transform: scale(1.15);
    background: #20212B;
}

.svc-card-badge i {
    font-size: 18px;
    color: #fff;
}

/* --- Card Body --- */
.svc-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 38px 22px 24px 22px;
}

.svc-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: #20212B;
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

.svc-card:hover .svc-card-body h3 {
    color: #c48b00;
}

.svc-card-body p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

/* --- Call Now Button --- */
.svc-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 9px 20px;
    background: #20212B;
    color: #FDBE33;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.svc-call-btn i {
    font-size: 12px;
}

.svc-call-btn:hover {
    background: #FDBE33;
    color: #20212B;
    box-shadow: 0 6px 20px rgba(253, 190, 51, 0.4);
    text-decoration: none;
}

/* Button Group and Details Button */
.svc-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.svc-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: transparent;
    color: #20212B;
    border: 2px solid #FDBE33;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.svc-details-btn i {
    font-size: 12px;
}

.svc-details-btn:hover {
    background: #20212B;
    color: #FDBE33;
    border-color: #20212B;
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 1199.98px) {
    .svc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .svc-section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 575.98px) {
    .svc-section {
        padding: 55px 0 65px 0;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-section-header h2 {
        font-size: 26px;
    }

    .svc-card-img {
        height: 220px;
    }
}


/*******************************/
/********* Donate CSS **********/
/*******************************/
.donate {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.donate .donate-content {
    padding: 45px 0 15px 0;
}

.container .donate {
    margin: 90px 0;
}

.container .donate .donate-content {
    padding: 45px 30px 15px 30px;
}

.donate .donate-content .section-header {
    margin-bottom: 30px;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
}

.donate .donate-text p {
    color: #ffffff;
    font-size: 18px;
}

.donate .donate-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.donate .donate-form .control-group {
    margin-bottom: 15px;
}

.donate .donate-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.donate .donate-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.donate .donate-form .form-control:-ms-input-placeholder,
.donate .donate-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.donate .donate-form .btn-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.donate .donate-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.donate .donate-form .btn.btn-custom:hover,
.donate .donate-form .btn.btn-custom.active {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}



/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.causes .causes-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.causes .causes-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f3f6ff;
}

.causes .causes-img {
    overflow: hidden;
}

.causes .causes-img img {
    width: 100%;
    transition: .3s;
}

.causes .causes-item:hover img {
    transform: scale(1.1);
}


.causes .causes-progress {
    width: 100%;
    margin-top: 32px;
    padding: 30px 30px 20px 30px;
}

.causes .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #FDBE33;
    overflow: visible;
    transition: 2s;
}

.causes .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #FDBE33;
    color: #20212B;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #FDBE33 transparent transparent transparent;
}

.causes .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.causes .progress-text p {
    margin: 0;
}

.causes .causes-text {
    padding: 0 30px;
}

.causes .causes-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.causes .causes-text p {
    margin: 0;
}

.causes .causes-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 50%;
}

.causes .causes-btn .btn:last-child {
    color: #20212B;
    background: #FDBE33;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}



/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: #FDBE33;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

/* Solid black background variant */
.facts.facts-dark {
    background: #000000;
    background-image: none !important;
}


/*******************************/
/******* Stats V2 CSS **********/
/*******************************/
.stats-v2 {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #0a0a0a;
    overflow: hidden;
}

/* Subtle grid texture */
.stats-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(253, 190, 51, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* --- Header --- */
.stats-v2-header {
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.stats-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.1);
    color: #FDBE33;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 20px;
    border-radius: 50px;
    border: 1px solid rgba(253, 190, 51, 0.25);
    margin-bottom: 18px;
}

.stats-v2-tag i {
    font-size: 11px;
}

.stats-v2-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 14px 0;
    line-height: 1.2;
}

.stats-v2-header h2 em {
    font-style: normal;
    color: #FDBE33;
}

.stats-v2-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Stat Card --- */
.stats-v2-card {
    position: relative;
    text-align: center;
    padding: 40px 20px 35px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.stats-v2-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 190, 51, 0.35);
    box-shadow: 0 20px 50px rgba(253, 190, 51, 0.1);
}

/* --- Icon Circle --- */
.stats-v2-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDBE33, #e6a200);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(253, 190, 51, 0.35);
    transition: transform 0.3s ease;
}

.stats-v2-card:hover .stats-v2-icon {
    transform: scale(1.1) rotate(5deg);
}

.stats-v2-icon i {
    font-size: 26px;
    color: #0a0a0a;
}

/* --- Divider --- */
.stats-v2-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FDBE33, transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
}

/* --- Number --- */
.stats-v2-card h3 {
    display: inline;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.stats-v2-suffix {
    font-size: 30px;
    font-weight: 700;
    color: #FDBE33;
    margin-left: 2px;
    vertical-align: top;
    line-height: 1.3;
}

/* --- Label --- */
.stats-v2-card p {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .stats-v2-header h2 {
        font-size: 34px;
    }

    .stats-v2-card h3 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .stats-v2 {
        padding: 60px 0;
    }

    .stats-v2-header h2 {
        font-size: 28px;
    }

    .stats-v2-card {
        padding: 30px 15px 28px;
    }

    .stats-v2-card h3 {
        font-size: 36px;
    }
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 35px;
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    transform: scale(1.1);
    margin-bottom: -15px;
    transition: .3s;
}

.team .team-item:hover img {
    margin: -15px 0 0 0;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 40px);
    height: 96px;
    bottom: 0;
    left: 20px;
    padding: 22px 0;
    text-align: center;
    background: #ffffff;
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #4a4c70;
    border: 2px solid #FDBE33;
    transition: .3s;
}

.team .team-social a:hover {
    color: #20212B;
    background: #FDBE33;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-profile img {
    width: 80px;
    margin-bottom: -1px;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


/*******************************/
/******** Volunteer CSS ********/
/*******************************/
.volunteer {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

.container .volunteer {
    margin: 90px 0;
}

.container .volunteer .volunteer-content {
    padding: 45px 30px 15px 30px;
}

.volunteer .volunteer-content .section-header {
    margin-bottom: 30px;
}

.volunteer .volunteer-content .section-header h2 {
    color: #ffffff;
}

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

.volunteer .volunteer-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.volunteer .volunteer-form .control-group {
    margin-bottom: 15px;
}

.volunteer .volunteer-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.volunteer .volunteer-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom:hover {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}


/*******************************/
/********** Event CSS **********/
/*******************************/
.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
}

.event .event-item img {
    width: 100%;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px;
    left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }

    .event .event-meta {
        flex-direction: row;
    }

    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }

    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }

    .event .event-meta i {
        width: 18px;
    }

    .event .event-text {
        margin: 0;
        padding: 0;
    }

    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
}

.blog .blog-img {
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #FDBE33;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    margin: 0 30px;
    padding-top: 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
    margin: 0;
    color: #777777;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #4a4c70;
    margin-right: 8px
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FDBE33;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    padding: 30px;
    background: #f3f6ff;
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* 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: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.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%;
    border: 15px solid #ffffff;
}

.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: 600;
}

.single .post-item .post-text a:hover {
    color: #FDBE33;
}

.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: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    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: #4a4c70;
    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: #4a4c70;
}

.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%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    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 input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}


/**********************************/
/*********** 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: 25px;
    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;
    border-color: #FDBE33;
}

.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: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.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: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.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);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #20212B;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #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-contact p a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.footer .footer-contact p a:hover {
    color: #FDBE33;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a {
    margin-top: 5px;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #FDBE33;
}


/*******************************/
/****** Why Choose Us CSS ******/
/*******************************/
.why-us {
    position: relative;
    width: 100%;
    padding: 90px 0 70px;
    background: #f4f6fb;
}

/* --- Header --- */
.why-us-header {
    margin-bottom: 55px;
}

.why-us-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.12);
    color: #c48b00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 20px;
    border-radius: 50px;
    border: 1px solid rgba(253, 190, 51, 0.3);
    margin-bottom: 16px;
}

.why-us-tag i {
    font-size: 11px;
    color: #FDBE33;
}

.why-us-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #20212B;
    margin: 10px 0 14px;
    line-height: 1.2;
}

.why-us-header h2 em {
    font-style: normal;
    color: #FDBE33;
}

.why-us-header p {
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Card --- */
.why-us-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 38px 28px 32px;
    margin-bottom: 28px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.09);
    border-color: rgba(253, 190, 51, 0.3);
}

/* --- Icon --- */
.why-us-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDBE33, #e6a200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(253, 190, 51, 0.3);
    transition: transform 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: rotate(10deg) scale(1.08);
}

.why-us-icon i {
    font-size: 24px;
    color: #fff;
}

/* --- Text --- */
.why-us-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #20212B;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.why-us-card:hover h3 {
    color: #c48b00;
}

.why-us-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* --- Gold Accent Bar (bottom on hover) --- */
.why-us-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FDBE33, #f5a800);
    border-radius: 0 0 14px 14px;
    transition: width 0.4s ease;
}

.why-us-card:hover .why-us-card-accent {
    width: 100%;
}

/* --- CTA Row --- */
.why-us-cta {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.why-us-cta p {
    font-size: 18px;
    font-weight: 600;
    color: #20212B;
    margin-bottom: 22px;
}

.why-us-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.why-us-cta-btns .btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
}

.why-us-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    border: 2px solid #25D366;
    text-decoration: none;
    transition: background 0.25s, box-shadow 0.25s;
}

.why-us-wa-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.why-us-wa-btn i {
    font-size: 18px;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .why-us-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 575.98px) {
    .why-us {
        padding: 60px 0 50px;
    }

    .why-us-header h2 {
        font-size: 27px;
    }

    .why-us-card {
        padding: 30px 20px 26px;
    }
}


/*******************************/
/****** Testimonial V2 CSS *****/
/*******************************/
.testi-v2 {
    position: relative;
    width: 100%;
    padding: 90px 0 80px;
    background: #ffffff;
}

/* --- Header --- */
.testi-v2-header {
    margin-bottom: 55px;
}

.testi-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #4285F4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 20px;
    border-radius: 50px;
    border: 1.5px solid #4285F4;
    margin-bottom: 16px;
}

.testi-v2-tag i {
    font-size: 13px;
    color: #4285F4;
}

.testi-v2-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #20212B;
    margin: 10px 0 20px;
    line-height: 1.2;
}

.testi-v2-header h2 em {
    font-style: normal;
    color: #FDBE33;
}

/* Rating Summary Row */
.testi-v2-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    padding: 12px 28px;
    margin-top: 4px;
}

.testi-v2-big-score {
    font-size: 42px;
    font-weight: 900;
    color: #20212B;
    line-height: 1;
}

.testi-v2-stars-big i {
    color: #FDBE33;
    font-size: 20px;
    margin-right: 2px;
}

.testi-v2-rating-summary p {
    font-size: 13px;
    color: #888;
    margin: 5px 0 0;
    font-weight: 500;
}

/* --- Carousel Padding --- */
.testi-v2-carousel {
    padding-bottom: 40px;
}

/* --- Review Card --- */
.testi-v2-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 24px 22px 22px;
    margin: 8px 4px 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-v2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* --- Card Top Row --- */
.testi-v2-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Avatar Circle with Initial */
.testi-v2-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}

.testi-v2-reviewer {
    flex: 1;
}

.testi-v2-reviewer h4 {
    font-size: 15px;
    font-weight: 700;
    color: #20212B;
    margin: 0 0 2px;
}

.testi-v2-reviewer span {
    font-size: 12px;
    color: #aaa;
}

/* Google Badge */
.testi-v2-google-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-v2-google-badge i {
    font-size: 16px;
    color: #4285F4;
}

/* Star Row */
.testi-v2-stars {
    margin-bottom: 12px;
}

.testi-v2-stars i {
    color: #FDBE33;
    font-size: 14px;
    margin-right: 1px;
}

/* Review Text */
.testi-v2-text {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}

/* --- Owl Dots Styling --- */
.testi-v2-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testi-v2-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #ddd;
    border-radius: 50%;
    display: block;
    transition: background 0.3s, transform 0.3s;
}

.testi-v2-carousel .owl-dot.active span {
    background: #FDBE33;
    transform: scale(1.4);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .testi-v2-header h2 {
        font-size: 32px;
    }

    .testi-v2-big-score {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .testi-v2 {
        padding: 60px 0 60px;
    }

    .testi-v2-header h2 {
        font-size: 26px;
    }

    .testi-v2-rating-summary {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
        border-radius: 16px;
    }
}

/* ===================================================
   FAQ V2 Section - Theme Colors: #FDBE33, #4a4c70
   =================================================== */

.faq-v2-section {
    background: linear-gradient(135deg, #fffdf3 0%, #fff8e1 100%);
    padding: 80px 0;
}

.faq-v2-header {
    margin-bottom: 55px;
}

.faq-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.15);
    color: #4a4c70;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.faq-v2-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #4a4c70;
    margin-bottom: 14px;
    line-height: 1.2;
}

.faq-v2-header h2 em {
    color: #FDBE33;
    font-style: normal;
}

.faq-v2-header p {
    font-size: 16px;
    color: #777;
    max-width: 540px;
    margin: 0 auto;
}

.faq-v2-row {
    align-items: flex-start;
}

.faq-v2-left {
    padding-right: 30px;
}

.faq-v2-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-v2-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    border-left: 3px solid transparent;
}

.faq-v2-item:hover {
    box-shadow: 0 6px 25px rgba(253, 190, 51, 0.2);
}

.faq-v2-item.active {
    box-shadow: 0 6px 30px rgba(253, 190, 51, 0.25);
    border-left-color: #FDBE33;
}

.faq-v2-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 14px;
}

.faq-v2-question span {
    font-size: 16px;
    font-weight: 600;
    color: #4a4c70;
    flex: 1;
    line-height: 1.4;
}

.faq-v2-icon {
    font-size: 13px;
    color: #4a4c70;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(253, 190, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-v2-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-v2-answer p {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.faq-v2-answer a {
    color: #4a4c70;
    text-decoration: underline;
}

.faq-v2-answer a:hover {
    color: #FDBE33;
}

.faq-v2-right {
    padding-left: 10px;
}

.faq-v2-contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(74, 76, 112, 0.13);
    overflow: hidden;
}

.faq-v2-contact-header {
    background: linear-gradient(135deg, #4a4c70 0%, #20212B 100%);
    padding: 32px 30px 26px;
    text-align: center;
    color: #fff;
}

.faq-v2-contact-header i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    color: #FDBE33;
}

.faq-v2-contact-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.faq-v2-contact-header p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    color: #fff;
}

.faq-v2-contact-list {
    list-style: none;
    margin: 0;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-v2-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.faq-v2-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(253, 190, 51, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4a4c70;
    font-size: 17px;
}

.faq-v2-contact-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.faq-v2-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.faq-v2-contact-info small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #aaa;
    font-weight: 600;
}

.faq-v2-contact-info a,
.faq-v2-contact-info span {
    font-size: 14px;
    color: #4a4c70;
    font-weight: 500;
    text-decoration: none;
    word-break: break-word;
    line-height: 1.4;
}

.faq-v2-contact-info a:hover {
    color: #FDBE33;
}

.faq-v2-cta-btns {
    display: flex;
    gap: 10px;
    padding: 0 28px 28px;
    flex-wrap: wrap;
}

.faq-v2-btn {
    flex: 1;
    text-align: center;
    min-width: 110px;
    font-size: 14px;
}

.faq-v2-wa-btn {
    flex: 1;
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    text-align: center;
    min-width: 110px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.faq-v2-wa-btn:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .faq-v2-section {
        padding: 60px 0;
    }

    .faq-v2-header h2 {
        font-size: 30px;
    }

    .faq-v2-left {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .faq-v2-right {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .faq-v2-section {
        padding: 40px 0;
    }

    .faq-v2-header {
        margin-bottom: 35px;
    }

    .faq-v2-header h2 {
        font-size: 26px;
    }

    .faq-v2-header p {
        font-size: 14px;
    }

    .faq-v2-left {
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 28px;
    }

    .faq-v2-right {
        padding-right: 15px;
        padding-left: 15px;
    }

    .faq-v2-question {
        padding: 16px 18px;
    }

    .faq-v2-question span {
        font-size: 14px;
    }

    .faq-v2-answer p {
        font-size: 14px;
        padding: 0 18px 16px;
    }

    .faq-v2-contact-header {
        padding: 24px 20px 18px;
    }

    .faq-v2-contact-header h3 {
        font-size: 20px;
    }

    .faq-v2-contact-list {
        padding: 18px 20px;
        gap: 14px;
    }

    .faq-v2-cta-btns {
        padding: 0 20px 22px;
        flex-direction: column;
    }

    .faq-v2-btn,
    .faq-v2-wa-btn {
        width: 100%;
        flex: none;
    }

    .faq-v2-contact-info a,
    .faq-v2-contact-info span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq-v2-header h2 {
        font-size: 22px;
    }

    .faq-v2-tag {
        font-size: 11px;
    }

    .faq-v2-item {
        border-radius: 10px;
    }
}

/* ===================================================
   Service Detail Pages CSS
   =================================================== */

/* ---- Hero Section ---- */
.svc-detail-section {
    padding: 70px 0 80px;
    background: #fff;
}

.svc-detail-hero {
    position: relative;
    margin-bottom: 40px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.svc-detail-img {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.svc-detail-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #FDBE33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(253, 190, 51, 0.5);
}

.svc-detail-badge i {
    font-size: 26px;
    color: #20212B;
}

/* ---- Content ---- */
.svc-detail-content {
    padding: 10px 0;
}

.svc-detail-tag span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(253, 190, 51, 0.15);
    color: #4a4c70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.svc-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: #4a4c70;
    margin-bottom: 10px;
    line-height: 1.2;
}

.svc-detail-tagline {
    font-size: 18px;
    color: #FDBE33;
    font-weight: 600;
    margin-bottom: 18px;
}

.svc-detail-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Grid */
.svc-detail-features {
    background: #fffdf3;
    border-radius: 14px;
    padding: 28px 28px 20px;
    margin-bottom: 30px;
    border-left: 4px solid #FDBE33;
}

.svc-detail-features h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-detail-features h3 i {
    color: #FDBE33;
}

.svc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0ead8;
    margin-bottom: 4px;
}

.svc-feature-item:last-child {
    border-bottom: none;
}

.svc-feature-item i {
    color: #FDBE33;
    font-size: 16px;
    flex-shrink: 0;
}

.svc-feature-item span {
    font-size: 15px;
    color: #4a4c70;
    font-weight: 500;
}

/* Description */
.svc-detail-desc {
    margin-bottom: 30px;
}

.svc-detail-desc h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FDBE33;
    display: inline-block;
}

.svc-detail-desc p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* CTA Buttons */
.svc-detail-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.svc-wa-btn {
    background: #25d366;
    color: #fff !important;
    border: 2px solid #25d366;
    border-radius: 0;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.svc-wa-btn:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ---- Sidebar ---- */
.svc-sidebar-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

/* Contact Card */
.svc-contact-card {
    background: #fff;
}

.svc-sidebar-header {
    background: linear-gradient(135deg, #4a4c70 0%, #20212B 100%);
    padding: 26px 24px 20px;
    text-align: center;
    color: #fff;
}

.svc-sidebar-header i {
    font-size: 32px;
    color: #FDBE33;
    margin-bottom: 10px;
    display: block;
}

.svc-sidebar-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.svc-sidebar-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.svc-sidebar-contact {
    list-style: none;
    margin: 0;
    padding: 20px 22px;
}

.svc-sidebar-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}

.svc-sidebar-contact li:last-child {
    border-bottom: none;
}

.svc-sidebar-contact li i {
    color: #FDBE33;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.svc-sidebar-contact li a,
.svc-sidebar-contact li span {
    color: #4a4c70;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
    line-height: 1.4;
}

.svc-sidebar-contact li a:hover {
    color: #FDBE33;
}

/* Services List */
.svc-services-list {
    background: #fff;
    padding: 0;
}

.svc-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #4a4c70, #20212B);
    padding: 16px 22px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-sidebar-title i {
    color: #FDBE33;
}

.svc-services-list ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.svc-services-list ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    color: #4a4c70;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.svc-services-list ul li a:hover {
    color: #4a4c70;
    background: rgba(253, 190, 51, 0.1);
    border-left-color: #FDBE33;
    padding-left: 26px;
}

.svc-services-list ul li a i {
    color: #FDBE33;
    font-size: 12px;
}

/* Trust Badge */
.svc-trust-card {
    background: #fff;
    padding: 28px 22px;
    text-align: center;
}

.svc-trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 190, 51, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.svc-trust-icon i {
    font-size: 28px;
    color: #FDBE33;
}

.svc-trust-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 8px;
}

.svc-trust-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 12px;
}

.svc-trust-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}

.svc-trust-stars i {
    color: #FDBE33;
    font-size: 14px;
}

.svc-trust-stars span {
    font-size: 13px;
    color: #777;
    margin-left: 4px;
}

/* ---- Related Services ---- */
.svc-related-section {
    background: #fffdf3;
    padding: 70px 0;
}

.svc-related-header {
    margin-bottom: 45px;
}

.svc-related-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.15);
    color: #4a4c70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.svc-related-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #4a4c70;
}

.svc-related-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.svc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(253, 190, 51, 0.18);
}

.svc-related-icon {
    width: 64px;
    height: 64px;
    background: rgba(253, 190, 51, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.svc-related-icon i {
    font-size: 28px;
    color: #4a4c70;
}

.svc-related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #4a4c70;
    margin-bottom: 10px;
}

.svc-related-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 16px;
}

.svc-related-card a {
    font-size: 14px;
    font-weight: 600;
    color: #4a4c70;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.svc-related-card a:hover {
    color: #FDBE33;
}

.svc-related-card a i {
    font-size: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .svc-detail-img {
        height: 280px;
    }

    .svc-detail-title {
        font-size: 28px;
    }

    .svc-detail-section {
        padding: 50px 0 60px;
    }
}

@media (max-width: 767px) {
    .svc-detail-img {
        height: 220px;
    }

    .svc-detail-title {
        font-size: 24px;
    }

    .svc-detail-section {
        padding: 35px 0 45px;
    }

    .svc-detail-tagline {
        font-size: 15px;
    }

    .svc-detail-cta {
        flex-direction: column;
    }

    .svc-detail-cta .btn {
        width: 100%;
        text-align: center;
    }

    .svc-related-section {
        padding: 45px 0;
    }

    .svc-related-header h2 {
        font-size: 24px;
    }
}

/* ===================================================
   CTA Section — Homepage
   =================================================== */
.cta-section {
    position: relative;
    background: url('../imgs/10.png') center center / cover no-repeat;
    padding: 90px 0;
    overflow: hidden;
}

/* Decorative glow accents over image */
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 190, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(253, 190, 51, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 50, 0.82);
    pointer-events: none;
    z-index: 1;
}

/* Left Side */
.cta-left {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.15);
    color: #FDBE33;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
    border: 1px solid rgba(253, 190, 51, 0.3);
}

.cta-tag i {
    font-size: 12px;
}

.cta-heading {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-heading span {
    color: #FDBE33;
    position: relative;
}

.cta-heading span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(253, 190, 51, 0.4);
    border-radius: 2px;
}

.cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

/* Trust Badges */
.cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.cta-badge-item i {
    color: #FDBE33;
    font-size: 13px;
}

/* Right Side — Card */
.cta-right {
    position: relative;
    z-index: 2;
}

.cta-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #4a4c70;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-card-title i {
    color: #FDBE33;
}

.cta-card-sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

/* CTA Buttons */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn:last-of-type {
    margin-bottom: 0;
}

.cta-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cta-btn-text small {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.7;
}

.cta-btn-text strong {
    font-size: 15px;
    font-weight: 700;
}

/* Call Button */
.cta-btn-call {
    background: rgba(253, 190, 51, 0.08);
    border-color: rgba(253, 190, 51, 0.3);
    color: #4a4c70;
}

.cta-btn-call:hover {
    background: #FDBE33;
    border-color: #FDBE33;
    color: #20212B;
    box-shadow: 0 8px 25px rgba(253, 190, 51, 0.35);
}

.cta-btn-call .cta-btn-icon {
    background: rgba(253, 190, 51, 0.15);
    color: #4a4c70;
}

.cta-btn-call:hover .cta-btn-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #20212B;
}

/* WhatsApp Button */
.cta-btn-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
    color: #1a6e3a;
}

.cta-btn-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.cta-btn-whatsapp .cta-btn-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    font-size: 20px;
}

.cta-btn-whatsapp:hover .cta-btn-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Button */
.cta-btn-contact {
    background: rgba(74, 76, 112, 0.06);
    border-color: rgba(74, 76, 112, 0.2);
    color: #4a4c70;
}

.cta-btn-contact:hover {
    background: #4a4c70;
    border-color: #4a4c70;
    color: #fff;
    box-shadow: 0 8px 25px rgba(74, 76, 112, 0.3);
}

.cta-btn-contact .cta-btn-icon {
    background: rgba(74, 76, 112, 0.1);
    color: #4a4c70;
}

.cta-btn-contact:hover .cta-btn-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Bottom Note */
.cta-card-note {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-card-note i {
    color: #FDBE33;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 65px 0;
    }

    .cta-heading {
        font-size: 32px;
    }

    .cta-left {
        padding-right: 15px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-heading {
        font-size: 26px;
    }

    .cta-subtext {
        font-size: 14px;
    }

    .cta-card {
        padding: 26px 22px;
    }

    .cta-badges {
        gap: 8px;
    }

    .cta-badge-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 22px;
    }

    .cta-card {
        padding: 22px 16px;
    }

    .cta-btn {
        padding: 12px 14px;
        gap: 10px;
    }

    .cta-btn-text strong {
        font-size: 14px;
    }
}

/* ===================================================
   Video Tour Section & Slider — Homepage
   =================================================== */
.video-tour-section {
    background: #f9f9fb;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.video-tour-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 190, 51, 0.15);
    color: #4a4c70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.video-tour-heading {
    font-size: 38px;
    font-weight: 800;
    color: #4a4c70;
    line-height: 1.3;
    margin-bottom: 15px;
}

.video-tour-heading em {
    font-style: normal;
    color: #FDBE33;
}

.video-tour-text-main {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    max-width: 600px;
}

/* Video Card Slider */
.video-tour-carousel {
    margin-top: 40px;
    position: relative;
    padding-bottom: 40px;
    /* space for dots */
}

.video-card-item {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
}

.video-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.video-card-preview {
    position: relative;
    height: 320px;
    background: #20212B;
    overflow: hidden;
    border-radius: 16px;
}

.video-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.video-card-item:hover .video-card-img {
    transform: scale(1.06);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(32, 33, 43, 0.0) 30%, rgba(32, 33, 43, 0.65) 100%);
    z-index: 1;
}

/* Pulser play button on each slider card */
.video-card-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #FDBE33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(253, 190, 51, 0.5);
    animation: videoPulse 1.8s infinite;
    transition: all 0.3s ease;
}

.video-card-playbtn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #20212B;
    margin-left: 4px;
}

.video-card-playbtn:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-playbtn:hover::before {
    border-color: transparent transparent transparent #FDBE33;
}

.video-card-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(32, 33, 43, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.video-card-duration i {
    color: #FDBE33;
}

/* .video-card-content removed — cards are now visual-only thumbnails */

/* Custom styles for dots of the Owl Carousel slider */
.video-tour-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.video-tour-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #dddddd !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-tour-carousel .owl-dot.active {
    width: 25px;
    background: #FDBE33 !important;
    border-radius: 5px;
}

@keyframes videoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 190, 51, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(253, 190, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 190, 51, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .video-tour-section {
        padding: 60px 0;
    }

    .video-tour-heading {
        font-size: 32px;
    }

    .video-card-preview {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .video-tour-section {
        padding: 50px 0;
    }

    .video-tour-heading {
        font-size: 28px;
    }

    .video-tour-text-main {
        font-size: 14px;
    }

    .video-card-preview {
        height: 300px;
    }
}

/* Services Page Custom Styles */
.service-title-link {
    color: #4a4c70;
    text-decoration: none;
    transition: 0.3s;
}
.service-title-link:hover {
    color: #FDBE33;
    text-decoration: none;
}
.service-read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #FDBE33;
    text-decoration: none;
    transition: 0.3s;
}
.service-read-more:hover {
    color: #4a4c70;
    text-decoration: none;
    padding-left: 5px;
}
.service .service-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.service .service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Floating Contact Button Styles */
.floating-contact {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.floating-contact-trigger {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #FDBE33;
    color: #20212B;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(253, 190, 51, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.floating-contact-trigger::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FDBE33;
    opacity: 0.6;
    z-index: -1;
    animation: floating-pulse 2s infinite;
}

@keyframes floating-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.floating-contact-trigger .fa-times {
    display: none;
}

.floating-contact-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
}

.floating-call { background: #007bff; }
.floating-wa { background: #25D366; }
.floating-mail { background: #ea4335; }

.floating-contact-btn:hover {
    transform: scale(1.15);
}

.floating-label {
    position: absolute;
    left: 62px;
    background: #20212B;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.floating-label::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #20212B;
}

.floating-contact-btn:hover .floating-label {
    opacity: 1;
    transform: translateX(0);
}

.floating-contact:hover .floating-contact-menu,
.floating-contact.active .floating-contact-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.floating-contact:hover .floating-contact-trigger,
.floating-contact.active .floating-contact-trigger {
    background: #20212B;
    color: #FDBE33;
    transform: rotate(360deg);
    box-shadow: 0 5px 25px rgba(32, 33, 43, 0.4);
}

.floating-contact:hover .floating-contact-trigger::before,
.floating-contact.active .floating-contact-trigger::before {
    animation: none;
    opacity: 0;
}

.floating-contact:hover .floating-contact-trigger .fa-headset,
.floating-contact.active .floating-contact-trigger .fa-headset {
    display: none;
}

.floating-contact:hover .floating-contact-trigger .fa-times,
.floating-contact.active .floating-contact-trigger .fa-times {
    display: block;
}

/* Custom Header Logo Sizing and Responsiveness */
.navbar .navbar-brand img {
    height: 90px;
    max-height: 90px;
    margin-top: -25px;
    margin-bottom: -25px;
    transition: all 0.3s ease-in-out;
}

.navbar.nav-sticky .navbar-brand img {
    height: 80px;
    max-height: 80px;
    margin-top: -10px;
    margin-bottom: -10px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        height: 75px;
        max-height: 75px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}