@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');



/***** General CSS *****/



body {

    word-break: break-word;

    font: 15px/25px 'Source-reg';

    color: #393939;

    overflow-x: hidden;

}



a {

    text-decoration: none;

    color: #28b16d;

    white-space: initial;

}



a:hover,

a:focus {

    text-decoration: none;

    color: #393939;

}



a:hover {

    transition: all 0.5s ease-in-out;

    -webkit-transition: all 0.5s ease-in-out;

    -moz-transition: all 0.5s ease-in-out;

}



img {

    max-width: 100%;

}



input[type="text"]:focus,

textarea:focus,

input[type="password"]:focus,

select:focus,

input[type="email"]:focus,

input[type="url"]:focus,

input[type="tel"]:focus,

input[type="number"]:focus {

    transition: all 0.5s ease;

    -webkit-transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    outline: none;

}



select,

input[type="text"],

input[type="password"],

input[type="email"],

input[type="url"],

input[type="number"],

textarea,

input[type="tel"] {

    -webkit-appearance: none;

    -moz-appearance: none;

    appearance: none;

}



ul {

    margin: 0 0 20px;

    padding: 0;

    list-style-type: none;

}



p {

    font-weight: 400;

    line-height: 25px;

    color: #242424;

    font-size: 15px;

}





/***** Font Files *****/



@font-face {

    font-family: 'Source-reg';

    src: url(../fonts/SourceSansPro-Regular.ttf);

    font-weight: 400;

}





/***** Custom Classes *****/



.noPadding {

    padding: 0;

}



.noLeft {

    padding-left: 0;

}



.noRight {

    padding-right: 0;

}



.centerCol {

    float: none;

    margin: 0 auto;

}



.pt_8 {

    padding-top: 80px;

}



.pb_8 {

    padding-bottom: 80px;

}



.py_8 {

    padding: 80px 0px;

}





.flexRow {

    display: -webkit-box;

    display: -moz-box;

    display: -ms-flexbox;

    display: -webkit-flex;

    display: flex;

    align-items: center;

}



.flexCol {

    -webkit-box-flex: 1;

    -moz-box-flex: 1;

    -webkit-flex: 1;

    -ms-flex: 1;

    flex: 1;

    align-items: center;

}



h1 {

    font-family: "Playfair Display", serif;

    line-height: 1.2;

    font-weight: 400;

    margin: 0 0 17px;

    font-size: 75px;

    color: #4a3a5a;

    text-transform: uppercase;

}



h2 {

    font-family: "Playfair Display", serif;

    font-size: 75px;

    line-height: 1.2;

    color: #4a3a5a;

    font-weight: 400;

    margin: 0 0 20px;

    text-transform: uppercase;

}



h3 {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    line-height: 1.2;

    color: #000000;

    font-weight: 600;

    margin: 0 0 28px;

}



h4 {

    font-family: 'Poppins', Sans-Serif;

    font-size: 24px;

    line-height: 1.2;

    color: #393939;

    font-weight: 500;

    margin: 0 0 13px;

}



h5 {

    font-family: 'Poppins', Sans-Serif;

    font-size: 20px;

    line-height: 1.2;

    color: #393939;

    font-weight: 500;

    margin: 0 0 20px;

}



h6 {

    font-family: 'Poppins', Sans-Serif;

    font-size: 18px;

    line-height: 1.2;

    color: #393939;

    font-weight: 500;

    margin: 0 0 22px;

}



select {

    background: #fff url('../images/arrow.png') no-repeat right;

    padding: 0 40px 0 30px;

}



::-webkit-input-placeholder {

    color: #575757;

}



::-moz-placeholder {

    color: #575757;

    opacity: 1;

}



:-ms-input-placeholder {

    color: #575757;

}



:-moz-placeholder {

    color: #575757;

    opacity: 1;

}





/*header css start */

.menuSec img {

    margin: 0;

    transition: 0.5s ease-in-out;

}





.menuSec ul li {

    display: inline-block;

    margin: 0;

    padding: 0;

    position: relative;

}



.menuSec li:hover ul {

    opacity: 1;

    visibility: visible;

}





.menuSec ul li a {

    position: relative;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: 0.5s;

    text-transform: uppercase;

    color: #2c2c2c;

}



.menuSec ul li:last-child a:after {

    display: none;

}



.menuSec ul li a:hover,

.menuSec ul li a.active {

    transition: all 0.5s ease;

    -webkit-transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    color: var(--primary-color);

}



.menuSec li>ul {

    position: absolute;

    z-index: 0;

    background-color: #fff;

    left: 0;

    width: 240px;

    text-align: left;

    opacity: 0;

    transition: 0.2s ease-in-out;

    flex-direction: column;

    justify-content: start;

    align-items: start;

    gap: 0;

    box-shadow: 0 0 10px #ccc;

    column-count: 2;

    display: flex;

    padding: 10px 0;

    visibility: hidden;

    top: 60px;

}



.menuSec li:hover ul {

    transition: 0.2s ease-in-out;

    top: 60px;

    z-index: 999;

}



