


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* overflow: hidden; */
}

@font-face {
    font-family: "ivy-presto-display";
    src: url("../font2/ivy-presto-display.otf");
}

/* ------------------- color root -------------  */
:root {
    --dark-color: #000;
    --bg-color: #b98e75;
    --text-color: #b98e75;
}

/* =============  */
/* Navbar Styles */
.bg-navbar {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    width: 100%;
}

.bg-navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Navbar specific styles */
.navbar {
    z-index: 9;
}


h1,h2,h3,h4,h5,h6{
     font-family: "ivy-presto-display";
}


/* Dropdown hover effect for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
   
}

.dropdown-menu {
    transition: all 0.3s ease-in-out;
    border: none !important;
    border-radius: 0;
}

.navbar-nav .dropdown-menu {
    top: 100%;
    left: 0;
}

.nav-link {
    color: black;
    font-weight: 500;
}

/* Button styles */
.btn11 {
    padding-left: 1.5rem;
}



.btn11 {
    display: inline-block;
    position: relative;
}

.btn11 a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    animation: floating 2s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.btn11 {
    display: inline-block;
    position: relative;
}

.btn11 a {
    text-decoration: none;
    color: white;
    background-color: #3b043b;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    animation: floating 2s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.btn11 a:hover {
    background-color: black;
    color: white;
    transition: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        margin-top: 10px;
        box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    }

}

/* ============== banner  */
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-145deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.74));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    z-index: 2;
    /* Ensure text appears above the gradient */
}



/* Animation for heading */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for text */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Styling for text overlay */
.carousel-caption {
    position: absolute;
    top: 57%;
    left: 10%;
    transform: translateY(-50%);
    /* text-align: left; */
    color: white;
}

.carousel-caption a {
    background-color: #3b043b;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 24px;
}

.carousel-caption h2 {
    font-size: 4rem;
    font-weight: bold;
    animation: slideInLeft 2s ease-in-out;
    color: white;
}

.carousel-caption p {
    font-size: 1.2rem;
    animation: fadeIn 1.5s ease-in-out;
    margin-bottom: 1.5rem;
}

/* ============ about ================= */
.about-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.about-img img {
    border-radius: 15px;
}

.about-right span {
    background-color: #383236;
    padding: 0.5rem 1.5rem;
    color: #fff;
    border-radius: 24px;
    line-height: 45px;
}

.about-right p {
    text-align: justify;
    color: #000;
}

/* ----  */
.custom-md-container {
    position: relative;
    max-width: 1640px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

.side-line-left {
    position: relative;
    padding-left: 70px;
    font-weight: 500;
    margin-bottom: 10px;
}

.mrb-10 {
    margin-bottom: 10px;
}

.side-line-left:before {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 8px;
    background: #b98e75;
}

.side-line-left:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background: #b98e75;
    left: 10px;
    bottom: 12px;
}

.mrb-25 {
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: bold;
}

.text-primary-color {
    color: #d18548;
}

.mrb-30 {
    margin-bottom: 30px;
}

.justify {
    text-align: justify;
}

.mrb-40 {
    margin-bottom: 40px;
}

.order-list li:first-child {
    margin-top: 0;
}

.order-list li {
    display: inherit;
    position: relative;
    padding-left: 30px;
    margin: 12px 0px;
}

.order-list.primary-color li:before {
    color: #b98e75;
    font-weight: 600;
}

.order-list li:before {
    position: absolute;
    content: '\f00c';
    /* Check the latest icon codes */
    color: #b98e75;
    font-weight: 600;
    left: 0px;
    top: 0px;
    font-family: "Font Awesome 6 Free";
    /* Ensure you're using FA6 */
}

.align-items-center {
    align-items: center !important;
}

