:root {

    --sa-gold: #c89b3c;
    --sa-gold-light: #e2b95f;
    --sa-gold-dark: #8a6420;

    --sa-white: #ffffff;
    --sa-offwhite: #fafafa;

    --sa-text: #222222;
    --sa-gray: #363637;
    --sa-border: #ececec;

    --title-font: "Akshar", sans-serif;
    --body-font: "DM Sans", sans-serif;
    --style-font: "Shadows Into Light Two", cursive;

}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
}

body {
    font-family: var(--body-font);
}

.signature,
.handwritten {
    font-family: var(--style-font);
}

/* ===================================
HEADER WRAPPER
=================================== */



.sa-header-wrapper {
    position: relative;
}

.sa-header-wrapper.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

/* ===================================
TOPBAR
=================================== */

.sa-topbar {
    background: #b8892b;
    border-bottom: 1px solid var(--sa-border);
}

.sa-topbar-inner {
    padding: 8px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sa-topbar-left,
.sa-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sa-topbar-left a,
.sa-topbar-right a {
    color: var(--sa-offwhite);
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.sa-topbar-left a:hover,
.sa-topbar-right a:hover {
    color: #fff;
}

.sa-topbar-left i {
    color: #ffffff;
    margin-right: 8px;
}

.sa-topbar-right i {
    font-size: 15px;
}

/* ===================================
NAVBAR
=================================== */

.sa-navbar-area {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    padding: 8px 0;
    transition: .4s;
}

.sa-navbar-area.sa-nav-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    top: 0;
}

.sa-navbar-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--sa-border);
}

.sa-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===================================
LOGO
=================================== */

.sa-logo-wrap {
    display: flex;
    align-items: center;
}

.sa-logo-wrap img {
    width: 260px;
}

/* ===================================
DESKTOP MENU
=================================== */

.sa-desktop-menu .nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.sa-desktop-menu .nav-list .nav-item {
    position: relative;
}

.sa-desktop-menu .nav-list .nav-item a {
    text-decoration: none;
    color: var(--sa-text);
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

.sa-desktop-menu>.nav-list>.nav-item>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 0;
    height: 2px;
    background: var(--sa-gold);
    transition: .4s;
}

.sa-desktop-menu>.nav-list>.nav-item>a:hover {
    color: var(--sa-gold);
}

.sa-desktop-menu>.nav-list>.nav-item>a:hover::after {
    width: 100%;
}

/* ===================================
HEADER ACTIONS
=================================== */

.sa-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===================================
QUOTE BUTTON
=================================== */

.sa-quote-btn {
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg,
            var(--sa-gold-dark),
            var(--sa-gold),
            var(--sa-gold-light));
    transition: .4s;
}

.sa-quote-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 155, 60, .25);
}

/* ===================================
MOBILE BUTTON
=================================== */

.sa-mobile-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg,
            var(--sa-gold-dark),
            var(--sa-gold));
    transition: .3s;
}

.sa-mobile-toggle:hover {
    transform: translateY(-2px);
}

/* ===================================
OFFCANVAS
=================================== */

.sa-mobile-offcanvas {
    background: #ffffff;
    width: 320px !important;
}

.sa-mobile-logo {
    max-height: 60px;
}

.sa-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sa-mobile-nav li {
    margin-bottom: 8px;
}

.sa-mobile-nav li a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--sa-text);
    font-weight: 600;
    border-bottom: 1px solid #f2f2f2;
    transition: .3s;
}

.sa-mobile-nav li a:hover {
    color: var(--sa-gold);
    padding-left: 10px;
}

.sa-mobile-contact {
    margin-top: 30px;
}

.sa-mobile-contact a {
    display: block;
    text-decoration: none;
    color: var(--sa-gray);
    margin-bottom: 15px;
}

.sa-mobile-contact i {
    color: var(--sa-gold);
    width: 22px;
}

.sa-mobile-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    margin-top: 25px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg,
            var(--sa-gold-dark),
            var(--sa-gold),
            var(--sa-gold-light));
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:991px) {

    .sa-topbar {
        display: none;
    }

    .sa-desktop-menu {
        display: none;
    }

    .sa-quote-btn {
        display: none;
    }

    .sa-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sa-navbar-inner {
        min-height: 85px;
    }

    .sa-logo-wrap img {
        max-height: 55px;
    }

}