.menuSec li>ul:after {

    position: absolute;

    content: "";

    background: #606060;

    width: 20px;

    height: 20px;

    top: -20px;

    left: 10px;

    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);

    z-index: 999;

}



.menuSec li>ul>li>a {

    border: none;

    padding: 13px 20px !important;

    /* color: #fff !important; */

    font-size: 13px;

    line-height: 20px;

    width: 100%;

}



.menuSec li>ul>li,

.menuSec li>ul>li>a {

    display: block;

    margin: 0;

    font-size: 14px;

    font-weight: 400;

    color: #848484;

    font-family: "Inter", sans-serif;

    text-transform: capitalize;

}



.menuSec li>ul>li>a:before,

.menuSec li>ul>li>a:after {

    display: none;

}



.menuSec li:hover li {

    float: none;

    width: 100%;

}



.menuSec li ul li a:hover {

    background-color: #ffffff;

    color: #000 !important;

}



.menuSec ul ul ul {

    left: 100%;

    top: 0;

}



.menuSec li>ul>li:hover>ul {

    left: 230px;

    top: 0px;

    width: 270px;

}



.droopdwon li:hover>ul {

    display: block;

    position: absolute;

    z-index: 1000;

    background-color: #000000;

    left: 0px;

    width: 230px;

    text-align: left;

    top: 40px;

}



.droopdwon {

    float: left;

}



.droopdwon li:hover li a:hover {

    background-color: #ffffff;

    color: #000 !important;

}





/*header css start */



.dropdown-menu {

    position: absolute !important;

    z-index: 1000;

    display: block;

    min-width: 10rem;

    padding: 0.5rem 0;

    margin: 0;

    font-size: 1rem;

    color: #212529;

    text-align: left !important;

    background-color: #fff;

    background-clip: padding-box;

    border: 1px solid rgba(0, 0, 0, 0.15);

    border-radius: 0.25rem;

}



/*banner css start */





/* Tab slider fix  */



.tab_sec .tab-pane {

    display: block;

    border: 0;

    height: 0;

}



.tab_sec .tab-pane.active {

    display: block !important;

    height: auto;

}





/* Tab slider fix  */



.carousel-inner>.item>a>img,

.carousel-inner>.item>img {

    width: 100%;

}



.carousel-control.right,

.carousel-control.left {

    background: none;

    opacity: 1;

    width: 50px;

    height: 50px;

    top: initial;

    top: 40%;

    background: rgba(255, 255, 255, 0.1);

    text-shadow: none;

}



.carousel-control.right:hover,

.carousel-control.left:hover {

    background: rgba(255, 27, 27, 0.6);

    color: #fff;

}



.carousel-control.right .fa,

.carousel-control.left .fa {

    position: relative;

    top: 12px;

    font-size: 20px;

    color: #fff;

    opacity: 0.5;

}



.carousel-control.right {

    right: 0px;

}



.carousel-control.left {

    left: 0px;

}



.carousel-indicators [data-bs-target] {

    box-sizing: content-box;

    flex: 0 1 auto;

    width: 10px;

    height: 12px;

    padding: 0;

    margin: 3px !important;

    text-indent: -999px;

    cursor: pointer;

    background-color: #fff;

    background-clip: padding-box;

    border: 0;

    border-top: 10px solid transparent;

    border-bottom: 10px solid transparent;

    opacity: 1;

    /* transition: opacity 0.6s ease; */

    border-radius: 20px;

}



.carousel-caption {

    position: absolute;

    top: 0;

    width: 100%;

    height: 100%;

    left: 0;

    right: 0;

    margin: 0;

    padding: 0;

    color: #fff;

    text-align: left;

    display: -webkit-box;

    display: -moz-box;

    display: -ms-flexbox;

    display: -webkit-flex;

    display: flex;

    align-items: center;

    /* background: rgba(0, 0, 0, 0.1); */

}



.carousel-indicators li {

    border: none;

    border-radius: 100%;

    -webkit-border-radius: 100%;

    -moz-border-radius: 100%;

    background: #fff;

    width: 12px;

    height: 12px;

    margin: 0;

}



.carousel-indicators .active {

    margin: 0;

    background-color: #28b16d;

    width: 10px;

    height: 12px;

}





/*banner css end*/



.blog_sec {

    padding: 5% 0;

}





/* Tabs  */



.tab_sec .nav-tabs .nav-link.active {

    background: #242889;

    color: #fff;

}



.tab_sec .nav-tabs .nav-link {

    background: #ccc;

    border-radius: 50px;

    color: #000;

    padding: 7px 28px;

}



.tab_sec .nav-tabs {

    border: none;

    justify-content: center;

    gap: 20px;

    margin-bottom: 20px;

}





/* Tabs  */



/* ++++++++++++++++++++++++++++++++++++++++++++ HOME ++++++++++++++++++++++++++++++++++++++++++++ */

header {

    position: absolute;

    width: 100%;

    z-index: 99;

    top: 0;

    left: 0;

}



.menuSec .row {

    margin-top: -20px;

}



.left-top {

    padding: 20px 0 0;

    padding-bottom: 20px;

}



.left-top a {

    display: flex;

    align-items: center;

    gap: 20px;

}