.about-person {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-person .about-person-img {
    position: relative;
}

.about-person .about-person-img:before {
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 30px;
    right: -10px;
    border: 2px solid #b98e75;
    content: "";
    z-index: -1;
}

.about-person .about-person-content {
    margin-left: 40px;
    position: relative;
}

.about-person .about-person-content .about-person-name {
    font-size: 46px;
    line-height: 46px;
    color: #b98e75;
    font-weight: normal;
    letter-spacing: -1px;
}

.animate-btn-style2 {
    position: relative;
    display: inline-block;
    color: var(--heading-font-color);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 1;
    letter-spacing: 1px;
    border: 1px solid #3b043b;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    font-family: var(--body-font);
    padding: 10px 32px;
    font-size: 14px;
}



a:hover {
    color: #b98e75;
    text-decoration: none;
}

.about-image-box-style2 {
    position: relative;
}

.about-image-box-style2 .about-image1 {
    position: absolute;
    right: 0;
    width: auto;
    bottom: 60px;
    border-radius: 20px 0 20px 0;
}

.about-image-box-style2 .about-image2 {
    width: 430px;
    border-radius: 20px 0 20px 0;
    margin-left: 80px;
}

.about-image-box-style2 .call-us-now {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #3b043b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 200px;
    padding: 25px 40px 25px;
    border-radius: 20px 0 20px 0;
}

.about-image-box-style2 .call-us-now .number {
    font-size: 60px;
    margin-bottom: 10px;
    line-height: 1;
}

.dot-circle:after {
    background-image: radial-gradient(#b98e75 1px, #ff000000 2.2px);
    background-size: 0.7rem 0.7rem;
    position: absolute;
    left: 20px;
    content: "";
    width: 170px;
    height: 260px;
    top: 60px;
    z-index: -1;
    opacity: 0.3;
    animation: float-y-axis 4s infinite alternate;
}


@media (max-width: 768px) {
    .custom-md-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .side-line-left {
        padding-left: 50px;
        font-size: 16px;
    }

    .side-line-left:before,
    .side-line-left:after {
        width: 30px;
    }

    .mrb-25 {
        font-size: 24px;
    }

    .order-list li {
        padding-left: 20px;
        font-size: 14px;
    }

    .animate-btn-style2 {
        font-size: 12px;
        padding: 8px 20px;
    }

    .about-image-box-style2 .about-image2 {
        width: 100%;
        margin-left: 0;
    }

    .about-image-box-style2 .call-us-now {
        width: 150px;
        padding: 15px 20px;
    }

    .about-image-box-style2 .call-us-now .number {
        font-size: 40px;
    }
}


/* ------- services  */
.services-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    background: #f5ebff url('../assets/img/services-bg.png') no-repeat center center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    /* overflow-x: hidden; */
}


.services-heading {
    text-align: center;
    margin-bottom: 1.5rem;

}

.services-line-left {
    position: relative;
    padding-left: 70px;
    font-weight: 500;
    margin-bottom: 10px;

}

.services-line-left:before {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    left: 43%;
    bottom: 8px;
    background: #b98e75;

}

.services-line-left:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background: #b98e75;
    left: 44%;
    bottom: 12px;

}

.services-heading p {
    padding: 0 15rem;
        font-size: 18px;
    line-height: 30px;
}

/* ----  */

.services-inner-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}


.services-ineer-img {
    position: relative;
    transition: all 0.4s ease-in-out;
}

.services-ineer-img img {
    width: 100%;
    display: block;
    transition: all 0.4s ease-in-out;
}

.services-inner-box:hover .services-ineer-img img {
    filter: brightness(0.7);
}

.services-ineer-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b043b, #3b043b);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.services-inner-box:hover .services-ineer-img::before {
    opacity: 0.7;
}

.services-inner-content {
    width: 90%;
    position: absolute;
    bottom: 5%;
    left: 4%;
    background-color: #fff;
    padding: 0.8rem 0;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.services-inner-box:hover .services-inner-content {
    background-color: #3b043b;
}

.services-inner-content a {
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: capitalize;
    color: var(--dark-color);
    transition: color 0.3s ease-in-out;
}

.services-inner-box:hover .services-inner-content a {
    color: #fff;
}

/* =========== conter  */

#conter-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
    color: white;
    max-width: 90%;
    justify-content: center;
}

.counter-section {
    margin-bottom: 4rem;
    /* background-color: #02284e; */
    padding: 3rem 0rem;
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 100px;
    min-width: 100px;
    padding: 30px;
    border: 2px solid white;
    /* border-radius: 10px; */
    background: #3b043b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.counter-box i {
    font-size: 40px;
    margin-bottom: 10px;
}

.counter {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.counter-box p {
    color: white !important;
}

@media (max-width: 768px) {
    #conter-main {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        text-align: center;
        color: white;
        max-width: 90%;
        justify-content: center;
        flex-direction: column;
    }
}

/* =========== blog  */
.blog-section {
    margin-bottom: 3rem;
    background: #fbf6f3 url('../assets/img/bg1-team.jpg') no-repeat center center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.blog-inner-img {
    position: relative;
}

.blog-inner-box a {
    text-decoration: none;

}

.blog-inner-box {
    margin-bottom: 1.5rem;
}


