@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    color: var(--amber-hearth);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}


:root {
    --red: #EC2028;
    --main-color: var(var--red);
    --darkcolor: #0b0907;
    --light-color: #fff;
    --btn-bg: var(--red);
    --color-light: var(--light-color);
}



.text-gradient {
    background-image: linear-gradient(to right, #ff535a, #b84247, #ec2028);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.bg-gradient {
    background-image: var(--bg-gradient);
}

.heading-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

h5.heading,
h5.heading span {
    font-family: "DM Serif Display", serif;
}

h5.heading {
    width: 100%;
    font-size: 3.5rem;
    text-align: center;
    font-weight: 400;
    text-transform: capitalize;
}

h5.heading span {
    display: block;
}

h5.heading hr {
    width: 100px;
    height: 2px;
    background: var(--red);
    border: none;
    margin-top: 10px;
}

p.subheading {
    font-size: 2rem;
}

.paragraph {
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.paragraph p {
    font-size: 15px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.img {
    max-width: 991px;
    width: 100%;
    height: auto;
    margin: auto;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    z-index: 999999999999999999;
    border-bottom: 1px solid #ffecec;
    background: var(--light-color);
}

.main-menu {
    width: 100%;
    background-color: transparent;
}

nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

img.logo {
    width: 150px;
    height: auto;
}

.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.cta-box {
    display: inline-block;
}

.cta-box .popupclick {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--light-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-bottom: 3px solid var(--light-color);
}

.cta-box .popupclick:hover {
    color: var(--btn-bg);
    background-color: var(--light-color);
    transform: translateY(-2px);
}



section {
    height: auto !important;
    margin: auto !important;
}


/* nav .nav-links li */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


.fullwidth {
    width: 100%;
    height: auto;
    padding: 5rem 0;
}

/* banner  */

.bannerimg {
    width: 100%;
    height: auto;
}

.bannerimg a {
    display: block;
    line-height: 0;
}

.bannerimg picture img {
    width: 100%;
    height: auto;
}


/* .about-us  */


.aboutus-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.about-box-inner {
    flex: 1;
    border-radius: 10px;
    padding: 10px;
}

.about-us-img {
    flex-basis: calc(50% - 10px);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--ivory-whisper);
    padding: 0px;
}

.about-box-inner img {
    width: 100%;
    border-radius: 20px;
}

.text-container {
    flex-basis: calc(50% - 10px);
}


.usp-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f7f7f7;
    border: 1px solid rgba(216, 216, 216, 0.85);
    border-radius: 10px;
    position: relative;
    z-index: auto;
    padding: 5px;
    margin: 50px auto;
}

.usp-container::before,
.usp-container::after {
    position: absolute;
    content: '';
    background: var(--darkcolor);
    left: calc(0% + 5%);
    width: 90%;
}

.usp-container::before {
    position: absolute;
    top: -10px;
    height: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 0;
}

.usp-container::after {
    bottom: -40px;
    height: 40px;
    clip-path: polygon(100% 0, 100% 55%, 50% 100%, 0% 55%, 0 0);
    z-index: 0;
    background: var(--darkcolor);
}

.usp-inner-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 50px;
    position: relative;
    z-index: 2;
    text-align: center;

}

.usp-inner-box:not(:last-of-type)::after {
    position: absolute;
    right: 0;
    top: 50%;
    content: '';
    width: 2px;
    height: 30%;
    top: 50%;
    transform: translate(0, -50%);
    right: 0px;
    background: var(--darkcolor);
}

.usp-inner-box .icon i {
    font-size: 2.5rem;
    color: var(--red);
}

.usp-inner-box h5.boxheading {
    font-size: 2.5rem;
    color: var(--darkcolor);
    font-weight: 500;
    font-family: "DM Serif Display", Sans-serif;
}

/* result-container */

.result-container {
    width: 100%;
    height: auto;
    position: relative;
    margin: 3rem 0;
}

.result-inner {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    background: #f7f7f7;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px 3px rgb(233, 233, 233);
}

.result-inner img {
    width: 100%;
    border-radius: 10px;
}

.info-data {
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-data span {
    font-size: 10px;
    color: var(--light-color);
}

.result-data {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--amber-hearth);
}