.left-top a p {

    margin: 0;

    color: #2c2c2c;

    font-size: 14px;

    transition: 0.5s ease-in-out;

}



.left-top a div:first-child {

    border-right: 1px solid #dddada;

}



.left-top a div:first-child {

    padding-right: 20px;

    padding-top: 8px;

    padding-bottom: 8px;

}



ul#menu {

    padding: 20px 0;

    position: relative;

    border: 1px solid #dddada;

    border-left: 0;

    border-right: 0;

    display: flex;

    gap: 40px;

    margin: 0;

}



ul#menu:before,

ul#menu:after {

    position: absolute;

    content: '';

    background-image: url(../images/diamond.png);

    background-size: contain;

    width: 13px;

    height: 8px;

    left: -10px;

    top: -5px;

    background-repeat: no-repeat;

}



.menu-2:before {

    left: unset !important;

    right: -12px;

    background-image: url(../images/diamond2.png);

}



.menu-2:after {

    left: unset !important;

    right: -12px;

    background-image: url(../images/diamond2.png);

}



ul#menu:after {

    top: unset;

    bottom: -4px;

}



.left-top.right-top a {

    justify-content: right;

}



.menu-2 {

    justify-content: right;

}



a.image-logo {

    text-align: center;

    display: block;

    margin-top: -50px;

}



.menuSec ul li a:hover {

    color: #b3adde;

    letter-spacing: 1px;

}



img.img-fluid {

    width: 100%;

    height: 890px;

    object-fit: cover;

}



.banner_text {

    text-align: center;

    margin-top: 390px;

}



.banner_text p {

    width: 60%;

    margin: 0 auto;

    margin-bottom: 20px;

}



.banner_text a {

    margin: 0 auto;

}



.premium-btn {

    position: relative;

    padding: 16px 42px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #fff;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    background: linear-gradient(135deg, #d4bbe1, #ccaedb);

    box-shadow:

        0 10px 30px rgba(166, 120, 199, 0.4),

        inset 0 0 0 rgba(255, 255, 255, 0.2);

    overflow: hidden;

    transition: all 0.4s ease;

    display: flex;

    width: fit-content;

}



/* Shine animation */

.premium-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -75%;

    width: 50%;

    height: 100%;

    background: linear-gradient(120deg,

            transparent,

            rgba(255, 255, 255, 0.6),

            transparent);

    transform: skewX(-25deg);

}



/* Hover effects */

.premium-btn:hover {

    transform: translateY(-3px) scale(1.02);

    box-shadow: 0 18px 45px rgba(166, 120, 199, 0.6);

    color: #4a3a5a;

}



.premium-btn:hover::before {

    animation: shine 1s ease;

}



/* Pulse glow */