@media(max-width:575px) {

    .sa-navbar-inner {
        min-height: 75px;
    }



    .sa-mobile-toggle {
        width: 46px;
        height: 46px;
    }

}

#saHeroSlider {
    position: relative;
    overflow: hidden;
    padding: 60px 0 60px;
    background: url(../img/bg-pattern.png);
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.sa-full-content {
    color: #fff;
    position: absolute;
    max-width: 500px;
    left: 10%;
    top: 0;
    display: flex;
    align-items: center;
    bottom: 0;

}

@media screen and (max-width:768px) {
    .sa-full-content {
        padding: 0px 10px;
        left: 0;
    }
}

.carousel-item {
    padding-top: 80px;
}

.sa-hero-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #fff7e7;
    color: var(--sa-gold-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.sa-hero-section h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 600;
    color: #222;
    margin: 25px 0;
}

.sa-hero-section p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

.sa-hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.sa-btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            var(--sa-gold-dark),
            var(--sa-gold));

    border: 2px solid var(--sa-gold);
    color: #fff;
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;

    transition: all .4s ease;
}

.sa-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);

    transition: .6s;
}

.sa-btn-primary:hover {
    color: #fff;
    background: var(--sa-text);
    border-color: var(--sa-text);

    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.sa-btn-primary:hover::before {
    left: 120%;
}

.sa-btn-outline {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--sa-gold);
    color: var(--sa-gold);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;

    transition: all .4s ease;
}

.sa-btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);

    transition: .6s;
}

.sa-btn-outline:hover {
    background: linear-gradient(135deg,
            var(--sa-gold-dark),
            var(--sa-gold));

    border-color: var(--sa-gold);
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(200, 155, 60, .25),
        0 6px 15px rgba(0, 0, 0, .08);
}

.sa-btn-outline:hover::before {
    left: 120%;
}

.sa-hero-image {
    text-align: center;
}

.sa-hero-image img {
    max-width: 100%;

}




.sa-slider-arrow {
    width: 70px;
    opacity: 1;
}

.sa-slider-arrow span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c89b3c;
    border-radius: 50%;
    background: #fff;

    color: var(--sa-gold);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s;
}

.sa-slider-arrow span:hover {
    background: var(--sa-gold);
    color: #fff;
    transform: scale(1.08);
}


.sa-slider-dots {
    bottom: 40px;
}

.sa-slider-dots button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background: #d4d4d4 !important;
}

.sa-slider-dots .active {
    background: var(--sa-gold) !important;
    transform: scale(1.3);
}



.sa-about-section {
    padding: 60px 0;
    background: #fffaef;
}

.sa-about-image-wrap {
    position: relative;
    padding-right: 50px;
}

.sa-about-main-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.sa-about-floating-image {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 220px;
}

.sa-about-floating-image img {
    width: 100%;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.sa-about-exp-box {
    position: absolute;
    left: -20px;
    bottom: 30px;

    background: linear-gradient(135deg,
            var(--sa-gold-dark),
            var(--sa-gold));

    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
}

.sa-about-exp-box h3 {
    font-size: 42px;
    margin: 0;
}

.sa-section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: #fff7e7;
    color: var(--sa-gold-dark);
    font-weight: 600;
}

.sa-about-content h2 {
    font-size: 42px;

    margin: 18px 0 20px;
    color: var(--sa-text);
    font-weight: 600;
}

.sa-about-content p {
    color: var(--sa-gray);
    margin-bottom: 30px;
}

.sa-about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.sa-feature-item {
    width: calc(50% - 8px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: .3s;
}

.sa-feature-item:hover {
    border-color: var(--sa-gold);
    transform: translateY(-3px);
}

.sa-feature-item i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7e7;
    color: var(--sa-gold);
}

.sa-feature-item span {
    font-weight: 600;
    color: var(--sa-text);
}

@media(max-width:576px) {

    .sa-feature-item {
        width: 100%;
    }

    .sa-about-content h2 {
        font-size: 32px;
    }

}

