:root {
    --primary-color: #ff9f14;
    --dark-color   : #8c5133;
    --text-color   : #7A736A;
    --light-bg     : #F9F7F5;
    --white        : #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color      : var(--dark-color);
}

.top-bar {
    position        : relative;
    z-index         : 0;
    color           : #fff;
    padding         : 8px 0;
    font-size       : 14px;
    overflow        : hidden;
    min-height      : 40px;
    background-color: var(--dark-color);
    /* ensures visibility */
}


/* progress bottom to top start here  */
.progress-wrap {
    position     : fixed;
    right        : 30px;
    bottom       : 40px;
    height       : 35px;
    width        : 35px;
    cursor       : pointer;
    display      : block;
    border-radius: 50px;
    box-shadow   : inset 0 0 0 2px rgba(0, 0, 0, 0.20);
    z-index      : 99;
    opacity      : 0;
    visibility   : hidden;
    transition   : all 200ms linear;
    transform    : translateY(15px);
}

.progress-wrap::after {
    position   : absolute;
    content    : '\f176';
    font-family: "Font Awesome 5 Free";
    text-align : center;
    line-height: 35px;
    font-size  : 13px;
    color      : var(--dark-color);
    left       : 0;
    top        : 0;
    height     : 35px;
    width      : 35px;
    cursor     : pointer;
    display    : block;
    font-weight: 700;
    z-index    : 1;
    transition : all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke      : var(--primary-color);
    stroke-width: 4;
    box-sizing  : border-box;
    transition  : all 200ms linear;
}

.progress-wrap.active-progress {
    opacity   : 1;
    visibility: visible;
    transform : translateY(0);
}

.progress-wrap.style2::after {
    color: var(--primary-color);
}

.progress-wrap.style2 svg.progress-circle path {
    stroke: var(--primary-color);
}

.progress-wrap.style3::after {
    color: var(--dark-color);
}

.progress-wrap.style3 svg.progress-circle path {
    stroke: var(--dark-color);
}

.progress-wrap svg.progress-circle path {
    stroke          : var(--primary-color);
    stroke-width    : 4;
    box-sizing      : border-box;
    transition      : stroke-dashoffset 50ms linear;
    stroke-dasharray: 307.919;

    stroke-dashoffset: 307.919;

}

.top-bar::before {
    content         : "";
    position        : absolute;
    top             : 0;
    left            : 0;
    height          : 100%;
    width           : 627px;
    background-color: #000000;
    /* safer */
    clip-path       : polygon(0 19%, 0 0, 38% 0%, 71% 0%, 100% 0, 100% 0, 94% 106%, 100% 104%, 100% 29%, 100% 100%, 0 100%, 0 48%);
    z-index         : -1;
}