.premium-btn::after {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 50px;

    background: linear-gradient(135deg, #e7c9ff, #b98adf);

    opacity: 0;

    z-index: -1;

    filter: blur(15px);

    transition: opacity 0.4s ease;

}



.premium-btn:hover::after {

    opacity: 1;

}



/* Click effect */

.premium-btn:active {

    transform: scale(0.96);

}



/* Shine keyframes */

@keyframes shine {

    100% {

        left: 125%;

    }

}



/* Bird animation */

.bird {

    width: auto;

    filter: drop-shadow(0 25px 40px rgba(255, 255, 255, 0.15));

    transform-origin: center;

    position: absolute;

    z-index: 99;

    top: 27%;

    left: 4%;

    animation: vectorMove 15s ease-in-out infinite;

}



/* Wing-style motion */

@keyframes fly {



    0%,

    100% {

        transform: translateY(0) rotateX(0deg);

    }



    50% {

        transform: translateY(-18px) rotateX(6deg);

    }

}



/* Smooth floating */

@keyframes float {



    0%,

    100% {

        letter-spacing: 0;

    }



    50% {

        transform: translateY(-12px);

    }

}



/* Premium glow breathing */

@keyframes glow {



    0%,

    100% {

        filter: drop-shadow(0 20px 35px rgba(200, 180, 255, 0.15));

    }



    50% {

        filter: drop-shadow(0 30px 55px rgba(200, 180, 255, 0.35));

    }

}



img.bird.bird2 {

    left: 78%;

    top: 32%;

}



img.bird.bird3 {

    left: 65%;

    top: 4%;

}



.carousel-indicators [data-bs-target] {

    width: 8px;

    height: 8px;

    margin: 0 !important;

    padding: 0 !important;

    background: #c3beb6;

    border: 2px solid #c3beb6;

    border-radius: 0;

    transform: rotate(45deg);

}



.carousel-indicators {

    display: flex;

    gap: 20px;

    width: fit-content;

    margin: 0 auto;

    right: -210px;

    bottom: 7%;

}



.carousel-indicators .active {

    background: #d2b7e0;

    border-color: #d2b7e0;

    position: relative;

    z-index: 0;

}



.ban-btn {

    margin-right: 240px;

}



section.about {

    position: relative;

    background-image: url(../images/abt-bg.png);

    background-size: cover;

    padding: 120px 0;

    background-position: inherit;

}



section.about .row {

    align-items: center;

}



.abt-text h2 {
    text-transform: uppercase;
    font-size: 65px;
}

.abt-text h3 {
    color: #000 !important;
}


.abt-img img {

    border-radius: 20px;

    width: 100%;

}



.abt-text p {

    font-size: 14px;

}



img.vec4 {

    position: absolute;

    top: -200px;

    left: 0;

    z-index: 9;

}



img.vec5 {

    position: absolute;

    right: 0;

    bottom: -230px;

    z-index: 9;

}



section.service {

    padding: 80px 0;

    background-image: url(../images/ser-bg.png);

    background-size: cover;

}



.top-heading h2 {

    text-transform: uppercase;

    font-size: 75px;

    margin-bottom: 40px;

}



img.ser-img1 {

    width: 100%;

    /* height: 300px; */

    object-fit: cover;

    object-position: center;

}



.ser-box {

    /* background-image: url(../images/vect-6.png); */

    /* background-size: contain; */

    /* background-repeat: no-repeat; */

    position: relative;

    overflow: hidden;

    transition: 0.5s ease-in-out;

}



.ser-text {

    text-align: center;

    position: absolute;

    bottom: 60px;

    left: -10px;

    right: 0;

    margin: 0 auto;

    padding: 0 50px;

}



.ser-text h3 {

    font-size: 25px;

    margin-bottom: 5px;

    text-transform: uppercase;

    font-weight: 500;

}



section.service_page .row {

    justify-content: center;

}





section.offering-detail-sec ul li {

    color: #ccc;

    font-size: 15px;

}



section.offering-detail-sec ul {

    line-height: 30px;

}



.ser-text p {

    line-height: 19px;

    font-size: 13px;

    color: #353a3d;

    width: 90%;

    margin: 0 auto;

    margin-bottom: 10px;

}



a.btn-2 {

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f7c5ad;

    height: 40px;

    width: fit-content;

    padding: 0 20px;

    border-radius: 10px;

    margin: 0 auto;

}



.btn-2:hover {

    background: #4a3a5a;

}



.ser-slider .slick-slide {

    opacity: 1;

    margin: 10px -1px;

}



.ser-text img {

    width: auto;

    margin: 0 auto;

    margin-bottom: 7px;

    margin-top: 10px;

}



section.events {

    background-image: url(../images/event-bg.png);

    padding: 100px 0;

    position: relative;

    background-size: cover;

}



section.events .row {

    align-items: center;

}



.event-img img {

    width: 96%;

    border-radius: 20px;

    margin: 0 0 0 auto;

    display: block;

    transition: 0.5s ease-in-out;

}



img.vet-9 {

    position: absolute;

    left: 0;

    top: -70px;

    z-index: 9;

}



section.compass {

    padding: 100px 0;

    background-image: url(../images/compass-bg.png);

    background-size: cover;

    background-position: center;

    position: relative;

}



img.frame1 {

    width: 100%;

}



.com-pass-wrap ul {

    display: flex;

    padding: 20px;

}



.com-pass-wrap ul li:first-child {

    width: 40%;

}



.com-pass-wrap ul li:last-child {

    width: 60%;

}



.com-pass-wrap {

    position: absolute;

    top: 60%;

    left: 0;

    right: 0;

    margin: 0 auto;

    transform: translate(0, -50%);

    width: 96%;

}



.com-wrap {

    position: relative;

}



.com-wrap h2 {

    font-size: 60px;

    color: #4a3a5a;

    text-transform: uppercase;

}



.com-pass-wrap ul li span img {

    width: 100%;

    transition: 0.5s ease-in-out;

}



section.compass img.vec4 {

    top: unset;

    bottom: -150px;

}



section.testimonial {

    padding: 100px 0;

    background-image: url(../images/testi-bg.png);

    background-size: cover;

    background-position: center;

    position: relative;

}



img.vect-9 {

    position: absolute;

    right: 0;

    bottom: -100px;

    z-index: 9;

}



.top-head {

    text-align: center;

    margin-bottom: 40px;

}



.top-head h2 {

    text-transform: uppercase;

}



.testi-box {

    text-align: center;

}



.testi-box img {

    display: block;

    margin: 0 auto;

}



img.testi-img2 {

    margin-bottom: 22px;

    width: auto;

    height: auto;

    border-radius: 10px;

}



img.testi-img3 {

    width: auto;

    height: auto;

    margin-bottom: 16px;

}



.testi-box p {

    font-size: 15px;

    color: #353a3d;

    line-height: 25px;

    margin-bottom: 10px;

}



.testi-wrap {

    position: relative;

    transition: 0.5s ease-in-out;

}



.testi-box {

    position: absolute;

    top: 5%;

    left: 0;

    right: 0;

    margin: 0 auto;

    width: 90%;

}



.star {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    gap: 3px;

    margin-top: 20px;

}



.star i {

    color: #efc161;

    font-size: 14px;

}



.testi-slider .slick-slide {

    opacity: 1;

}



.testi-slider .slick-slide.slick-current .testi-wrap * {

    color: #fff;

}



.testi-slider .slick-slide.slick-current .testi-wrap img.testi-img1 {

    filter: brightness(0) saturate(100%) invert(69%) sepia(12%) saturate(654%) hue-rotate(236deg) brightness(103%) contrast(95%);

}



.testi-slider .slick-slide.slick-current .testi-wrap img.testi-img3 {

    filter: brightness(0) saturate(100%) invert(100%) sepia(96%) saturate(15%) hue-rotate(212deg) brightness(104%) contrast(104%);

}



/* footer sec start  */



footer {

    padding: 60px 0 0 0;

    position: relative;

    z-index: 0;

}



.foot-bottom {

    margin-top: 40px;

    padding: 20px 0px;

    text-align: center;

}



footer h5 {

    position: relative;

    font-size: 19px;

    color: #ffffffd4;

    padding-left: 0px;

    text-transform: uppercase;

    line-height: 24px;

    font-weight: 400;

    margin-bottom: 40px;

    font-family: 'Playfair Display';

}



footer h5:before {

    position: absolute;

    content: "";

    width: 200px;

    height: 1px;

    background: #404040;

    top: 50px;

    left: 0;

}



ul.quick-links.links2 {

    display: flex;

    gap: 50px;

}



p.ftr_leftp {

    font-size: 14px;

    color: #ffffff94;

    line-height: 19px;

    width: 85%;

    margin-bottom: 30px;

    margin-top: 25px;

    position: relative;

}



.social-links a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    color: #ffffff;

    background: #ccaedb;

    border-radius: 50%;

    font-size: 15px;

    margin-right: 3px;

}