.sa-dropdown-parent {
    position: relative;
}

.sa-dropdown-parent>a i {
    font-size: 12px;
    transition: .3s;
}

.sa-dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 260px;

    background: #fff;



    padding: 15px 0;

    list-style: none;

    margin: 0;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .10);



    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .35s ease;

    z-index: 999;
}

.sa-dropdown-parent:hover .sa-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sa-dropdown-parent:hover>a i {
    transform: rotate(180deg);
}

.sa-dropdown-menu li {
    width: 100%;
}

.sa-dropdown-menu li a {
    display: block;
    align-items: center;

    padding: 8px 22px;

    color: var(--sa-text);

    text-decoration: none;

    font-weight: 500;

    transition: .3s;
}

.sa-dropdown-menu li a::before {
    content: "";
    width: 0;
    height: 2px;

    background: var(--sa-gold);

    margin-right: 0;

    transition: .3s;
}

.sa-dropdown-menu li a:hover {
    background: #faf8f2;
    color: var(--sa-gold-dark);
    padding-left: 28px;
}

.sa-dropdown-menu li a:hover::before {
    width: 15px;
    margin-right: 10px;
}

.sa-submenu-parent {
    position: relative;
}

.sa-submenu-parent>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sa-submenu-parent>a i {
    font-size: 12px;
}

.sa-submenu {
    position: absolute;
    top: 0;
    left: 100%;

    min-width: 220px;

    background: #fff;



    padding: 15px 0;

    list-style: none;

    margin: 0;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);



    opacity: 0;
    visibility: hidden;

    transform: translateX(15px);

    transition: .35s ease;

    z-index: 9999;
}

.sa-submenu-parent:hover .sa-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sa-products-section {
    padding: 60px 0;
    background: #fff;
}

.sa-products-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sa-products-heading h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--sa-text);
    margin: 18px 0;
}

.sa-products-heading p {
    color: var(--sa-gray);
    line-height: 1.8;
}

.sa-product-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: .4s;
}

.sa-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--sa-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}




@media(max-width:991px) {



    .sa-products-heading h2 {
        font-size: 36px;
    }

}

@media(max-width:576px) {

    .sa-products-heading h2 {
        font-size: 30px;
    }



}


.product-collage {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 20px;
    overflow: hidden;
}

.item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

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

.item1 {
    grid-row: 1 / 3;
}


.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .product-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item {
        height: 200px;
    }
}


/* ===========================
   QUALITY CTA
=========================== */

.sa-quality-cta {
    position: relative;
    padding: 60px 0;
    background: #fffaef;
    overflow: hidden;
}


.sa-quality-content {
    position: relative;
    z-index: 2;
}

.sa-quality-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(200, 155, 60, .12);
    color: var(--sa-gold-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sa-quality-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--sa-text);
    margin-bottom: 25px;
}

.sa-quality-title span {
    color: var(--sa-gold);
}

.sa-quality-desc {
    font-size: 15px;

    color: var(--sa-gray);
    margin-bottom: 35px;
}

.sa-quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.sa-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--sa-text);
}

.sa-feature i {
    color: var(--sa-gold);
    font-size: 18px;
}

.sa-quality-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}



.sa-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 34px;
    border: 2px solid var(--sa-gold);
    color: var(--sa-gold);
    font-weight: 600;
    border-radius: 60px;
    transition: .35s;
}

.sa-btn-secondary:hover {
    background: var(--sa-gold);
    color: #fff;
}

/* Image Side */

.sa-quality-image-wrap {
    position: relative;
}

.sa-quality-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
}

.sa-quality-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.sa-quality-card:hover img {
    transform: scale(1.1);
}