.result-data div p {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-brand {
    padding: 10px;
}



/* step to step  */

.stepscontainer {
    width: 100%;
    height: auto;
    margin-top: 3rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.stepsinner {
    flex: 1;
    flex-basis: calc(25% - 20px);
    flex-direction: column;
    align-self: stretch;
    padding: 20px;
    border: 1px solid rgba(216, 216, 216, 0.85);
    background-color: rgba(232, 232, 232, 0.85);
    display: flex;
    gap: 15px;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 10px;
}

.stepnumbercount {
    flex-basis: calc(33.3% - 20px);
}


.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    color: var(--red);
    font-size: 20px;
    display: grid;
    place-content: center;
    flex-shrink: 0;
}

.stepnumbercount::before {
    position: absolute;
    top: 60px;
    content: '1';
    right: 20px;
    font-size: 10rem;
    font-weight: bold;
    line-height: 0;
    opacity: 0.5;
    color: var(--light-color);
}

.stepnumbercount:nth-child(2)::before {
    content: '2';
}

.stepnumbercount:nth-child(3)::before {
    content: '3';
}

.stepnumbercount:nth-child(4)::before {
    content: '4';
}

.stepnumbercount:nth-child(5)::before {
    content: '5';
}

.stepnumbercount:nth-child(6)::before {
    content: '6';
}

.step-info {
    flex: 1;
    font-size: 1.5rem;
}


.step-info p small {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}



.step-info h5 {
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: bold;
    word-break: break-word;
}

.step-info h5,
.step-info p {
    color: var(--darkcolor);
}

.step-info p {
    font-size: 16px;
}


/* tab bar  */

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 30px auto;
}

.tab-list {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    row-gap: 50px;
}

.tab-list .tab {
    flex: 1;
    flex-basis: calc(25% - 1rem);
    padding: 30px;
    border: 1px solid rgba(216, 216, 216, 0.85);
    background-color: rgba(232, 232, 232, 0.85);
    color: var(--darkcolor);
    font-size: 16px;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    position: relative;
    align-self: stretch;
    display: grid;
    place-content: center;
    border-radius: 10px;
}

.tab .tabicon {
    position: absolute;
    left: 50%;
    top: calc(0% - 30px);
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    content: ' ';
    border: 1px solid transparent;
    padding: 5px;
    display: grid;
    place-content: center;
    background-color: var(--light-color);
}

.tab .tabicon i {
    color: var(--red);
    font-size: 2rem
}

.tab.active,
.tab:hover {
    background: var(--red);
    border-color: var(--text-light);
}

.tab.active .tabicon {
    background-color: rgba(251, 251, 251, 0.85);
}

.tab.active .tabicon i {
    color: var(--red);
}

.tab-list .tab.active {
    color: var(--light-color);
}

.tab-content {
    width: 100%;
    margin: 1rem 0 0;
    display: none;
    padding: 50px;
    border: 1px solid rgba(216, 216, 216, 0.85);
    background-color: rgba(232, 232, 232, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
}

.show {
    display: block
}


.tab-content .tab-text-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-content .tab-text-content h2 {
    font-family: "DM Serif Display", serif;
    font-size: 2.5rem;
    font-weight: 300;
}

.tab-content .tab-text-content .paragraph {
    margin: auto;
}

.tab-content .tab-text-content .paragraph p {
    color: black;
}



/* formcontainer */

.flex-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(216, 216, 216, 0.85);
    background-color: rgba(232, 232, 232, 0.85);
}

#book-form h5.heading span {
    font-size: 4.5rem;
    line-height: 1;
}

.main-form-container {
    width: 48%;
    height: auto;
}


.formcontainer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem;
    color: var(--main-dark);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.iti {
    width: 100%;
}

.iti__country-name,
.iti__flag-box {
    color: #ffffff;
}


.iti__country-list,
.iti-mobile .iti--container {
    z-index: 999999999999999999999999999999999 !important;
}

.formcontainer .form-group {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}


.formcontainer .form-group input,
.formcontainer .form-group .form-select {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 1rem;
    font-size: 1.5rem;
    background-color: rgba(226, 226, 226, 0.752);
    border-radius: 5px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;

}

.formcontainer .form-group input:focus {
    background: wheat;
}

.formcontainer .form-group button {
    width: 100%;
    height: 50px;
    color: var(--light-color);
    border: none;
    outline: none;
    border-radius: 1rem;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid;
    background-color: var(--red);
}



.formcontainer .form-img {
    width: 100%;
    height: auto;
}

.formcontainer .form-img img {
    width: 100%;
    border-radius: 0px !important;
    border: 1px solid var(--second-color);
}



.error {
    color: red;
    font-size: 14px;
}

.success {
    color: green;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    z-index: 99999;
}




/* resluts gallery */

.card-container {
    border-radius: 10px;
    padding: 0px;
    min-height: 100%;
}

.card-box {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-box-img,
.card-box-content {
    width: 100%;
    height: auto;
}

.card-box-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-box-content button {
    padding: 1rem 2rem;
    font-size: 1.6rem;
    background-color: transparent;
    background: var(--main-color);
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 10px;
    border: 1px solid var(--sec-color-light);
}

.card-box-img img {
    border-radius: 10px;
}

.card-box-content h3 {
    font-size: 2.3rem;
    font-weight: 400;
}

.card-box-content h3,
.card-box-content p {
    color: var(--text-light);
}

.card-box-content p {
    font-size: 1.6rem;
}


/* 0 */

/* video-container */

.owl-carousel .owl-stage {
    display: flex;
}

.owl-prev,
.owl-next {
    position: absolute;
    content: ' ';
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    width: 30px;
    height: 30px;
    font-size: 15px !important;
    background-color: #ebebeb !important;
    color: #ebebeb !important;
}

.owl-next {
    left: auto !important;
    right: -15px;
}


.owl-theme .owl-dots .owl-dot span {
    width: 20px !important;
    height: 5px !important;
    background-color: #ebebeb !important;
}

.owl-theme .owl-dots .active span {
    width: 25px !important;
    transition: all 0.3s ease-in-out !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--red) !important;
}