.quick-links a:hover {

    color: #ccaddb;

    letter-spacing: 1px;

    transition: 0.5s ease-in-out;

}



img.img-fluid {

    width: 100%;

}



.social-links a:hover {

    background-color: #fff;

    color: #ccaedb;

    border: 1px solid #fefefe;

}



.quick-links a {

    font-size: 14px;

    color: #ffffffd4;

    line-height: 36px;

    font-weight: 500;

    text-transform: capitalize;

    transition: 0.5s ease-in-out;

}





ul.contList li a {

    color: #ffffffd4;

}



ul.contList li a i {

    color: #fff;

    font-size: 16px;

    margin-right: 20px;

}



ul.contList {}



li.contListli a {

    display: flex;

    align-items: center;

    justify-content: start;

}



li.contListli i {

    color: #fff;

}





.box-text ul li i {

    font-size: 20px;

}





li.contListli {

    display: flex;

    justify-content: start;

    align-items: baseline;

    gap: 20px;

    margin-bottom: 20px;

}



.ftr_top_text h2 {

    color: #fff;

    font-size: 65px;

}



.ftr_top_text {

    text-align: center;

}



.ftr_top_text p {

    color: #d7a89b;

    width: 60%;

    margin: 10px auto;

}



button.themebtn.ftr_btn {

    width: 370px;

}



span.themebtn_txt.ftr_btn {

    width: 200px;

}



.foot-bottom {

    border-top: 1px solid #404040;

    position: relative;

}



.foot-bottom p {

    text-align: center;

    font-size: 14px;

    margin: 0;

    color: #ffffffd4;

}



.foot-bottom .container-fluid {

    margin: 0 3%;

    padding-bottom: 0;

}



.footer-wrap {

    position: relative;

    background-image: url(../images/footer-bg.png);

    background-size: cover;

    background-position: center;

}



/* footer sec end  */

section.news-letter {

    padding: 70px 0;

    border-bottom: 1px solid #ffffff47;

}



.news-wrap {

    text-align: center;

}



.news-wrap h2 {

    text-transform: uppercase;

    font-size: 60px;

    color: #fff;

}



.news-wrap p {

    width: 60%;

    margin: 0 auto;

    margin-bottom: 30px;

    color: #ffffffd4;

}



section.news-letter input {

    width: 100%;

    border: 1px solid #ffffff47;

    background: transparent;

    height: 60px;

    border-radius: 6px;

    padding: 10px;

    color: #fff;

}



input::placeholder {

    text-transform: uppercase;

    color: #ffffffbf;

}



.news-wrap form {

    position: relative;

    width: 80%;

    margin: 0 auto;

}



.news-wrap form button {

    position: absolute;

    right: 0;

    top: 0;

    height: 60px;

    display: flex;

    align-items: center;

}



img.vect-10 {

    position: absolute;

    left: 0;

    bottom: 0;

    z-index: 99;

    width: 130px;

}



/* ++++++++++++++++++++++++++++++++++++++++++++ HOME END ++++++++++++++++++++++++++++++++++++++++++++ */



.reveal-text span {

    display: block;

}



.reveal-text .char {

    opacity: 0;

    display: inline-block;

    transform: translateY(10px);

    transition: opacity 0.35s ease, transform 0.35s ease;

}



.reveal-text .char.show {

    opacity: 1;

    transform: translateY(0);

}



@keyframes vectorMove {

    0% {

        transform: translateX(0) translateY(0) rotate(0deg);

    }



    25% {

        transform: translateX(30px) translateY(-10px) rotate(2deg);

    }



    50% {

        transform: translateX(0) translateY(-20px) rotate(0deg);

    }



    75% {

        transform: translateX(-30px) translateY(-10px) rotate(-2deg);

    }



    100% {

        transform: translateX(0) translateY(0) rotate(0deg);

    }

}