.sa-floating-badge {
    position: absolute;
    background: var(--sa-white);
    padding: 14px 18px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    font-weight: 600;
    color: var(--sa-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sa-floating-badge i {
    color: var(--sa-gold);
}

.badge-1 {
    top: 30px;
    left: 30px;
}

.badge-2 {
    bottom: 30px;
    right: 30px;
}

/* Responsive */

@media(max-width:991px) {



    .sa-quality-title {
        font-size: 40px;
    }

    .sa-quality-card img {
        height: 500px;
    }
}

@media(max-width:767px) {

    .sa-quality-title {
        font-size: 32px;
    }

    .sa-quality-features {
        grid-template-columns: 1fr;
    }

    .sa-quality-btns {
        flex-direction: column;
    }



    .sa-quality-card img {
        height: 400px;
    }

    .sa-quality-badge {
        padding: 10px 15px;
        font-size: 12px;
    }

    .sa-quality-desc {
        font-size: 14px;
    }

    .sa-services-title {
        font-size: 35px !important;
    }

    .sa-faq-content {
        padding-left: 0px !important;
    }

    .cta-img img {
        height: 400px;
        object-fit: cover;
    }

    .cta-content {
        left: 10px !important;
        right: 10px !important;
    }

    .sa-faq-image-wrap {
        max-width: 323px;
    }

    .sa-about-image-wrap {
        padding-right: 0px;
    }
}




/* ......................services css ......................  */

/* ===========================
   SERVICES SECTION
=========================== */

.sa-services-sec {
    position: relative;
    padding: 60px 0 30px;
    background:
        #fff;
    overflow: hidden;
}

/* .sa-services-sec::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(200,155,60,.06);
    left:-200px;
    top:-180px;
} */

.sa-services-heading {
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.sa-services-subtitle {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(200, 155, 60, .12);
    color: var(--sa-gold-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sa-services-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--sa-text);
    margin-bottom: 20px;
}

.sa-services-title span {
    color: var(--sa-gold);
}

.sa-services-heading p {
    color: var(--sa-gray);
    font-size: 17px;
    line-height: 1.8;
}

/* CARD */

.sa-service-card {
    position: relative;
    background: #f9f9f9;
    padding: 25px 25px;
    border-radius: 30px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(200, 155, 60, .25);

    height: 100%;

}

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding: 20px 0px;

}

.sa-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--sa-gold-dark),
            var(--sa-gold),
            var(--sa-gold-light));
}

.sa-service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 15px 10px rgba(0, 0, 0, .12);
}

.sa-service-icon {
    width: 85px;
    height: 85px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--sa-gold-dark), var(--sa-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sa-service-icon i {
    color: #fff;
    font-size: 34px;
}

.sa-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sa-text);
    margin-bottom: 15px;
}

.sa-service-card p {
    color: var(--sa-text);
    line-height: 1.8;
    margin: 0;
}

.sa-service-count {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 70px;
    font-weight: 800;
    color: rgba(200, 155, 60, .08);
    line-height: 1;
}

/* OWL */

.sa-services-slider .owl-stage {
    display: flex;
}

.sa-services-slider .owl-item {
    display: flex;
}

.sa-services-slider .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.sa-services-slider .owl-prev,
.sa-services-slider .owl-next {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 2px solid var(--sa-gold) !important;
    color: var(--sa-gold) !important;
    margin: 0 8px;
    transition: .3s;
}

.sa-services-slider .owl-prev:hover,
.sa-services-slider .owl-next:hover {
    background: var(--sa-gold) !important;
    color: #fff !important;
}

.sa-services-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.sa-services-slider .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ddd !important;
}

.sa-services-slider .owl-dot.active span {
    width: 35px;
    border-radius: 20px;
    background: var(--sa-gold) !important;
}


/* ==========================
   FAQ SECTION
========================== */

.sa-faq-section {
    padding: 100px 0;
    background: var(--sa-offwhite);
    overflow: hidden;
}

.sa-faq-image-wrap {
    position: relative;
    max-width: 450px;
    margin: auto;
}

.sa-faq-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(237, 171, 30, 0.4);
    border-radius: 50%;
    transform: scale(1.08);
}

.sa-faq-circle-two {
    transform: scale(1.15);
    border-radius: 250px;
    /* opacity:.7; */
}

.sa-faq-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 15px;
    /* border-radius:250px; */
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.sa-faq-image img {
    width: 100%;
    /* height:600px; */
    object-fit: cover;
    display: block;
}

.sa-faq-subtitle {
    display: inline-block;
    color: var(--sa-gold);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.sa-faq-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--sa-text);
    margin-bottom: 35px;
}