.blog-text {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: #3b043b;
    color: #fff;
    padding: 0.4rem 1.5rem;
}

.blog-text h5 {
    font-size: 0.8rem;
}

.blog-inner-content {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    padding: 1.5rem;
}

.blog-inner-content a {
    text-decoration: none;
    color: #3b043b;
    margin: 1rem 0;
    font-weight: bold;
}

.blog-inner-content a:hover {
    color: black;
    transition: 0.5ms;
}

.blog-inner-content p {
    color: var(--dark-color);
    padding: 1.2rem 0;
}

#mrbb {
    margin-bottom: 0;
}

/* ===== faq  */
.faq-section {
    margin-bottom: 3rem;
    background: #f5ebff url(../assets/img/services-bg.png) no-repeat center center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.faq-img img {
    width: 100%;
}

.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-button {
    background: #3b043b;
    ;
    border: #3b043b;
    color: #fbf6f3;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    color: #000;
    animation: var(--bs-accordion-active-color);
    background-color: #3b043b;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    border: none !important;
    color: white;
}

/* -------------  textmonils -------------------------------- */


/* ------- contact us ------  */
.call-to-action {
    position: relative;
    display: block;
    padding-bottom: 80px;
}

.call-to-action .call-to-action-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 75px 45px;
    background-color: #3b043b;
    overflow: hidden;
    color: white;
}

.call-to-action .call-to-action-inner .call-to-action-left {
    position: relative;
    display: flex;
    align-items: center;
}

.call-to-action .call-to-action-inner .call-to-action-left .call-to-action-icon span:before {
    font-size: 64px;
    color: #fff;
    position: relative;
    display: inline-block;
    line-height: 64px;
}

.call-to-action .call-to-action-inner .call-to-action-left .call-to-action-content {
    position: relative;
    margin-left: 30px;
}

.call-to-action .call-to-action-inner .call-to-action-left .call-to-action-content .call-to-action-sub-title {
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.call-to-action .call-to-action-inner .call-to-action-left .call-to-action-content .call-to-action-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    line-height: 47px;
}


.animate-btn-style4 {
    position: relative;
    display: inline-block;
    color: #2d3941;
    background: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 1;
    letter-spacing: 1px;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    padding: 17px 32px;
    font-size: 14px;
    text-decoration: none;
}

.call-to-action .call-to-action-inner:after {
    content: "";
    background-image: url(../assets/img/c.png);
    background-size: cover;
    background-position: center left;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
    filter: brightness(0.3);
    animation: heartbeat 1.5s infinite alternate;
}

/* ----- footer -------------------------------- */
.footer {
    background: #3b043b;
    padding: 3rem 0;
    border-top: 1px solid #ccc;
}

.footer-inner-image img {
       width: 130px;
    background: white;
}

.footer-inner-content p {
    color: #fff;
    margin-top: 0.8rem;
}

.col-md-about-details h4 {
    color: #fff;
}

.col-md-about-details ul {
    padding: 0;
}

.col-md-about-details ul li {
    list-style: none;
}

.col-md-about-details ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 2rem;
}

.col-md-about-details ul li a:hover {
    text-decoration: none;
    color: #ccaf9e;
    transition: 0.2s;
    line-height: 2rem;
}



.footer-inner {
    color: white;
    text-align: center;
}

.footer-inner li {
    list-style: none;
}

.footer-inner a {
    text-decoration: none;
    color: white;
}

.footer-inner a {
    padding-left: 0.5rem;
}



.adress-inner p:hover {
    color: #fff;
    transition: 0.8s;
    cursor: pointer;
}

.copy-inner {
    padding: 0.5rem 0
}

.copy-inner p {
    text-align: center;
    color: white;

}


.adress-inner p {
    display: flex;
    align-items: center;
    margin: 8px 0;
    color: #fff;
    /* font-size: 14px; */
}

.adress-inner i {
    margin-right: 10px;
    font-size: 24px;
    color: #fff;
    /* Icon color */
}

.adress-inner span {
    flex: 1;
    /* Makes text align uniformly */
}


.copyright {
    background-color: #1d1d1d !important;
    border-top: 1.2px solid #fff !important;
}
.copyright p{
    margin-bottom: 0 !important;
    padding: 5px 0;
}


/*interior css*/
.global_wrapper{
    padding: 80px 0;
}
.main_heading h2{
    text-align: center;
    font-size: 44px;
    color: #3b043b;
    text-transform: capitalize;
}