.menuSec img:hover {

    transform: scale(1.1);

    transition: 0.5s ease-in-out;

}



.abt-img img {

    transition: 0.5s ease-in-out;

}



.abt-img:hover img {

    transition: 0.5s ease-in-out;

    transform: scale(1.1);

}



.abt-img {

    overflow: hidden;

}



.ser-box:hover {

    transition: 0.5s ease-in-out;

    transform: scale(1.09);

}



/*Tree animation*/



.scroll-tree {

    width: 120px;

    display: block;

    margin: 80px auto;

    transform: translateY(170px) rotateX(720deg);

    opacity: 0;

    transition: transform 1s ease-out, opacity 0.6s ease-out;

}



.scroll-tree.active {

    transform: translateY(0) rotateX(0deg);

    opacity: 1;

}



.event-img {

    overflow: hidden;

    transition: 0.5s ease-in-out;

}



.event-img:hover img {

    transition: 0.5s ease-in-out;

    transform: scale(1.09);

}



.com-pass-wrap ul li span:hover img {

    transition: 0.5s ease-in-out;

    transform: scale(1.09);

}



.testi-wrap:hover {

    transform: scale(1.1);

    transition: 0.5s ease-in-out;

}





.testi-slider .testi-wrap:hover img.testi-img1 {

    filter: brightness(0) saturate(100%) invert(69%) sepia(12%) saturate(654%) hue-rotate(236deg) brightness(103%) contrast(95%);

}



.testi-slider .testi-wrap:hover * {

    color: #fff !important;

}



.testi-slider .slick-slide {

    margin: 30px 20px;

}



.left-top a p:hover {

    color: #f7c5ad;

    letter-spacing: 1px;

    transition: 0.5s ease-in-out;

}



/* inner pages start */





.inner_banner_text h1 {

    text-align: center;

    color: #ffffff;

}



.inner_banner img {

    width: 100%;

    height: 600px;

    object-fit: cover;

}



section.inner_about {

    position: relative;

    background-image: url(../images/innerbgabout.png);

    background-size: cover;

    padding: 120px 0;

    background-position: inherit;

}