.owl-stage .center {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.owl-stage .owl-item {
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
}


.mobile-banner1 {
    display: none;
}

.copy-right-container {
    background-color: var(--sec-color-light);
}

.copy-right {
    width: 100%;
    height: 60px;
    font-size: 1.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.copy-right span {
    display: block;
    font-size: 1rem;
    width: 100%;
}

.footer-mobile {
    display: none;
}

.scroll {
    position: fixed;
    bottom: 50px;
    right: 5%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--sec-color-light);
    display: none;
    overflow: hidden;
    cursor: pointer;
}

.scroll div i {
    font-size: 1.4rem;
    color: var(--sec-color-light);
    animation: move 0.5s linear infinite;
}

.scroll div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}


@keyframes move {

    0% {
        transform: translateY(-10px);
    }

    10% {
        transform: translateY(0px);
    }

}

.whatsapp-widget {
    width: 300px;
    height: auto;
    position: fixed;
    bottom: 15%;
    right: 5%;
    z-index: 999999999999;
    overflow: hidden;
}

.whatsapp-widget-inner {
    width: 100%;
    height: 150px;
    box-sizing: 2px 2px 2px 2px #c6c6c6;
    margin-bottom: 10px;
    border-radius: 10px;
    display: none;
    position: relative;
    animation: whatsappanimation 0.5s linear;
    padding: 20px;
    background-color: var(--main-color);
}

.aboutbrand {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

.brand-img {
    width: 50px;
    height: 50px;
    border: 2px solid var(--sec-color-light);
    border-radius: 50%;
    background-color: var(--sec-color-light);
    overflow: hidden;
}

.brand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandname {
    width: auto;
    height: auto;
}

.brandname h3,
.brandname P {
    color: var(--ivory-whisper);
}

.brandname h3 {
    font-size: 15px;
}

.brandname p {
    font-size: 10px;
}

.buttonlink {
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: ' ';
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--sec-color-light);
}

.buttonlink a {
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    color: grey;
}

.buttonlink a i {
    color: #4dc247;
    font-size: 18px;
}


@keyframes whatsappanimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 50;

    }

    100% {
        opacity: 100;
        transform: translateY(0%);
    }
}

.whatsapp-widget-inner .close {
    position: absolute;
    top: 10px;
    right: 15px;
    content: ' ';
    cursor: pointer;
}

.whatsapp-widget-inner .close i {
    font-size: 15px;
    color: var(--text-white);
}

.whatsappbutton {
    width: auto;
    height: auto;
}

.whatsappbutton button {
    padding: 10px 25px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4dc247;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    margin-left: auto;
}

.whatsappbutton button i {
    font-size: 20px;
    color: white !important;
}

/* -------------------------------------------------------------- */


.fa-phone {
    color: black;
}

.fa-whatsapp {
    color: #4dc247;
}

/*location*/


.popup {
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: #000000a0;
    padding: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    z-index: 99999999999999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    max-width: 500px;
    width: 90%;
    padding: 10px;
    margin: auto;
    border-radius: 5px;
}


.popup-content .close {
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--darkcolor);
    display: grid;
    align-content: center;
    text-align: center;
    font-size: 1.8rem;
    color: var(--light-color);
}


.thank-you-inner {
    max-width: 550px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    background-color: var(--ivory-whisper);
}

.thank-you-inner h5.heading {
    font-size: 5rem;

}

.thank-you-inner p {
    font-size: 1.5rem;
}

.thank-you-inner .calltoaction {
    margin: 0 auto;
}




/* faq */


.faq-flex {
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-container {
    width: 100%;
    height: 100%;
}

.innerfaq-container {
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: rgba(244, 244, 244, 0.72);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    border-radius: 10px;
}


.accordion__question {
    width: 100%;
    height: auto;
    padding: 10px;
    transition: all 0.5s ease;
}

.accordion__question h3 {
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.active2 .accordion__question h3 {
    color: var(--red);
}

.accordion__answer {
    width: 100%;
    height: auto;
    margin-top: 0px;
}

.accordion__answer p {
    font-size: 1.6rem;
}

.accordion:hover {
    cursor: pointer;
}

.accordion__answer {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.answer-inner {
    padding: 1rem;

}

.innerfaq-container.active2 .accordion__answer {
    display: block;
    max-height: 450px;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}