.sa-faq-title span {
    color: var(--sa-gold);
}

.sa-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.sa-faq-accordion .accordion-button {
    background: #fff;
    color: var(--sa-text);
    font-size: 17px;
    font-weight: 600;
    padding: 22px 25px;
    box-shadow: none;
}

.sa-faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--sa-gold-dark);
}

.sa-faq-accordion .accordion-button::after {
    background-size: 18px;
}

.sa-faq-accordion .accordion-body {
    background: #fff;
    color: var(--sa-gray);
    line-height: 1.9;
    padding: 0 25px 25px;
}

.sa-faq-accordion .accordion-button:focus {
    box-shadow: none;
}

@media(max-width:991px) {

    .sa-faq-title {
        font-size: 34px;
    }

    .sa-faq-image {
        margin-bottom: 30px;
    }

}

@media(max-width:767px) {

    .sa-faq-section {
        padding: 70px 0;
    }

    .sa-faq-title {
        font-size: 28px;
    }

    .sa-faq-image img {
        height: 450px;
    }

}

.sa-faq-content {
    padding-left: 20px;
}

.cta-content h2 {
    font-size: 45px;
}

.cta-content h2 span {
    color: var(--sa-gold-dark);
}

.cta {
    position: relative;
}

.cta-content {
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
}

.flex-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sa-footer {
    position: relative;
    background: #111111;
    padding: 90px 0 0;
    overflow: hidden;
}

.sa-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/world-map.png) center center no-repeat;
    background-size: 90%;
    opacity: .19;
    pointer-events: none;
}

.sa-footer .container {
    position: relative;
    z-index: 2;
}

.sa-footer-logo img {
    max-height: 70px;
    margin-bottom: 25px;
}

.sa-footer-about p {
    color: #b7b7b7;
    line-height: 1.9;
    margin-bottom: 25px;
}

.sa-footer-social {
    display: flex;
    gap: 12px;
}

.sa-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    color: var(--sa-gold);
    text-decoration: none;
    transition: .35s;
}

.sa-footer-social a:hover {
    background: var(--sa-gold);
    color: #fff;
    transform: translateY(-4px);
}

.sa-footer-widget h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.sa-footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: var(--sa-gold);
}

.sa-footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sa-footer-widget ul li {
    margin-bottom: 14px;
}

.sa-footer-widget ul li a {
    color: #b7b7b7;
    text-decoration: none;
    transition: .3s;
}

.sa-footer-widget ul li a:hover {
    color: var(--sa-gold);
    padding-left: 6px;
}

.sa-footer-contact li {
    display: flex;
    gap: 14px;
    color: #b7b7b7;
    line-height: 1.8;
}

.sa-footer-contact li a {
    display: flex;
    gap: 14px;
    color: #b7b7b7;
    line-height: 1.8;
}

.sa-footer-contact i {
    color: var(--sa-gold);
    margin-top: 4px;
    min-width: 18px;
}