.inner_about .abt-text h2 {
    color: #ffffff;
    font-size: 70px;
}
.abt-text h3 {
    color: #fff;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

section.inner_about h2 {
    color: #ffffff;
    font-size: 50px;
    margin-bottom: 10px;
}

section.inner_about ul li {
    color: #9b9b9a;
}





.inner_about p {

    color: #9b9b9a;

}



section.testimonial_page {

    padding: 100px 0;

    background-image: url(../images/inr_tst_bg.png);

    background-size: cover;

    background-position: center;

    position: relative;

}



.testimonial_page h2 {

    color: #ffffff;

}



.testimonial_page p {

    color: #9b9b9a;

}





.service_page .top-head {

    text-align: center;

}



.service_page .top-head h2 {

    color: #ffffff;

}



.service_page .top-head p {

    width: 70%;

    margin: 0 auto;

    color: #9b9b9a;

}



section.service_page {

    padding: 80px 0;

    background-image: url(../images/serpagebg.png);

    background-size: cover;

}



/* community Page Css Starts */



section.community-sec {

    padding: 100px 0;

    background-image: url("../images/community-bg.png");

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}



.community-img {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 480px;

    width: 100%;

    border-radius: 10px;

    overflow: hidden;

}



.community-img img {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.community-txt {

    display: flex;

    flex-direction: column;

    align-items: start;

    justify-content: start;

    gap: 10px;

}



.community-txt h2 {

    color: #fff;

    margin: 0;

}



.community-txt p {

    color: #fff;

    margin: 0;

    opacity: 0.7;

}



.community-bottom {

    margin: 20px 0 0 0;

}



/* community Page Css Ends */



/* Incir Page Css Ends */



section.incir-sec {

    padding: 0 0 100px 0;

    background-image: url("../images/incir-bg.jpg");

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}



.incir-box {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    text-align: center;

}



.incir-heading h2 {

    color: #fff;

    margin: 0;

}



.incir-txt {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 20px;

}



.incir-txt p {

    color: #fff;

    margin: 0;

    opacity: 0.7;

}



.incir-img {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 475px;

    width: 100%;

    border-radius: 10px;

    overflow: hidden;

}



.incir-img img {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;

    width: 100%;

    object-fit: cover;

}



/* Incir Page Css Ends */



/* Lta Page Css Starts */



section.lta-sec {

    padding: 150px 0;

    background-image: url("../images/lta-bg.jpg");

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}



.lta-wrap {

    background-image: url("../images/lta-ex.png");

    background-position: center;

    background-repeat: no-repeat;

    background-size: contain;

    background-attachment: fixed;

}



.lta-txt {

    display: flex;

    flex-direction: column;

    align-items: start;

    justify-content: start;

    gap: 20px;

    padding: 140px 0px;

}



.lta-txt h2 {

    color: #fff;

    margin: 0;

}



.lta-txt p {

    color: #fff;

    opacity: 0.7;

    margin: 0;

    width: 75%;

}



.wlta-wrap {

    display: flex;

    flex-direction: column;

    align-items: start;

    justify-content: start;

    gap: 50px;

}



.wlta-txt {

    display: flex;

    flex-direction: column;

    align-items: start;

    justify-content: start;

    gap: 10px;

}



.wlta-img {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 540px;

    width: 100%;

    border-radius: 10px;

    overflow: hidden;

}



.wlta-img img {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.wlta-txt h2 {

    color: #fff;

    margin: 0;

}



.wlta-txt p {

    color: #fff;

    margin: 0;

    opacity: 0.7;

}



section.wlta-sec {
    background-color: #111111;
    padding: 100px 0 100px 0px;
}



/* Lta Page Css Ends */



/* Inner Page About us Start */

body.inner-page header * {

    color: #fff !important;

}



.inner-service * {

    color: #fff;

}



.inner-service p {

    color: #fff;

    opacity: 0.7;

}



/* Inner Page About us End */





/* Inner Page Books Start */



.main-sec {

    padding: 100px 0;

    background-image: url("../images/book-bg.jpg");

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}



.book-left h2 {

    color: #fff;

}



/* Inner Page Books End */



/* Custom FAQ Styles */

.custom-faq-item {

    background-color: #0b0b0b;

    padding: 25px 30px;

    border-radius: 8px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    border: 1px solid #1a1a1a;

    transition: all 0.3s ease;

    cursor: pointer;

}



.custom-faq-item:hover,

.custom-faq-item.active {

    border-color: #333;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}



.faq-number {

    font-family: 'Playfair Display', serif;

    font-size: 55px;

    line-height: 1;

    color: #fff;

    margin-right: 30px;

    font-weight: 400;

}



.faq-content {

    flex-grow: 1;

}



.faq-title {

    font-family: 'Playfair Display', serif;

    font-size: 24px;

    color: #fff;

    text-transform: uppercase;

    margin-bottom: 5px;

    font-weight: 400;

    letter-spacing: 0.5px;

    margin-top: 0;

}



.faq-desc {

    font-family: 'Source-reg', sans-serif;

    font-size: 14px;

    color: #999;

    margin: 0;

    line-height: 1.4;

    display: none;

    /* Hidden by default */

    padding-top: 10px;

}



.faq-icon {

    color: #fff;

    font-size: 18px;

    margin-left: 20px;

    opacity: 0.8;

    transition: transform 0.3s ease;

}





/* Product Detail Styles */

.productdetailtext {

    padding-left: 30px;

}



.productdetailtext h3 {

    font-family: 'Playfair Display', serif;

    color: #fff;

    font-size: 55px;

    text-transform: uppercase;

    margin-bottom: 15px;

    font-weight: 400;

    line-height: 1.1;

}



.rate-reviews {

    display: flex;

    gap: 30px;

    color: #fff;

    align-items: center;

    margin-bottom: 25px;

    list-style: none;

    padding: 0;

}



.rate-reviews li {

    display: flex;

    align-items: center;

    gap: 10px;

}



.rate-reviews i.fas.fa-star {

    color: #ffcc00;

    font-size: 13px;

}



.rate-reviews h6 {

    color: #ccc;

    font-size: 14px;

    margin: 0;

    font-weight: 400;

    font-family: 'Poppins', sans-serif;

}



.price h5 {

    font-family: 'Playfair Display', serif;

    font-size: 45px;

    color: #fff;

    margin-bottom: 25px;

    font-weight: 400;

}



.productdetailtext p {

    color: #aaa;

    line-height: 1.7;

    font-family: 'Source-reg', sans-serif;

    margin-bottom: 25px;

    font-size: 15px;

}



.quan-count {

    display: flex;

    align-items: center;

    gap: 20px;

    list-style: none;

    padding: 0;

    margin-top: 40px;

}



.num-block.skin-2 {

    background: #1a1a1a;

    display: flex;

    align-items: center;

    padding: 8px 15px;

    border-radius: 5px;

    min-width: 120px;

    justify-content: space-between;

    height: 55px;

}



.num-block .num-in {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

}



.num-block input.in-num {

    background: transparent;

    border: none;

    color: #fff;

    text-align: center;

    width: 40px;

    font-weight: 700;

    font-family: 'Poppins', sans-serif;

    font-size: 16px;

    padding: 0;

    height: auto;

}



.skin-2 .minus,

.skin-2 .plus {

    color: #fff;

    cursor: pointer;

    font-size: 18px;

    user-select: none;

    width: 20px;

    text-align: center;

    font-weight: bold;

}



.theme_btn {

    background: #d4bbe1;

    color: #fff;

    padding: 0 45px;

    border-radius: 8px;

    text-transform: uppercase;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    letter-spacing: 1px;

    transition: all 0.3s;

    height: 55px;

    font-size: 14px;

    border: none;

    font-family: 'Poppins', sans-serif;

}





/* Offering Detail Page Styles */

.offering-detail-sec {

    padding: 80px 0;

}



.offering-img img {

    width: 100%;

    border-radius: 30px;

    margin-bottom: 50px;

    display: block;

    height: 550px;

    object-fit: cover;

}



.offering-content h2 {

    font-family: 'Playfair Display', serif;

    font-size: 45px;

    color: #fff;

    margin-bottom: 30px;

    text-transform: uppercase;

    line-height: 1.2;

    font-weight: 400;

}



.offering-content p {

    color: #ccc;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;

    font-family: 'Source-reg', sans-serif;

    text-align: justify;

    font-weight: 400;

}





img.faq2 {

    position: absolute;

    bottom: -100px;

    right: 0;

    width: 70%;

}



.faq-right {

    position: relative;

    width: 90%;

    margin: 0 0 0 auto;

    display: block;

}



.sec {

    padding: 40px 0;

}



.book-image {

    display: flex;

    justify-content: end;

}



img.faq1 {

    height: 550px;

}



section.book-sec1 {

    padding-top: 100px;

}



.ser-text h6 {

    margin: 0;

    font-family: "Playfair Display", serif;

}



.offering-detail-sec {

    background-image: url(../images/offering-detail-bg.jpg);

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}



.contact-main-sec {

    padding: 100px 0;

    background-image: url("../images/contact-bg.jpg");

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}





/* Contact Start  */



section.connectLinks .cnt-links {

    position: relative;

    background: #d4bce1;

    padding: 34px 32px;

    border-radius: 10px;

    height: 100%;

}



section.connectLinks .cnt-links p {

    margin: 0px;

    color: #fff;

    font-weight: 500;

}



section.connectLinks .cnt-links p a {

    color: #fff;

    font-size: 14px;

    font-family: 'Poppins', sans-serif;

}



section.connectLinks .cnt-links h5 {

    color: #fff;

    font-family: 'Playfair Display', serif;

    padding-bottom: 5px;

    margin-bottom: 25px;

    position: relative;

    text-transform: capitalize;

    font-size: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.4);

    display: inline-block;

}



section.connectLinks .connectLinkWrap {

    width: 92%;

    margin: 0px auto;

    padding-top: 40px;

}



section.contactForm {

    padding-bottom: 80px;

}



section.contactForm .headerElement h2 {

    color: #fff;

    font-size: 60px;

    font-family: 'Playfair Display', serif;

    margin-bottom: 20px;

    text-transform: uppercase;

}



section.contactForm .headerElement p {

    color: #ccc;

    font-size: 14px;

    max-width: 800px;

    margin: 0 auto 50px auto;

    font-family: 'Source-reg', sans-serif;

}



section.contactForm .fmWraper {

    width: 80%;

    margin: 0px auto;

}



section.contactForm form input {

    width: 100%;

    padding: 20px 25px;

    margin-bottom: 30px;

    border-radius: 8px;

    background-color: #131313;

    border: 1px solid #1f1f1f;

    font-family: 'Poppins', sans-serif;

    text-transform: uppercase;

    color: #909091;

    font-size: 12px;

    letter-spacing: 1px;

    box-shadow: none;

}



section.contactForm form textarea {

    width: 100%;

    padding: 20px 25px;

    margin-bottom: 30px;

    border-radius: 8px;

    background-color: #131313;

    border: 1px solid #1f1f1f;

    font-family: 'Poppins', sans-serif;

    text-transform: uppercase;

    color: #909091;

    font-size: 12px;

    height: 180px;

    resize: unset;

    letter-spacing: 1px;

    box-shadow: none;

}



section.contactForm form textarea::placeholder,

section.contactForm form input::placeholder {

    color: #909091;

    font-family: 'Poppins', sans-serif;

}



section.contactForm form .sitBtn {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 20px;

}



section.contactForm form .p-btn {

    background: #d4bce1;

    color: #fff;

    padding: 15px 50px;

    border-radius: 8px;

    border: none;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all 0.3s ease;

    cursor: pointer;

    font-family: 'Poppins', sans-serif;

}



section.contactForm form .p-btn:hover {

    background: #fff;

    color: #4a3a5a;

    box-shadow: 0 5px 15px rgba(212, 188, 225, 0.4);

}



input[type="number"]::-webkit-inner-spin-button,

input[type="number"]::-webkit-outer-spin-button {

    display: none;

    margin: 0;

}





/* Map Section */

.map-sec {

    padding: 0 50px 100px;

    /* Padding to match image spacing if needed, assumes inside contact-main-sec or separate */

    background: transparent;

}



.map-outer {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

}



.map-outer iframe {

    display: block;

    width: 100%;

    height: 450px;

}



.privacy-policy-sec {

    padding: 100px 0;

    background-image: url(../images/community-bg.png);

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    background-attachment: fixed;

}

.privacy-policy-sec h2 {

    font-size: 30px;

    color: #fff;

    margin-bottom: 10px;

}





.privacy-policy-sec p {

    color: #fff;

}

.privacy-policy-sec ul li {

    color: #fff;

}

.privacy-policy-sec ul {

    line-height: 25px;

}

.privacy-policy-sec ul li strong {

    padding-right: 3px;

    padding-left: 2px;

    font-weight: 600;

}