.top-contact a {
    color          : #fff;
    text-decoration: none;
    margin-right   : 20px;
    transition     : color 0.3s;
    font-weight    : 600;
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-social a {
    color      : #fff;
    margin-left: 15px;
    transition : color 0.3s;

}

.top-social a:hover {
    color: var(--primary-color);
}

.navbar {

    /* background: transparent; */

    padding: 0;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* background             : rgba(255, 255, 255, 0.15); */

    background-color: #2d1c06;

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;
    /* transparent white */

    backdrop-filter: blur(10px);
    /* glass blur effect */

    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
}

/* .navbar::before {
    content         : "";
    position        : absolute;
    top             : 0;
    left            : 0;
    height          : 100%;
    width           : 100%;
    background-color: rgb(255 255 255 / 100%);
    z-index         : -1;
} */

.navbar-brand img {
    width: 239px;
}

.navbar-nav {
    padding-bottom: 12px;
}

.nav-link {
    color      : var(--white);
    font-weight: 600;
    font-size  : 17px;
    margin     : 0 10px;
    position   : relative;
    transition : color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content         : '';
    position        : absolute;
    width           : 0;
    height          : 2px;
    bottom          : 0;
    left            : 0;
    background-color: var(--primary-color);
    transition      : width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Main Quote Button Style */
.quote-btn {
    display       : inline-block;
    vertical-align: middle;

    border          : none;
    outline         : none !important;
    background-color: #ff9f14;
    color           : #ffffff;
    font-size       : 15px;
    font-weight     : 700;
    font-family     : "DM Sans", sans-serif;
    padding         : 20px 20.5px;
    transition      : 500ms;
    text-transform  : uppercase;
    cursor          : pointer;
    position        : relative;
    overflow        : hidden;
    text-align      : center;
    padding-right   : 75px;
    line-height     : 1;
    z-index         : 1;
    text-decoration : none;
}

.quote-btn::before,
.quote-btn::after {
    content         : "";
    background-color: #2B1E16;
    height          : 50%;
    width           : 0;
    position        : absolute;
    transition      : 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index         : -1;
}

.quote-btn::before {
    top  : 0;
    left : 0;
    right: auto;
}

.quote-btn::after {
    bottom: 0;
    right : 0;
    left  : auto;
}

.quote-btn:hover::before {
    width: 100%;
    right: 0;
    left : auto;
}

.quote-btn:hover::after {
    width: 100%;
    left : 0;
    right: auto;
}

.quote-btn span {
    position: relative;
    top     : 1px;
    color   : inherit;
}

.quote-btn i {
    position  : relative;
    position  : absolute;
    top       : 50%;
    right     : 20px;
    transform : translateY(-50%);
    font-size : 17.88px;
    color     : inherit;
    transition: all 400ms ease;
}

.quote-btn i::after {
    content         : "";
    width           : 1px;
    height          : 100%;
    position        : absolute;
    top             : 50%;
    transform       : translateY(-50%);
    left            : -15px;
    background-color: rgba(255, 255, 255, 0.3);
    transition      : all 400ms ease;
}

/* hero section slider start here  */
/* Hero Slider Styles */
.hero-slider {
    position  : relative;
    overflow  : hidden;
    height    : 80vh;
    min-height: 800px;
}

.hero-slider__item {
    position   : relative;
    height     : 80vh;
    min-height : 800px;
    display    : flex;
    align-items: center;
}

.hero-slider__bg {
    position           : absolute;
    top                : 0;
    left               : 0;
    width              : 100%;
    height             : 100%;
    background-size    : cover;
    background-position: center;
    transition         : transform 8s ease;
    transform          : scale(1.05);
}

.hero-slider__bg::after {
    content   : "";
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slider__wrapper {
    position             : relative;
    z-index              : 2;
    width                : 100%;
    max-width            : 1200px;
    margin               : 0 auto;
    padding              : 0 15px;
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 60px;
    align-items          : center;
}



.hero-slider__content {
    max-width: 650px;
}

.hero-slider__tagline {
    font-size       : 18px;
    color           : var(--primary-color);
    margin-bottom   : 15px;
    text-transform  : uppercase;
    letter-spacing  : 3.2px;
    font-weight     : 500;
    background-color: #ffffff34;
    padding         : 5px 5px;

}

.hero-slider__title {
    font-size: 42px;
    font-weight  : 700;
    line-height  : 1.1;
    color        : var(--white);
    margin-bottom: 30px;
}

.hero-slider__title span {
    display  : block;
    font-size: 60px;
}




.main-slider-two__image__one {
    position   : relative;
    width      : 100%;
    max-width  : 305px;
    margin-left: auto;
}



.main-slider-two__image__two {
    position: relative;
    position: absolute;
    right   : -77px;
    bottom  : -96px;
}


.main-slider-two__image__inner {
    width           : 100%;
    max-width       : 305px;
    height          : 244px;
    clip-path       : polygon(30% 0, 100% 0%, 68% 100%, 0% 100%);
    padding         : 10px 15px;
    background-color: var(--floens-white, #ffffff);
}

.main-slider-two__image__inner img {
    width     : 100%;
    display   : block;
    height    : 100%;
    clip-path : polygon(30% 0, 100% 0%, 68% 100%, 0% 100%);
    object-fit: cover;
}

.main-slider-two__tiles__title,
.main-slider-two__shape__title {
    position        : absolute;
    padding         : 2px 6px;
    border-radius   : 100px;
    display         : inline-block;
    font-size       : 12px;
    color           : var(--floens-base, #C7844F);
    line-height     : normal;
    text-transform  : uppercase;
    background-color: var(--floens-white, #ffffff);
}

.main-slider-two__tiles {
    position     : relative;
    position     : absolute;
    top          : -11px;
    right        : -57px;
    width        : 125px;
    height       : 51px;
    border-right : 1px solid var(--floens-white, #ffffff);
    border-bottom: 1px solid var(--floens-white, #ffffff);
    animation    : zumpBottom 2s linear infinite;
}

@keyframes zumpBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}





.main-slider-two__tiles__circle {
    display         : flex;
    align-items     : center;
    justify-content : center;
    position        : absolute;
    top             : -45px;
    right           : -21px;
    width           : 42px;
    height          : 42px;
    border-radius   : 50%;
    background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.4);
}

.main-slider-two__tiles__circle::after {
    content         : "";
    width           : 10px;
    height          : 10px;
    border-radius   : 50%;
    background-color: var(--floens-white, #ffffff);
}

.main-slider-two__tiles__title {
    top  : -76px;
    right: -48px;
}

.main-slider-two__shape {

    position   : absolute;
    left       : -115px;
    bottom     : -8px;
    width      : 159px;
    height     : 51px;
    border-top : 1px solid var(--floens-white, #ffffff);
    border-left: 1px solid var(--floens-white, #ffffff);
    animation  : zump 2s linear infinite;
}

@keyframes zump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}






.main-slider-two__shape__circle {
    display         : flex;
    align-items     : center;
    justify-content : center;
    position        : absolute;
    left            : -14px;
    bottom          : -33px;
    width           : 28px;
    height          : 28px;
    border-radius   : 50%;
    background-color: rgba(var(--floens-white-rgb, 255, 255, 255), 0.4);
}

.main-slider-two__shape__circle::after {
    content         : "";
    width           : 8px;
    height          : 8px;
    border-radius   : 50%;
    background-color: var(--floens-white, #ffffff);
}

.main-slider-two__shape__title {
    bottom: -76px;
    left  : -48px;
}

.main-slider-two .slick-active .main-slider-two__tagline,
.main-slider-two .slick-active .main-slider-two__title,
.main-slider-two .slick-active .main-slider-two__btn,
.main-slider-two .slick-active .main-slider-two__image {
    opacity  : 1;
    transform: translate(0);
}


.main-slider-two .hero-slider__slick-button {
    background-color: var(--floens-white2, #F2EEEA) !important;
}




/* Navigation Arrows */
.hero-slider__nav {
    position   : absolute;
    bottom     : 40px;
    left       : 50%;
    transform  : translateX(-50%);
    display    : flex;
    align-items: center;
    z-index    : 10;
}

.hero-slider__arrow {
    width          : 50px;
    height         : 50px;
    background     : rgba(255, 255, 255, 0.2);
    color          : var(--white);
    display        : flex;
    align-items    : center;
    justify-content: center;
    cursor         : pointer;
    transition     : all 0.3s ease;
    margin         : 0 10px;
    border-radius  : 50%;
}

.hero-slider__arrow:hover {
    background: var(--primary-color);
}



/* Counter */
.hero-slider__counter {
    position   : absolute;
    bottom     : 40px;
    left       : 40px;
    color      : var(--white);
    font-size  : 16px;
    font-weight: 600;
    z-index    : 10;
}



.hero-slider__counter span {
    color: var(--primary-color);
}

/* Owl Carousel Overrides */
.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-item.active .hero-slider__bg {
    transform: scale(1.1);
}

.owl-item.active .hero-slider__content {
    animation: fadeInUp 1s both;
}

.owl-item.active .hero-slider__image__one .hero-slider__image__inner img {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity  : 0;
        transform: translateY(50px);
    }

    to {
        opacity  : 1;
        transform: translateY(0);
    }
}


/* about section start here  */
.fix {
    background-color: #fefaf3;
}

.about-one {
    position        : relative;
    padding         : 130px 0 100px;
    background-color: #fefaf3;
    overflow        : hidden;
}

.about-one_ball {
    position         : absolute;
    right            : 7%;
    top              : 40%;
    width            : 220px;
    height           : 145px;
    background-repeat: no-repeat;
    background-size  : contain;
    opacity          : 1.1;
    z-index          : 0;
    animation        : moveLamp 6s ease-in-out infinite alternate;
}

.about-one_lamp {
    position         : absolute;
    left             : 5%;
    top              : 0;
    width            : 129px;
    height           : 273px;
    background-repeat: no-repeat;
    background-size  : contain;
    opacity          : 1.1;
    z-index          : 0;
    animation        : moveLamp 6s ease-in-out infinite alternate;
}

@keyframes moveLamp {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100px);
        /* adjust distance */
    }
}


.about-one_image-column {
    position     : relative;
    margin-bottom: 30px;
}

.about-one_image-outer {
    position     : relative;
    padding-right: 70px;
}

.about-one_image img {
    width        : 100%;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    padding-top: 10%;
}

.about-one_experiance {
    position       : absolute;
    right: 25px;
    bottom: -63px;
    width          : 211px;
    height         : 211px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    z-index        : 2;
}

.about-one_circle {
    position        : absolute;
    left            : 0;
    top             : 0;
    right           : 0;
    bottom          : 0;
    background-color: var(--color-six);
    border-radius   : 50%;
    opacity         : 1;
    animation       : circle 10s linear infinite;
    /* duration + infinite loop */
}

@keyframes circle {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.about-one_experiance span {
    position        : relative;
    width           : 85px;
    height          : 85px;
    display         : block;
    font-size       : 46px;
    font-weight     : 700;
    line-height     : 85px;
    text-align      : center;
    border-radius   : 50%;
    color           : var(--dark-color);
    background-color: var(--primary-color);
    z-index         : 1;
}

.about-one_content-column {
    position     : relative;
    margin-bottom: 30px;
}

.sec-title {
    margin-bottom: 30px;
}

.sec-title_title {
    color         : var(--primary-color);
    font-size     : 16px;
    font-weight   : 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom : 10px;
    display       : flex;
    align-items   : center;
}

.sec-title_title i {
    margin-right: 10px;
    font-size   : 24px;
}

.sec-title_heading {
    color        : #000;
    font-size    : 36px;
    font-weight  : 700;
    margin-bottom: 15px;
}

.sec-title_text {
    color        : var(--text-color);
    font-size    : 18px;
    margin-bottom: 25px;
}

.about-one_feature {
    position     : relative;
    margin-bottom: 25px;
}

.about-one_feature-inner {
    position    : relative;
    font-size   : 18px;
    font-weight : 600;
    line-height : 30px;
    padding-left: 65px;
    color       : var(--color-two);
}

.about-one_feature-icon {
    position   : absolute;
    left       : 0;
    top        : 0;
    line-height: 1em;
    font-size  : 46px;
    color      : var(--main-color);
}

.about-one_text {
    position     : relative;
    line-height  : 34px;
    font-size    : 18px;
    margin-bottom: 25px;
    color        : var(--text-color);
}

.about-one_list {
    position    : relative;
    list-style  : none;
    padding-left: 0;
}

.about-one_list li {
    position     : relative;
    font-size    : 18px;
    font-weight  : 500;
    margin-bottom: 18px;
    color        : var(--dark-color);
    padding-left : 30px;
}

.about-one_list li i {
    position    : absolute;
    left        : 0;
    top         : 50%;
    transform   : translateY(-50%);
    margin-right: 10px;
    color       : var(--main-color);
}

.about-one_button {
    position  : relative;
    margin-top: 28px;
}

.theme-btn {
    display         : inline-block;
    padding         : 15px 40px;
    background-color: var(--main-color);
    color           : var(--white);
    text-decoration : none;
    font-weight     : 600;
    border-radius   : 4px;
    text-transform  : uppercase;
    letter-spacing  : 1px;
    transition      : all 0.3s ease;
    border          : none;
    position        : relative;
    overflow        : hidden;
}

.theme-btn:hover {
    background-color: var(--dark-color);
    color           : var(--white);
}

.btn-wrap {
    position: relative;
    display : block;
}

.text-one,
.text-two {
    display   : block;
    transition: transform 0.3s ease;
}

.text-two {
    position: absolute;
    top     : 100%;
    left    : 0;
    width   : 100%;
}

.theme-btn:hover .text-one {
    transform: translateY(-100%);
}

.theme-btn:hover .text-two {
    transform: translateY(-100%);
}




/* mouse cursor start here  */
.cursor-outer {
    margin-inline-start: -12px;
    margin-top         : -12px;
    width              : 30px;
    height             : 30px;
    border             : 1px solid var(--primary-color);
    /* replace with your theme color */
    background-color   : var(--dark-color);
    /* replace with your theme color */
    box-sizing         : border-box;
    z-index            : 10000000;
    opacity            : 0.34;
    transition         : all 0.4s ease-out 0s;
    border-radius      : 50%;
}

.cursor-outer.cursor-hover {
    opacity: 0.14;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position          : fixed;
    top               : 0;
    inset-inline-start: 0;
    inset-inline-end  : 0;
    bottom            : 0;
    pointer-events    : none;
    border-radius     : 50%;
    transform         : translateZ(0);
    visibility        : hidden;
    text-align        : center;
}

.mouseCursor.cursor-big {
    width              : 20px;
    height             : 20px;
    margin-inline-start: -12px;
    margin-top         : -12px;
}

.cursor-inner {
    margin-inline-start: -3px;
    margin-top         : -3px;
    width              : 10px;
    height             : 10px;
    z-index            : 10000001;
    background-color   : var(--primary-color);
    /* replace with your theme color */
    opacity            : 1;
    transition         : all 0.24s ease-out 0s;
    border-radius      : 50%;
}

.cursor-inner span {
    color         : #333;
    /* replace with your text color */
    line-height   : 60px;
    opacity       : 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size     : 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    margin-inline-start: -10px;
    margin-top         : -10px;
    width              : 30px;
    height             : 30px;
    background-color   : var(--dark-color);
    /* replace with your theme color */
    border             : 1px solid var(--primary-color);
    opacity            : 0;
}


/* about end here  */
/* service section start here  */
.service-section {
    position        : relative;
    padding         : 40px 0;
    background-image: url('../images/tiles-bg.jpg');

    z-index              : 9;
    background-attachment: fixed;
}

.servive-slider {
    margin-right: -50%;
}

.service-section::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
    background: rgb(0 0 0 / 58%);
    z-index   : -1;
}

.section-title-area {
    margin-bottom: 50px;
}
.section-title-area h5{
    color: var(--primary-color);
}
.section-title {
    position: relative;
}

.section-title h6 {
    display       : flex;
    align-items   : center;
    color         : var(--primary-color);
    font-size     : 16px;
    font-weight   : 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom : 15px;
}

.section-title h6 img {
    margin-right: 10px;
    height      : 20px;
}

.section-title h3 {
    color        : var(--dark-color);
    font-size    : 48px;
    font-weight  : 700;
    line-height  : 1.2;
    margin-bottom: 20px;
}

.section-title p {
    color        : var(--white);
    font-size    : 18px;
    margin-bottom: 30px;
}

.theme-btn {
    display         : inline-flex;
    align-items     : center;
    padding         : 12px 30px;
    background-color: var(--primary-color);
    color           : var(--white);
    text-decoration : none;
    font-weight     : 600;
    border-radius   : 4px;
    text-transform  : uppercase;
    letter-spacing  : 1px;
    transition      : all 0.3s ease;
    border          : none;
}

.theme-btn:hover {
    background-color: var(--dark-color);
    color           : var(--white);
}

.theme-btn i {
    margin-left: 10px;
    transition : transform 0.3s ease;
}

.theme-btn:hover i {
    transform: translateX(5px);
}

/* Service Box Items */
.service-box-items {
    margin-top      : 30px;
    background-color: #F2EEEA;
    transition      : all 0.3s ease;
    height          : 510px;
}

.service-box-items:hover {
    transform : translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thumb {
    position: relative;
    overflow: hidden;
}

.thumb img {
    width     : 100%;
    height    : 250px;
    object-fit: cover;
    clip-path : polygon(0 0, 100% 0, 100% 76%, 0 100%, 0 100%, 0% 50%);
    transition: all 0.5s ease;
}

.service-box-items:hover .thumb img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 0% 50%);
    transform: scale(1.05);
}

.thumb .icon {
    width           : 56px;
    height          : 56px;
    line-height     : 56px;
    text-align      : center;
    background-color: var(--white);
    position        : absolute;
    top             : 30px;
    left            : 30px;
    border-radius   : 8px;
    display         : flex;
    align-items     : center;
    justify-content : center;
}

.thumb .icon i {
    font-size: 24px;
    color    : var(--primary-color);
}

.thumb .number {
    border-radius: 28px;
    background   : var(--white);
    box-shadow   : 0px 4px 60px 0px rgba(199, 132, 79, 0.20);
    width        : 42px;
    height       : 42px;
    line-height  : 42px;
    text-align   : center;
    font-size    : 16px;
    font-weight  : 700;
    color        : var(--primary-color);
    display      : inline-block;
    position     : absolute;
    bottom       : 55px;
    right        : 30px;
}

.service-content {
    padding: 12px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size    : 22px;
    font-weight  : 700;
}

.service-content h3 a {
    color          : var(--dark-color);
    text-decoration: none;
    transition     : all 0.3s ease;
}

.service-content h3 a:hover {
    color: var(--primary-color);
}

.service-content p {
    color        : var(--text-color);
    margin-bottom: 20px;
}

.service-content .theme-btn {
    width           : 100%;
    display         : flex;
    justify-content : space-between;
    padding         : 15px 20px;
    background-color: rgba(220, 53, 69, 0.06);
    color           : var(--dark-color);
}

.service-content .theme-btn:hover {
    background-color: var(--primary-color);
    color           : var(--white);
}

/* Owl Carousel Customization */
.owl-carousel .owl-stage {
    padding: 20px 0;
}



.owl-carousel .owl-nav {
    position: absolute;
    top     : -100px;
    right   : 0;
    display : flex;
    gap     : 10px;
}

.owl-carousel .owl-nav button {
    width          : 40px;
    height         : 40px;
    background     : var(--primary-color) !important;
    color          : var(--white) !important;
    border-radius  : 4px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: var(--dark-color) !important;
}



/* service section end here  */
.main-footer {
    position: relative;
    color   : var(--white);

}

.main-footer_bg {

    background-size    : cover;
    background-repeat  : no-repeat;
    background-position: center;
    background-image   : url('../images/footer-bg.jpg');

    background-position: center;


}

.main-footer_bg::after {
    content   : '';
    position  : absolute;
    left      : 0;
    top       : 0;
    width     : 100%;
    height    : 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index   : -1;
}

.widgets-section {
    position: relative;
    padding : 90px 0 60px;
}

.footer-column {
    position     : relative;
    margin-bottom: 30px;
}

.footer-logo {
    position     : relative;
    margin-bottom: 20px;
}

.footer-logo img {
    padding-top: 7px;
    max-width  : 280px;
    height     : auto;
}

.footer-text {
    position     : relative;
    line-height  : 28px;
    font-size    : 16px;
    margin-bottom: 25px;
    color        : var(--white);
}

.footer-title {
    position      : relative;
    margin-top    : 10px;
    margin-bottom : 20px;
    color         : var(--white);
    text-transform: capitalize;
    font-size     : 20px;
    font-weight   : 600;
}

.footer-list {
    position     : relative;
    list-style   : none;
    padding-left : 0;
    margin-bottom: 0;
}

.footer-list li {
    position     : relative;
    margin-bottom: 12px;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list li a {
    position       : relative;
    font-size      : 16px;
    padding-left   : 20px;
    text-transform : capitalize;
    color          : var(--white);
    text-decoration: none;
    transition     : all 300ms ease;
}

.footer-list li a::before {
    position        : absolute;
    content         : '';
    left            : 0;
    top             : 10px;
    width           : 8px;
    height          : 8px;
    transform       : rotate(45deg);
    background-color: var(--white);
    transition      : all 300ms ease;
}

.footer-list li a:hover {
    color: var(--primary-color);
}

.footer-list li a:hover::before {
    background-color: var(--dark-color);
}

.footer_socials {
    position   : relative;
    display    : flex;
    align-items: center;
    margin-top : 25px;
    gap        : 10px;
}

.footer_socials a {
    position        : relative;
    width           : 36px;
    height          : 36px;
    font-size       : 14px;
    line-height     : 36px;
    border-radius   : 50%;
    text-align      : center;
    display         : inline-block;
    color           : var(--white);
    background-color: var(--dark-color);
    text-decoration : none;
    transition      : all 300ms ease;
}

.footer_socials a:hover {
    color           : var(--dark-color);
    background-color: var(--white);
    transform       : translateY(-3px);
}

.contact-info {
    position  : relative;
    margin-top: 20px;
}

.contact-item {
    position     : relative;
    display      : flex;
    align-items  : flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    position       : relative;
    width          : 30px;
    height         : 30px;
    background     : var(--primary-color);
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin-right   : 15px;
    flex-shrink    : 0;
}

.contact-icon i {
    color    : var(--white);
    font-size: 14px;
}

.contact-details {
    position   : relative;
    color      : var(--white);
    font-size  : 15px;
    line-height: 1.5;
}

.contact-details a {
    color          : var(--white);
    text-decoration: none;
    transition     : all 300ms ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 10px 0px;
}

.copyright-text a {
    text-decoration: none;
    color          : var(--white);

}

.footer-bottom h6 {
    padding: 5px 0px;
}

/* service end here  */

/* testimonial start here  */
.testimonial-section {
    position        : relative;
    padding         : 100px 0;
    background-color: #fefaf3;
    overflow        : hidden;
}

.testimonial-bg {
    position           : absolute;
    left               : 0;
    bottom             : 0;
    right              : 0;
    height             : 242px;
    background-position: center bottom;
    background-repeat  : repeat-x;
    opacity            : 1.1;
}

.testimonial-icon {
    position         : absolute;
    right            : 5%;
    top              : 10%;
    width            : 284px;
    height           : 178px;
    background-size  : contain;
    background-repeat: no-repeat;
    opacity          : 1;
    animation        : floatUpDown 3s ease-in-out infinite;
}

/* Keyframes for up-down movement */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        /* moves up */
    }

    100% {
        transform: translateY(0);
        /* back to start */
    }
}


.testimonial-icon-two {
    position         : absolute;
    left             : 5%;
    top              : 10%;
    width            : 181px;
    height           : 181px;
    background-size  : contain;
    background-repeat: no-repeat;
    opacity          : 1.1;
    animation        : circle 6s linear infinite;

}

.sec-title {
    position        : relative;
    /* text-align   : center; */
    margin-bottom   : 60px;
}

.sec-title-tag {
    color          : var(--primary-color);
    font-size      : 16px;
    font-weight    : 600;
    text-transform : uppercase;
    letter-spacing : 1px;
    margin-bottom  : 15px;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.sec-title-tag i {
    margin-right: 10px;
    font-size   : 24px;
}

.sec-title-heading {
    color        : var(--dark-color);
    font-size    : 40px;
    font-weight  : 700;
    line-height  : 1.2;
    margin-bottom: 0;
}

/* Testimonial Card */
.testimonial-card {
    position     : relative;
    background   : var(--white);
    border-radius: 10px;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
    margin       : 15px;
    overflow     : hidden;
    transition   : all 0.3s ease;
}

.testimonial-card:hover {
    transform : translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-upper {
    position  : relative;
    padding   : 30px 30px 0;
    min-height: 160px;
}

.testimonial-author-outer {
    position        : absolute;
    left            : 30px;
    top             : -30px;
    width           : 164px;
    height          : 160px;
    padding-top     : 30px;
    border-radius   : 20px 0 20px 20px;
    background-color: var(--primary-color);
    display         : flex;
    align-items     : center;
    justify-content : center;
    /* background   : url(../images/pattern-8.png); */
}

.testimonial-author {
    position     : relative;
    width        : 99px;
    height       : 99px;
    border-radius: 50%;
    border       : 2px solid var(--white);
    overflow     : hidden;

}

.testimonial-author img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
}

.testimonial-author-content {
    position     : relative;
    padding      : 25px 30px 35px 190px;
    border-bottom: 1px solid #e7dacf;
}

.testimonial-author-content h4 {
    color        : var(--dark-color);
    font-size    : 20px;
    font-weight  : 600;
    margin-bottom: 5px;
}

.testimonial-designation {
    font-size: 15px;
    color    : var(--text-color);
}

.testimonial-quote {
    position    : absolute;
    right       : 40px;
    top         : 8px;
    font-size   : 55px;
    color       : var(--dark-color);
    /* opacity  : 0.2; */
}

.testimonial-lower {
    position: relative;
    padding : 40px 35px 50px;
}

.testimonial-text {
    font-size    : 16px;
    line-height  : 32px;
    color        : var(--text-color);
    margin-bottom: 20px;
}

.testimonial-rating {
    font-size: 18px;
    color    : var(--primary-color);
}

/* Owl Carousel Customization */
.testimonial-carousel .owl-stage {
    padding: 30px 0;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top     : -80px;
    right   : 0;
    display : flex;
    gap     : 10px;
}

.testimonial-carousel .owl-nav button {
    width          : 40px;
    height         : 40px;
    background     : var(--primary-color) !important;
    color          : var(--white) !important;
    border-radius  : 4px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : all 0.3s ease;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--dark-color) !important;
}

.testimonial-carousel .owl-dots {
    position  : relative;
    text-align: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dot {
    position        : relative;
    width           : 10px;
    height          : 10px;
    opacity         : 1;
    cursor          : pointer;
    margin          : 0 10px !important;
    display         : inline-block;
    border-radius   : 50px;
    border          : 2px solid transparent;
    transition      : all 300ms ease;
    background-color: var(--dark-color) !important;
}

.testimonial-carousel .owl-dot:before {
    position     : absolute;
    content      : '';
    left         : -8px;
    top          : -8px;
    right        : -8px;
    bottom       : -8px;
    opacity      : 0;
    border-radius: 50px;
    border       : 1px solid var(--primary-color);
}

.testimonial-carousel .owl-dot:hover,
.testimonial-carousel .owl-dot.active {
    opacity         : 1;
    background-color: var(--primary-color);
}

.testimonial-carousel .owl-dot:hover::before,
.testimonial-carousel .owl-dot.active::before {
    opacity     : 1;
    border-color: var(--primary-color);
}


/* testimonial end here  */


/* why choese us start here  */
.why-choose-section {
    position        : relative;
    padding         : 100px 0;
    overflow        : hidden;
    background-color: #fefaf3;
}

.why-choose h3 {
    text-align: center;
}

.why-choose p {
    text-align: center;
    color     : var(--text-color);
}

.section-tag {
    color          : var(--primary-color);
    font-size      : 16px;
    font-weight    : 600;
    text-transform : uppercase;
    letter-spacing : 1px;
    margin-bottom  : 15px;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.section-tag i {
    margin-right: 10px;
    font-size   : 24px;
}



/* Feature Cards */
.feature-card {
    position     : relative;
    background   : var(--white);
    border-radius: 15px;
    padding      : 40px 30px;
    text-align   : center;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.08);
    transition   : all 0.4s ease;
    height       : 100%;
    margin-bottom: 30px;
    overflow     : hidden;
    z-index      : 1;
}

.feature-card::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 0;
    background: #000;
    z-index   : -1;
    transition: all 0.4s ease;
    opacity   : 1;
    color     : #fff;
}

.feature-card:hover {
    transform : translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color     : #fff;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width          : 80px;
    height         : 80px;
    line-height    : 80px;
    text-align     : center;
    margin         : 0 auto 25px;
    background     : var(--light-bg);
    border-radius  : 20px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform : rotateY(180deg);
}

.feature-icon i {
    font-size : 36px;
    color     : var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color    : var(--white);
    transform: rotateY(180deg);
}

.feature-title {
    font-size    : 22px;
    font-weight  : 700;
    margin-bottom: 15px;
    color        : var(--dark-color);
    transition   : all 0.4s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

.feature-desc {
    font-size    : 16px;
    line-height  : 1.6;
    margin-bottom: 0;
    transition   : all 0.4s ease;
}



/* CTA Section */
.cta-section {
    position  : relative;
    padding   : 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            /* top black overlay */
            rgba(0, 0, 0, 0.6)
            /* bottom black overlay */
        ),
        url("../images/wood-bg.jpg") center/cover no-repeat;
    color                : #fff;
    background-attachment: fixed;
    /* ensures text is visible */
}


.cta-heading {
    font-size    : 36px;
    font-weight  : 700;
    margin-bottom: 30px;
    color        : var(--white);
}

.cta-btn {
    display         : inline-flex;
    align-items     : center;
    padding         : 16px 40px;
    background-color: var(--primary-color);
    color           : var(--white);
    text-decoration : none;
    font-weight     : 600;
    border-radius   : 8px;
    text-transform  : uppercase;
    letter-spacing  : 1px;
    transition      : all 0.3s ease;
    border          : none;
    font-size       : 16px;
}

.cta-btn:hover {
    background-color: var(--dark-color);
    color           : var(--white);
    transform       : translateY(-3px);
    box-shadow      : 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
    margin-left: 10px;
    transition : transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* about us start here  */
.inner-bg {
    background: linear-gradient(rgba(1, 2, 3, 0.5), rgba(1, 2, 3, 0.5)),
        url("../images/inner-bg.jpg");
    background-size    : cover;
    background-position: center;
    padding            : 120px 20px;
    /* top/bottom 120px, left/right 20px */
    display            : flex;
    align-items        : center;
    justify-content    : center;
    text-align         : center;
}

.inner-heding {
    position  : relative;
    text-align: center;
    width     : 100%;
}

.inner-heding h1 {
    color      : var(--white);
    font-size  : 40px;
    font-weight: 900;
    margin     : 0;
    line-height: 1.2;
    word-break : break-word;
}
.inner-heding h3 {
    color      : var(--white);
    font-size  : 40px;
    font-weight: 900;
    margin     : 0;
    line-height: 1.2;
    word-break : break-word;
}
/*  Responsive Fix */
@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
}


.about-text {
    color        : var(--text-color);
    font-size    : 16px;
    line-height  : 1.8;
    margin-bottom: 25px;
}

.section-padding {
    padding: 100px 0;
}

/* Counter Shape */
.counter-shape {
    display         : flex;
    align-items     : center;
    gap             : 16px;
    padding         : 24px;
    background-color: var(--white);
    box-shadow      : 0 5px 30px rgba(0, 0, 0, 0.1);
    position        : absolute;
    /* bottom       : 30px; */
    /* left         : -50px; */
    z-index         : 3;
    border-radius   : 8px;
    animation       : float-bob-y 5s infinite ease-in-out;
}

@keyframes float-bob-y {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.counter-shape .icon {
    width          : 60px;
    height         : 60px;
    background     : rgba(255, 159, 20, 0.1);
    display        : flex;
    align-items    : center;
    justify-content: center;
    border-radius  : 50%;
}

.counter-shape .content h3 {
    font-size  : 28px;
    font-weight: 700;
    margin     : 0;
    color      : var(--primary-color);
}




/* About Images */
.about-image-1 {
    max-width          : 500px;
    height             : 577px;
    position           : relative;
    background-size    : cover;
    background-position: center;
    border-radius      : 10px;
    overflow           : hidden;
}

.about-image-1::before {
    content      : "";
    position     : absolute;
    width        : 100%;
    height       : 88%;
    right        : -55px;
    top          : 20%;
    border       : 3px solid var(--primary-color);
    z-index      : -1;
    border-radius: 10px;
}

.about-image-2 {
    position     : absolute;
    bottom       : 0%;
    right        : 0%;
    width        : 280px;
    height       : 280px;
    border-radius: 10px;
    overflow     : hidden;
    box-shadow   : 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-image-2 img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
}

/* Icon Items */
.about-icon-items {
    margin-top    : 50px;
    display       : flex;
    gap           : 30px;
    border-bottom : 1px solid #e9ecef;
    padding-bottom: 40px;
}

.icon-items {
    display: flex;
    gap    : 25px;
}

.icon-items .icon {
    width           : 80px;
    height          : 80px;
    display         : flex;
    align-items     : center;
    justify-content : center;
    border-radius   : 50%;
    background-color: #502d08;
    color           : var(--white);
    flex-shrink     : 0;
}

.icon-items .content {
    flex: 1;
}

.icon-items .content h4 {
    font-size    : 18px;
    font-weight  : 600;
    margin-bottom: 8px;
    color        : var(--dark-color);
}

.icon-items .content p {
    color      : var(--text-color);
    margin     : 0;
    font-size  : 15px;
    line-height: 1.3;
}


/* about us end here  */

/* products page start here  */
.product-page{
    background-color: #ff9f1412;
}
.product-img {
    text-align   : center;
    margin-bottom: 20px;
}

.product-img img {
    width        : 100%;
    height       : auto;
    border-radius: 6px;
    /* optional */
}

.product-img h3 {
    font-size  : 18px;
    font-weight: 700;
    padding    : 10px;
    margin-top : 10px;
    text-align : center;
    border     : 1px solid var(--dark-color);
    width      : 100%;
    /* responsive */
    max-width  : 100%;
    /* prevent overflow */
    box-sizing : border-box;
}

/* contact us start here  */
.contact-two {
    position             : relative;
    padding              : 100px 0;
    background-image     : url('../images/contact-bg.jpg');
    background-size      : cover;
    background-position  : center;
    background-attachment: fixed;
    overflow             : hidden;
}

.contact-two::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
    background: rgb(0 0 0 / 34%);
}

.contact-two .auto-container {
    position: relative;
    z-index : 1;
}









/* Contact Form Styles */
.contact-one {
    position        : relative;
    padding         : 100px 0;
    background-color: var(--light-bg);
    overflow        : hidden;
}

.contact-one__bg {
    position              : absolute;
    top                   : 0;
    left                  : 0;
    right                 : 0;
    bottom                : 0;
    background-image      : url('../images/contact-bg.jpg');
    background-repeat     : no-repeat;
    background-position   : center;
    background-size       : cover;
    /* opacity            : 0.1; */
    z-index               : 0;
}

.contact-one .container {
    position: relative;
    z-index : 1;
}

.sec-title {
    margin-bottom: 40px;
}

.sec-title__tagline {
    color         : var(--primary-color);
    font-size     : 16px;
    font-weight   : 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom : 15px;
    display       : block;
}

.sec-title__title {
    font-size    : 42px;
    font-weight  : 700;
    line-height  : 1.2;
    color        : var(--dark-color);
    margin-bottom: 20px;
}



.contact-one__info {
    background-color: var(--dark-color);
    padding         : 30px;
    border-radius   : 10px;
    position        : relative;
    overflow        : hidden;
    box-shadow      : 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom   : 30px;
}

.contact-one__info__bg {

    position           : absolute;
    top                : 0;
    left               : 0;
    right              : 0;
    bottom             : 0;
    background-repeat  : no-repeat;
    background-position: center;
    background-size    : cover;
    z-index            : 1;

    background-image: url('../images/contact-info-bg.png');


}

.contact-one__info__content {
    position: relative;
    z-index : 1;
}

.contact-one__info__item {
    display      : flex;
    align-items  : center;
    margin-bottom: 25px;
}

.contact-one__info__icon {
    width           : 50px;
    height          : 50px;
    background-color: var(--primary-color);
    border-radius   : 50%;
    display         : flex;
    align-items     : center;
    justify-content : center;
    margin-right    : 15px;
    flex-shrink     : 0;
    transition      : all 0.3s ease;
}

.contact-one__info__item:hover .contact-one__info__icon {
    transform       : rotateY(180deg);
    background-color: var(--white);
}

.contact-one__info__icon i {
    color    : var(--white);
    font-size: 18px;
}

.contact-one__info__item:hover .contact-one__info__icon i {
    color: var(--primary-color);
}

.contact-one__info__text {
    margin   : 0;
    color    : var(--white);
    font-size: 16px;
}

.contact-one__info__text a {
    color          : var(--white);
    text-decoration: none;
    transition     : all 0.3s ease;
}

.contact-one__info__text a:hover {
    color: var(--primary-color);
}

.contact-one__form {
    background-color: var(--white);
    padding         : 40px;
    border-radius   : 10px;
    box-shadow      : 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-one__form__title {
    font-size    : 24px;
    font-weight  : 600;
    color        : var(--dark-color);
    margin-bottom: 30px;
    position     : relative;
    padding-left : 15px;
}

.contact-one__form__title::before {
    content         : '';
    position        : absolute;
    left            : 0;
    top             : 50%;
    transform       : translateY(-50%);
    height          : 80%;
    width           : 4px;
    background-color: var(--primary-color);
    border-radius   : 2px;
}

.form-control {
    height       : 55px;
    border       : 1px solid #e5e5e5;
    border-radius: 5px;
    padding      : 10px 20px;
    font-size    : 15px;
    margin-bottom: 20px;
    transition   : all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow  : 0 0 0 0.25rem rgba(255, 159, 20, 0.25);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.floens-btn {
    background-color: var(--primary-color);
    color           : var(--white);
    border          : none;
    padding         : 15px 30px;
    border-radius   : 50px;
    font-weight     : 600;
    font-size       : 16px;
    display         : inline-flex;
    align-items     : center;
    justify-content : center;
    transition      : all 0.3s ease;
    text-transform  : uppercase;
    letter-spacing  : 1px;
}

.floens-btn:hover {
    background-color: var(--dark-color);
    transform       : translateY(-3px);
    box-shadow      : 0 10px 20px rgba(140, 81, 51, 0.3);
}

.floens-btn i {
    margin-left: 10px;
    transition : all 0.3s ease;
}

.floens-btn:hover i {
    transform: translateX(5px);
}

.contact-one__image-two {
    position                 : absolute;
    right                    : 0px;
    bottom                   : 0;
    max-width                : 500px;
    border-top-left-radius   : 50px;
    border-bottom-left-radius: 50px;
    overflow                 : hidden;
    box-shadow               : -10px 10px 30px rgba(0, 0, 0, 0.1);
}





/* blog page start here  */
.blogs-container,
.blogs-page {
    display  : flex;
    flex-wrap: wrap;
    gap      : 1rem;
    padding  : 80px 0;
}

.blog-card {
    padding         : 1rem;
    background-color: white;
    box-shadow      : rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display         : flex;
    flex-direction  : column;
    gap             : 1rem;

}

.blog-card .blog-card-title {
    font-size: 18px;
    color    : #000;
}

.blog-card .blog-card-img {
    max-width: 100%;
}

.blog-card .blog-card-date,
.blog-date {
    background-color: #ff9f14;
    color           : white;
    padding         : 0.5rem 1rem;
    width           : fit-content;
    position        : relative;
    z-index         : 2;
    margin-top      : -20px;
}

.blog-card-btn {
    display        : inline-flex;
    align-items    : center;
    gap            : 2rem;
    text-decoration: none;
    color          : #333;
    font-weight    : 500;
    position       : relative;
    transition     : color 0.3s ease;
}

.blog-card-btn i {
    transition: transform 0.3s ease;
}

.blog-card-btn:hover {
    color: #ff9f14;
}

.blog-card-btn:hover i {
    transform: translateX(10px);
}

.blog-container {
    padding   : 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-container img {
    width     : 100%;
    height    : 400px;
    object-fit: cover;
}

.blog-container .blog-title {
    font-size: 25px;
    margin   : 1rem 0;
    color    : #000;
}

.blog-container p,
.blog-container b {
    font-size: 14px;
    color    : #292929;
}

.blog-container p a {
    color      : #ff9f14;
    font-weight: 600;
}

.blog-container h4 {
    font-size  : 18px;
    color      : #1f1f1f;
    font-weight: 600;
    margin     : 10px 0;
}

.blog-container h3,
.blog-container .h2 {
    font-size: 20px;
    color    : #212121;
    margin   : 14px 0;
}

.share-btn {
    margin-top: 2rem;
    display   : flex;
}

.blog-sidebar-card {
    display   : flex;
    gap       : 8px;
    padding   : 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-top: 16px;
}

.blog-sidebar h3 {
    padding    : 0.5rem 1rem;
    border-left: 3px solid #ff9f14;
}

.blog-sidebar-card img {
    width: 100px;
}

.blog-sidebar-card a {
    font-weight: 600;
    color      : #464646;
}


/*== Gallery ==*/
.gallery-page {
    width  : 100%;
    padding: 50px 0;
}

.gallery-page ul {
    display  : flex;
    flex-wrap: wrap;
    gap      : 10px;

    padding: 0;
    margin : 0;
}

.gallery-page li {
    list-style: none;
    flex      : 1 1 calc(25% - 10px);

    box-sizing: border-box;
}

.gallery-page li img {
    width     : 100%;
    height    : 200px;
    object-fit: cover;

    border-radius: 8px;

}

@media (max-width: 992px) {
    .gallery-page li {
        flex: 1 1 calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {
    .gallery-page li {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery-page li {
        flex: 1 1 100%;
    }
}


/* Modal Styles */
.quote-modal .modal-content {
    border-radius: 15px;
    overflow     : hidden;
    border       : none;
    box-shadow   : 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quote-modal .modal-header {
    background   : linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color        : var(--white);
    border-bottom: none;
    padding      : 20px 30px;
}

.quote-modal .modal-title {
    font-weight: 700;
    font-size  : 24px;
}

.quote-modal .btn-close {
    filter : invert(1);
    opacity: 0.8;
}

.quote-modal .btn-close:hover {
    opacity: 1;
}

.quote-modal .modal-body {
    padding: 30px;
}

.quote-modal .form-label {
    font-weight  : 600;
    color        : var(--dark-color);
    margin-bottom: 8px;
}

.quote-modal .form-control {
    padding      : 12px 15px;
    border       : 1px solid #e5e5e5;
    border-radius: 8px;
    transition   : all 0.3s ease;
}

.quote-modal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow  : 0 0 0 0.25rem rgba(255, 159, 20, 0.25);
}

.quote-modal .form-select {
    padding      : 12px 15px;
    border       : 1px solid #e5e5e5;
    border-radius: 8px;
    transition   : all 0.3s ease;
}

.quote-modal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow  : 0 0 0 0.25rem rgba(255, 159, 20, 0.25);
}

.quote-modal textarea.form-control {
    min-height: 120px;
    resize    : vertical;
}

.quote-modal .submit-btn {
    background   : linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color        : var(--white);
    border       : none;
    padding      : 12px 30px;
    border-radius: 50px;
    font-weight  : 600;
    width        : 100%;
    transition   : all 0.3s ease;
    margin-top   : 10px;
}

.quote-modal .submit-btn:hover {
    transform : translateY(-3px);
    box-shadow: 0 8px 20px rgba(140, 81, 51, 0.3);
}

.service-icon {
    width           : 24px;
    height          : 24px;
    background-color: var(--primary-color);
    border-radius   : 50%;
    display         : inline-flex;
    align-items     : center;
    justify-content : center;
    margin-right    : 10px;
    color           : var(--white);
    font-size       : 12px;
}

/* Animation for modal */
@keyframes fadeIn {
    from {
        opacity  : 0;
        transform: translateY(-50px);
    }

    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

.quote-modal .modal-dialog {
    animation: fadeIn 0.4s ease-out;
}



/* service inner page start here  */
/* Service Details Styles */
.gt-details-thumb img {
    width        : 100%;
    border-radius: 10px;
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gt-details-content h2 {
    font-size    : 42px;
    font-weight  : 700;
    color        : var(--dark-color);
    margin-bottom: 20px;
}

.gt-details-content p {
    font-size    : 16px;
    margin-bottom: 20px;
    color        : #000;
}

.gt-box {
    display      : block;
    font-size    : 20px;
    font-weight  : 600;
    color        : var(--dark-color);
    border-left  : 5px solid var(--primary-color);
    background   : var(--light-bg);
    padding      : 24px 32px;
    font-style   : italic;
    margin       : 30px 0;
    line-height  : 1.6;
    border-radius: 0 8px 8px 0;
}

.gt-list-content h3 {
    font-size    : 28px;
    font-weight  : 700;
    color        : var(--dark-color);
    margin-bottom: 20px;
}

.gt-list-content ul {
    list-style: none;
    padding   : 0;
}

.gt-list-content ul li {
    margin-bottom: 25px;
    /* padding-left : 30px; */
    position     : relative;
    color        : #000;
}

.gt-list-content ul li span {
    display      : block;
    font-weight  : 600;
    color        : var(--dark-color);
    margin-bottom: 8px;
    font-size    : 18px;
}

.gt-list-content ul li span i {
    color       : var(--primary-color);
    margin-right: 10px;
}

.details-img img {
    width        : 100%;
    border-radius: 8px;
    box-shadow   : 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

/* FAQ Styles */
.faq-content h3 {
    font-size    : 28px;
    font-weight  : 700;
    color        : var(--dark-color);
    margin-bottom: 30px;
}

.accordion-item {
    border       : none;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow     : hidden;
    box-shadow   : 0 3px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background-color: var(--light-bg);
    color           : var(--dark-color);
    font-weight     : 600;
    font-size       : 18px;
    padding         : 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color           : var(--white);
}

.accordion-button:focus {
    box-shadow  : none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
    background-color: var(--light-bg);
    padding         : 20px;
}

/* Sidebar Styles */
.gt-main-sideber {
    position: sticky;
    top     : 30px;
}

.gt-single-sideber-widget {
    background-color: var(--white);
    padding         : 30px;
    border-radius   : 10px;
    box-shadow      : 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom   : 30px;
}

.gt-widget-title h3 {
    font-size     : 24px;
    font-weight   : 700;
    color         : var(--dark-color);
    margin-bottom : 20px;
    padding-bottom: 15px;
    border-bottom : 2px solid var(--primary-color);
}

.gt-category-list {
    list-style: none;
    padding   : 0;
    margin    : 0;
}

.gt-category-list li {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 12px 0;
    border-bottom  : 1px solid #eee;
}

.gt-category-list li:last-child {
    border-bottom: none;
}

.gt-category-list li a {
    color          : var(--text-color);
    text-decoration: none;
    transition     : all 0.3s ease;
}

.gt-category-list li a:hover {
    color: var(--primary-color);
}

.gt-category-list li span {
    color: var(--primary-color);
}

.service-details-sidebar {
    background-size    : cover;
    background-position: center;
    padding            : 40px 30px;
    border-radius      : 10px;
    color              : var(--white);
    text-align         : center;
    position           : relative;
    overflow           : hidden;
}

.service-details-sidebar::before {
    content   : '';
    position  : absolute;
    top       : 0;
    left      : 0;
    right     : 0;
    bottom    : 0;
    background: rgba(0, 0, 0, 0.7);
    z-index   : 1;
}

.service-details-sidebar>* {
    position: relative;
    z-index : 2;
}

.service-details-sidebar img {
    max-width    : 120px;
    margin-bottom: 20px;
}

.service-details-sidebar .gt-content span {
    display      : block;
    margin-bottom: 10px;
    font-size    : 16px;
}

.service-details-sidebar .gt-content h3 {
    font-size    : 24px;
    margin-bottom: 20px;
}

.service-details-sidebar .gt-content h3 a {
    color          : var(--white);
    text-decoration: none;
}

.theme-btn {
    display         : inline-flex;
    align-items     : center;
    background-color: var(--primary-color);
    color           : var(--white);
    padding         : 12px 25px;
    border-radius   : 50px;
    text-decoration : none;
    font-weight     : 600;
    transition      : all 0.3s ease;
}

.theme-btn:hover {
    background-color: var(--dark-color);
    transform       : translateY(-3px);
    color           : var(--white);
}

.theme-btn i {
    margin-left: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .gt-details-content h2 {
        font-size: 36px;
    }

    .gt-main-sideber {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .gt-details-content h2 {
        font-size: 32px;
    }

    .gt-box {
        padding  : 20px;
        font-size: 18px;
    }

    .gt-list-content h3,
    .faq-content h3 {
        font-size: 24px;
    }

    .accordion-button {
        font-size: 16px;
        padding  : 15px;
    }
}

@media (max-width: 575.98px) {
    .gt-details-content h2 {
        font-size: 24px;
        padding-top: 10px;
    }

    .gt-single-sideber-widget {
        padding: 20px;
    }

    .service-details-sidebar {
        padding: 30px 20px;
    }
}