.sa-footer-bottom {
    margin-top: 70px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.sa-footer-bottom p {
    color: #999;
    text-align: center;
    margin: 0;
}

@media(max-width:991px) {


    .sa-footer {
        padding-top: 70px;
    }

    .sa-footer-widget h4 {
        margin-top: 10px;
    }


}


@media screen and (max-width:992px) {
    .sa-navbar-area {
        top: 0;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .sa-hero-image {
        margin-top: 30px;
    }
}

@media screen and (max-width:768px) {
    .sa-header-actions .sa-btn-primary {
        display: none;
    }

    .sa-hero-tag {
        padding: 8px 20px;
    }

    .sa-btn-primary {
        padding: 10px 20px;
    }

    .sa-hero-btns {
        margin-top: 20px;
        display: flex;
        gap: 20px;
    }

    .sa-slider-arrow {
        display: none;
    }

    .sa-about-content p {
        font-size: 14px;
        text-align: justify;
    }
}

.inner-banner {
    position: relative;
}

.inner-banner-content {
    position: absolute;
    top: 130px;
    left: 80px;
    right: 0;
    text-align: center;
}

.inner-banner-content h1 {
    font-size: 60px;
}

.breadcum ul {
    padding-left: 0px;
    list-style: none;


}

.breadcum ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.breadcum ul li a {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
}

.breadcum ul li span {
    padding: 5px 15px;
    background-color: #b8892b;
    border-radius: 20px;
    color: #fff;
}

.inner-banner img {
    min-height: 300px;
    object-fit: cover;
}


.sa-mission-vision-section {
    padding: 60px 0;
    background: #fff;
}

.sa-section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sa-section-heading span {
    display: inline-block;
    color: var(--sa-gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sa-section-heading p {
    color: #666;
    margin: 0;
}

.sa-mv-card {
    background: #fff;
    padding: 45px;
    height: 100%;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.sa-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--sa-gold-dark);
    transition: .4s;
}

.sa-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.sa-mv-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgb(255 247 231);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sa-mv-icon i {
    font-size: 30px;
    color: var(--sa-gold-dark);
}

.sa-mv-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sa-mv-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:768px) {

    .sa-mission-vision-section {
        padding: 70px 0;
    }

    .sa-section-heading h2 {
        font-size: 32px;
    }

    .sa-mv-card {
        padding: 30px;
    }
}


.sa-contact-area {
    padding: 60px 0;
    background: #fff;
}

.sa-section-title {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.sa-section-title span {

    font-weight: 600;
    text-transform: uppercase;
}

.sa-section-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
}

.sa-contact-info,
.sa-enquiry-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    height: 100%;
}

.sa-contact-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.sa-contact-card .icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    background: #fff7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--sa-gold-dark);
}

.sa-contact-card h5 {
    margin-bottom: 5px;
}

.sa-contact-card a,
.sa-contact-card p {
    color: #666;
    text-decoration: none;
    margin: 0;
}

.sa-social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.sa-social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7e7;
    color: var(--sa-gold-dark);
    transition: .4s;
    text-decoration: none;
}

.sa-social-links a:hover {
    transform: translateY(-5px);
}

.sa-enquiry-form h3 {
    margin-bottom: 25px;
    font-weight: 700;
}

.form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

textarea.form-control {
    height: auto;
}

.sa-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.sa-map-section iframe {
    display: block;
}


.sa-product-tabs-section {
    padding: 60px 0;
    background: #fff;
}