.global_content{
    margin-top: 3rem;
}
.interior_grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1rem;
}
.interior_grid__box {
    text-align: center;
    padding: 2rem;
    border:1px solid #3b043b;
    height: 100%;
}
.myBtn{
    margin-top: 2rem;
}
.global_btn{
    background: #3b043b;
    color: #fff;
    padding: 6px 30px;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none !important;
}
.center_btn{
    text-align: center;
}
.interior_grid__box:hover{
    box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.24);
}
.interior_grid__box a{
    text-transform: capitalize;
    font-size: 20px;
    color: #3b043b;
    text-decoration: none !important;
}
.back_bg{
    background: #F5EBFF;
}

/*step_img*/
.step_img img{
    width: 100%;
}
.step_content h2{
    color: #3b043b;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}
.step_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
}
.step_row__box h3{
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100%;
    background: #3b043b;
    margin: 0 auto;
}
.step_row{
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step_row__box-info{
    position: relative;
    margin-top: 2rem;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
}
.step_row__box-info:before{
    content: '';
    position: absolute;
    left: 50%;
    top: -18px;
    height: 20px;
    width: 20px;
transform: rotate(-45deg) translateX(-50%);
background: #fff;

    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.step_row__box-info h6{
    text-transform: capitalize;
    font-size: 22px;
}



/* ------guarantee card  */
.guarantee-card {
    padding: 1rem;
    background-color: #3b043b;
    text-align: center;
    line-height: 25px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    color: white;
    height: 100%;
}

.guarantee-card h3 {
    padding-top: 1rem;
    font-size: 22px;
}

.guarantee-card-black {
    padding: 1rem;
    background-color: rgba(9, 30, 66, 0.08);
    text-align: center;
    color: #000;
    line-height: 25px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    height: 100%;
}

.guarantee-card-black h3 {
    padding-top: 1rem;
    font-size: 22px;
}

/* ---------- expertise-section */
.expertise-inner {
    text-align: center;
    margin-bottom: 6rem;
}

.expertise-inner img {
    width: 150px;
    height: 150px;
    /*border-radius: 50%;*/
    border: 1.2px solid #ccc;
    padding: 1.5rem;
}

.expertise-inner h3 {
    padding-top: 1rem;
    font-size: 22px;
}

/* <!-- --------------- why choose us ------------  --> */
.why-chhose-section {
    margin-bottom: 5rem;
}

.bg-cover {
    background-size: cover;
}

.bg-silver-light {
    background-color: #3b043b;
    color: white;
}

.divider-gap {
    padding: 10% 16% 9% 12%;
}

.mrb-25 {
    margin-bottom: 25px;
}

.mrb-40 {
    margin-bottom: 40px;
}

.icon-box-two .icon {
    width: 84px;
    height: 84px;
    line-height: 84px;
    float: left;
    text-align: center;
    background: #3b043b;
    border-radius: 6px;
}

.f-left {
    float: left;
}

.bg-primary-color {
    background: #B98E75;
}

.icon-box-two .icon span::before {
    font-size: 48px;
    line-height: 84px;
    color: white;
}

.webextheme-icon-measure:before {
    content: "\f12a";
}

.icon-box-two .icon-details {
    margin-left: 110px;
}

.mrb-10 {
    margin-bottom: 10px;
    font-size: 42px;
    line-height: 1.3;
}

.mrb-10 {
    margin-bottom: 10px;
}

[class^="webextheme-icon-"],
[class*=" webextheme-icon-"] {
    font-family: 'webexthemeicon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-box-title p {
    line-height: 1.8em;
    margin: 0px 0px 20px;
}

/* ------------ warranty-card-section */
.warranty-card-section {
    margin-bottom: 5rem;
    background-color: #f5ebff;
    padding: 2.5rem 0;
}

.warranty-card {
    text-align: center;
    border-right: 1.2px solid black;
    padding: 1.5rem;
}

.warranty-card h3 {
    font-size: 20px;
    padding-top: 1rem;
    color: #3b043b;
}


.warranty-card-right {
    text-align: center;
    padding: 1.5rem;
}

.warranty-card-right h3 {
    font-size: 20px;
    padding-top: 1rem;
    color: #3b043b;
}

/* ------------ about us bredcrum -------- */
.page-title-section {
    background-position: center;
    background-color: #f8f8f8;
    background-image: url('../assets/img/ab-bredcrum.jpg');
    display: flex;
    align-items: end;
    min-height: 405px;
    position: relative;
    padding: 105px 0;
}

.page-title-section .breadcrumb-area {
    text-align: center;
    z-index: 2;
    position: relative;
}

.page-title-section .breadcrumb-area .page-title {
    color: white;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.page-title-section .breadcrumb-area .breadcrumbs-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    padding: 8px 40px;
}

.page-title-section .breadcrumb-area .breadcrumbs-link li {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.page-title-section .breadcrumb-area .breadcrumbs-link li.active {
    color: #fff;
    text-decoration: underline;
}

.breadcrumbs-link li a {
    color: white;
    text-decoration: none;
}

.breadcrumbs-link i {
    color: white;
}

.page-title-section:after {
    background: linear-gradient(360deg, #000000, #130c05);
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.75;
    z-index: 1;
}

/* ----- about-page  */

.about-page-section {
    margin: 5rem 0;
}

.about-inner-page {
    display: flex;
    justify-content: center;
    height: 100%;

}

.about-inner-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;

}

.about-inner-content {
    background-color: #FBF6F3;
    padding: 1.5rem;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.about-inner-content p {
    text-align: justify;
}

.grarantee-about-page {
    margin-bottom: 5rem;
}

/*trending_box*/
.trending_box img{
    width: 100%;
}
.trending_box{
    margin: 0 10px;
}
.slick-dots{
    line-height: 0;
    bottom: -3rem !important;
}
.slick-dots li{
    height: 12px !important;
    width: 12px !important;
    background: #ddd !important;
    border-radius: 100%;
}
.slick-dots li.slick-active{
    background-color: #3b043b !important;
}
.slick-dots li button:before{
    display: none;
}

/* ------------ contact us */
.contact-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

[data-overlay-light]:before {
    background: white;
}

.mrb-80 {
    margin-bottom: 80px;
}

.mrb-5 {
    margin-bottom: 5px;
}

.mrt-0 {
    margin-top: 0px;
}

.side-line-left {
    position: relative;
    padding-left: 70px;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
}

.text-primary-color {
    color: #3b043b;
}

.side-line-left:before {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 8px;
    background: #b98e75;
}

.side-line-left:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background: #b98e75;
    left: 10px;
    bottom: 12px;
}

.mrb-30 {
    margin-bottom: 30px;
}

.faq-title {
    font-size: 64px;
    line-height: 1.2;
}

.social-list li {
    display: inline;
    margin-right: 5px;
}

.social-list.list-flat li a {
    border-radius: 0;
}

.social-list li a {
    /* background: #323c5b; */
    height: 42px;
    width: 42px;
    display: inline-block;
    color: white;
    text-align: center;
    border-radius: 50%;
    line-height: 42px;
    font-size: 16px;
}

.social-list.list-primary-color li a {
    background: #3b043b;
}

.social-list.list-lg li a {
    height: 48px;
    width: 48px;
    font-size: 18px;
    line-height: 48px;
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.mrb-30 {
    margin-bottom: 30px;
}

.contact-block {
    background: #fbf6f3;
    padding: 30px 30px;
    border: 1px solid #ece9e3;
    height: 85%;
}

.d-flex {
    display: flex !important;
}

.contact-icon i {
    width: 64px;
    height: 64px;
    background: #3b043b;
    text-align: center;
    line-height: 64px;
    display: inline-block;
    border-radius: 6px;
}

.mrl-30 {
    margin-left: 30px;
}

.contact-details {
    margin-left: 30px;
}

.icon-box-title {
    font-size: 18px;
    line-height: 24px;
}

.mrb-10 {
    margin-bottom: 10px;
}

.mrb-0 {
    margin-bottom: 0px;
}

.contact-icon i:before {
    color: #ffffff;
    font-size: 36px;
}

.base-icon-map:before {
    content: "\f15b";
}

.mrb-25 {
    margin-bottom: 25px;
}

.form-control,.form-select {
    box-shadow: none;
    outline: none;
    border: 0.1px solid rgb(197, 96, 96) !important;
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--heading-font);
    color: #252531;
    height: auto;
    /*padding: 25px 20px;*/
    resize: none;
    min-width: 100%;
    height: 56px;
    border-radius: 0px;
}

.animate-btn-style3.btn-md {
    font-size: 14px;
    padding: 12px 48px;
}

.animate-btn-style3 {
    position: relative;
    display: inline-block;
    color: #2d3941;
    background: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 1;
    letter-spacing: 1px;
    border: 1px solid #b98e75;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    padding: 10px 32px;
    font-size: 14px;
}

.contact-form textarea {
    display: inline-block;
    min-height: 190px;
}
.modal-header button{
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
}
.modal_form textarea,.modal_form input,.modal_form .form-select{
    width: 100%;
    border: 1px solid #ccc !important;
    margin-bottom: 1rem;
    padding: 10px;
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
}

.mapouter.fixed-height {
    height: 440px;
    padding-top: 0rem;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 100%;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 100%;
    width: auto;
}

.mapouter iframe {
    width: 100%;
    height: 100%;
}

iframe {
    border: none;
}

/* -------------- services  */
.services-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.services-inner-image {
    display: flex;
    justify-content: center;
    height: 100%;
}

.services-inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-point span {
    font-weight: 600;
}

.services-point p {
    background-color: #000;
    color: white;
    padding: 0.5rem;
}

.modular-img {
    display: flex;
    justify-content: center;
    height: 60vh;
}

.modular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modula-section {
    margin-bottom: 5rem;
}

.modular-content {
    padding-top: 1rem;
}

.single-card {
    padding: 2rem;
}

.sigle-card-inner {
    text-align: center;
    background-color: #3b043b;
    color: white;
    padding: 1rem;
}

.single-section {
    margin-bottom: 5rem;
    background-color: #fbf6f3;
}

.sigle-card-inner h3 {
    font-size: 20px;
}

.sigle-card-inner-light {
    text-align: center;
    background-color: rgba(9, 30, 66, 0.08);
    color: #000;
    padding: 1rem;
}

.sigle-card-inner-light h3 {
    font-size: 20px;
}

.u-shapend-section {
    margin-bottom: 5rem;
}

.u-shapend-inner {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    padding: 1rem;
}

.u-spapne-left {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    padding: 1rem;
}

.parallel-section {
    margin-bottom: 5rem;
}

.parallel-img {
    display: flex;
    justify-content: center;
    height: 100%;
}

.parallel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallel-content p {
    text-align: justify;
}

.g-shapend {
    margin-bottom: 5rem;
    background-color: #fbf6f3;
    padding: 1.5rem 0;
}

.blog-details-section {
    margin-top: 7rem;
    margin-bottom: 5rem;
}

.blog-details-inner img {
    width: 100%;
    height: 60vh;
    padding: 1.2rem 0;
}

/* ---------------- services section------------------------------ */
.modular-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.modular-left-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.modular-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modular-right-content p {
    text-align: justify;
}
.modular-right-content h2{
        color: #3b043b;
    font-weight: 600;
    font-size: 34px;
}
.modular-right-content p{
    line-height: 30px;
    font-size: 18px;
}

.modular-right-content ul li {
    text-align: justify;
    line-height: 1.8rem;
}

.sapend-section {
    margin-bottom: 5rem;
}

.sapend-inner-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.sapend-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sapend-inner-content {
    padding: 1rem 0;
}
.sapend-inner-content p{
    font-size: 18px;
    line-height: 30px;
}
.book-section {
    margin-bottom: 5rem;
    background-color: #3b043b;
}

.book-inner {
    text-align: center;
    color: #fff;
    padding: 50px 0;
}

.book-inner p {
        max-width: 900px;
    margin: 2rem auto;
    font-size: 18px;
    line-height: 30px;
}
.book-inner h2{
    font-size: 46px;
}

.book-inner a {
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}
.single-inner-img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.single-inner-img img{
 height: 100%;
    object-fit: cover;   
}
.single-inner-content p {
    text-align: justify;
        font-size: 18px;
    line-height: 30px;
}

.single-inner-content a {
    text-decoration: none;
    background-color: #3b043b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.card-section {
    margin-bottom: 5rem;
}

.island-inner {
    padding: 0 10rem;
    text-align: center;
}
.island-inner p{
    font-size: 18px;
    line-height: 30px;
}

/* -----modal */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid #ddd;
}

.form-control {
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.btn-primary {
    background-color: #6c5ce7;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #5a4ed8;
}

.modal-body {
    background-color: #f9f9f9;
}

.contact-form {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}





/*----- */

/*.interior_grid__box {*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.interior_grid__box:hover {*/
/*  transform: scale(1.05);*/
/*  box-shadow: 0 10px 20px rgba(0,0,0,0.2);*/
/*}*/

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.interior_grid__box img {
  animation: float 3s ease-in-out infinite;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #3b043b;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #f8f9fa;
    background-color: #3b043b;
}

@media (max-width: 768px) {
    .dropdown-menu {
        max-height: 300px; /* Adjust as needed */
        overflow-y: auto;
        overflow-x: hidden;
    }
}