.sa-product-header {
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.sa-product-header span {
    color: var(--sa-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-product-header h2 {
    font-size: 48px;
    margin: 15px 0;
    color: var(--sa-text);
    font-family: var(--title-font);
}

.sa-product-header p {
    color: var(--sa-gray);
}

.sa-product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.sa-tab-btn {
    border: none;
    background: #fff;
    border: 1px solid var(--sa-border);
    padding: 10px 10px;
    border-radius: 5px;
    font-weight: 600;
    transition: .4s;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.sa-tab-btn.active {
    background: var(--sa-gold-light);
    color: #fff;
    border-color: var(--sa-gold);
}

.sa-tab-content {
    display: none;
}

.sa-tab-content.active {
    display: block;
}

.sa-product-image {
    position: relative;
}

.sa-product-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

.sa-product-content {
    padding-left: 40px;
}

.sa-product-tag {
    display: inline-block;
    background: rgba(200, 155, 60, .12);
    color: var(--sa-gold-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.sa-product-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--sa-text);
    font-family: var(--title-font);
}

.sa-product-content p {
    color: var(--sa-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

@media(max-width:991px) {

    .sa-product-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .sa-product-header h2 {
        font-size: 36px;
    }

}



.sa-service-section {
    padding: 100px 0;
    background: #fff;
}

.sa-service-image {
    height: 100%;
}

.sa-service-image img {
    width: 100%;
    border-radius: 25px;
    height: 100%;
    object-fit: cover;
}

.sa-service-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sa-service-box {
    display: flex;
    gap: 25px;
    padding: 20px;
    border: 1px solid var(--sa-border);
    border-radius: 24px;
    background: #fff;
    transition: .4s;
}

.sa-service-box:hover {
    transform: translateY(-5px);
    border-color: var(--sa-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.sa-service-icon-inner {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(200, 155, 60, .10);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-service-icon-inner img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sa-service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--sa-text);
}

.sa-service-content p {
    margin: 0;
    font-size: 14px;
    color: var(--sa-gray);
}

@media(max-width:991px) {

    .sa-service-image img {
        height: 350px;
    }

    .sa-service-box {
        flex-direction: column;
        text-align: center;
    }

    .sa-service-icon {
        margin: auto;
    }

}




.sa-services-area {
    padding: 100px 0;
}

.sa-sticky-image {
    position: sticky;
    top: 100px;

    border-radius: 30px;
    overflow: hidden;
}

.sa-sticky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease;
}

.sa-service-section {
    margin-bottom: 20px;
}

.sa-service-heading {
    margin-bottom: 35px;
}

.sa-service-heading span {
    color: var(--sa-gold);
    font-weight: 600;
    text-transform: uppercase;
}

.sa-service-heading h2 {
    font-size: 42px;
    margin-top: 10px;
}

.sa-service-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sa-service-box {
    display: flex;
    gap: 25px;
    padding: 25px;
    border: 1px solid var(--sa-border);
    border-radius: 24px;
    background: #fff;
    transition: .4s;
}

.sa-service-box:hover {
    transform: translateY(-5px);
    border-color: var(--sa-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.sa-service-icon-inner {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(200, 155, 60, .1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-service-icon-inner img {
    width: 45px;
}

.sa-service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.sa-service-content p {
    margin: 0;
    color: var(--sa-gray);
}

@media(max-width:991px) {

    .sa-sticky-image {
        position: relative;
        height: 350px;
        top: 0;
        margin-bottom: 40px;
    }

}


.sa-mobile-image {
    display: none;
}

@media(max-width:991px) {

    .sa-sticky-image {
        display: none;
    }

    .sa-mobile-image {
        display: block;
        margin-bottom: 25px;
    }

    .sa-mobile-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 20px;
    }

    .sa-service-section {
        padding: 40px 0px;
    }

    .g-5 {
        --bs-gutter-x: 0rem;
    }

}

/* Floating Contact Buttons */
.smh-floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.smh-float-whatsapp {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    transition: all .3s ease;
}

.smh-float-whatsapp {
    background: #25D366;
}


.smh-float-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
}

/* Pulse Animation */

.smh-float-whatsapp::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
}

@media(max-width:767px) {
    .smh-floating-contact {
        right: 15px;
        bottom: 15px;
    }


    .smh-float-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }


}

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

.sa-full-banner {
    top: 0;
    bottom: 0;
    padding-top: 0px !important;
}

.sa-full-banner img {
    min-height: 500px;
    object-fit: cover;
}




.sa-golden-enquiry-trigger {
    background: linear-gradient(135deg, var(--sa-gold-dark), var(--sa-gold));
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: .35s ease;
}

.sa-golden-enquiry-trigger:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 24px rgba(143, 107, 18, .28);
}

.sa-golden-modal-wrap {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}

.sa-golden-modal-header {
    position: relative;
    text-align: center;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--sa-gold-dark), var(--sa-gold));
}

.sa-golden-modal-header h3 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 24px;
    font-weight: 700;
}

.sa-golden-modal-header p {
    color: #fff7d6;
    margin: 0;
    font-size: 13px;
}

.sa-golden-close-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    filter: brightness(10);
    opacity: 1;
}

.sa-golden-modal-body {
    padding: 22px 24px 24px;
}

.sa-golden-field-group {
    margin-bottom: 12px;
}

.sa-golden-input-field {
    width: 100%;
    height: 46px;
    border: 1px solid #e7e0cf;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    transition: .25s;
    outline: none;
    background: #fff;
}

.sa-golden-textarea {
    height: 96px;
    resize: none;
    padding-top: 12px;
}

.sa-golden-input-field:focus {
    border-color: var(--sa-gold);
    box-shadow: 0 0 0 3px rgba(216, 178, 74, .14);
}

.sa-golden-submit-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sa-gold-dark), var(--sa-gold));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: .35s;
}

.sa-golden-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(143, 107, 18, .28);
}

.modal {
    z-index: 1111111;
}